12#ifndef BEMBEL_SRC_LAPLACE_DOUBLELAYEROPERATOR_HPP_
13#define BEMBEL_SRC_LAPLACE_DOUBLELAYEROPERATOR_HPP_
18class LaplaceDoubleLayerOperator;
22 typedef Eigen::VectorXd EigenType;
23 typedef Eigen::VectorXd::Scalar Scalar;
26 Form = DifferentialForm::Discontinuous,
27 NumberOfFMMComponents = 1
41 void evaluateIntegrand_impl(
45 Eigen::Dynamic, Eigen::Dynamic> *
intval)
const {
46 auto polynomial_degree =
super_space.get_polynomial_degree();
47 auto polynomial_degree_plus_one_squared =
48 (polynomial_degree + 1) * (polynomial_degree + 1);
51 auto s =
p1.segment<2>(0);
52 auto t =
p2.segment<2>(0);
59 auto x_f =
p1.segment<3>(3);
62 auto y_f =
p2.segment<3>(3);
85 Eigen::Matrix<double, 1, 1> evaluateFMMInterpolation_impl(
88 auto s =
p1.segment<2>(0);
89 auto t =
p2.segment<2>(0);
92 auto x_f =
p1.segment<3>(3);
95 auto y_f =
p2.segment<3>(3);
105 Eigen::Matrix<double, 1, 1>
intval;
115 const Eigen::Vector3d &
y_n)
const {
119 return c.dot(
y_n) / 4. / BEMBEL_PI /
r3;
double evaluateKernelGrad(const Eigen::Vector3d &x, const Eigen::Vector3d &y, const Eigen::Vector3d &y_n) const
Gradient of fundamental solution of Laplace problem.
Eigen::Matrix< double, 12, 1 > SurfacePoint
typedef of SurfacePoint
Routines for the evalutation of pointwise errors.
constexpr int getFunctionSpaceOutputDimension()
linear operator base class. this serves as a common interface for existing linear operators.
struct containing specifications on the linear operator has to be specialized or derived for any part...