Class documentation of Concepts

Loading...
Searching...
No Matches
lpl000.hh
1/* @file bemInt/lpl000.hh
2
3 Laplace, double layer potential
4 linear trial functions,
5 evaluation in the internal/external points
6*/
7
8#ifndef lpl000_hh
9#define lpl000_hh
10
12#include "bem/element.hh"
13
14namespace bem {
15
16 // **************************************************************** Lpl000 **
17
22 template <class F>
23 class Lpl000 {
24 public:
31 void operator()(const concepts::Real3d& x, const Linear3d000<F>& elm,
32 uint gauss, F dlp[]) const;
33 };
34
35} // namespace bem
36
37#endif // lpl000_hh
void operator()(const concepts::Real3d &x, const Linear3d000< F > &elm, uint gauss, F dlp[]) const
Definition bem.hh:18