Home | Doxygen Documentation | Tutorials | Developer Tools (restricted)

bemInt/lplGal014.hh
Go to the documentation of this file.
00001 /* Laplace, Galerkin, double layer potential
00002     constant test/trial functions,
00003     regular cases by 3-dim quadrature (Stroud + 1-d Gauss)
00004     far field by 1-point formular
00005 */
00006 
00007 #ifndef lplGal014_hh
00008 #define lplGal014_hh
00009 
00010 #ifdef __GNUG__
00011 #pragma interface
00012 #endif
00013 
00014 #include "bem/element.hh"
00015 
00016 namespace bem {
00017 
00018   // ************************************************************* LplGal014 **
00019 
00026   template <class F>
00027   class LplGal014 {
00028   public:
00038     void operator()(const Constant3d000<F>& elmX, const Constant3d000<F>& elmY,
00039         uint stroudId, uint gaussId, concepts::Real dist,
00040         F* dlp) const;
00041     void operator()(const Constant3d001<F>& elmX, const Constant3d001<F>& elmY,
00042         uint stroudId, uint gaussId, concepts::Real dist,
00043         F* dlp) const;
00044     void operator()(const Constant3d002<F>& elmX, const Constant3d002<F>& elmY,
00045         uint stroudId, uint gaussId, concepts::Real dist,
00046         F* dlp) const;
00047     void operator()(const Constant3d001<F>& elmX,
00048                     const concepts::Triangle3d& cellY, uint stroudId,
00049                     uint gaussId, concepts::Real dist, F* dlp) const;
00050     void operator()(const concepts::Triangle3d& cellX,
00051                     const Constant3d001<F>& elmY, uint stroudId,
00052                     uint gaussId, concepts::Real dist, F* dlp) const;
00053   };
00054 
00055 } // namespace bem
00056 
00057 #endif // lplGal014_hh

Home | Doxygen Documentation | Tutorials | Developer Tools (restricted)