12#ifndef BEMBEL_SRC_LAPLACE_SINGLELAYEROPERATOR_HPP_
13#define BEMBEL_SRC_LAPLACE_SINGLELAYEROPERATOR_HPP_
18class LaplaceSingleLayerOperator;
24 typedef Eigen::VectorXd EigenType;
25 typedef Eigen::VectorXd::Scalar Scalar;
28 Form = DifferentialForm::Discontinuous,
29 NumberOfFMMComponents = 1
45 void evaluateIntegrand_impl(
49 Eigen::Dynamic, Eigen::Dynamic> *
intval)
const {
50 auto polynomial_degree =
super_space.get_polynomial_degree();
51 auto polynomial_degree_plus_one_squared =
52 (polynomial_degree + 1) * (polynomial_degree + 1);
55 auto s =
p1.segment<2>(0);
56 auto t =
p2.segment<2>(0);
63 auto x_f =
p1.segment<3>(3);
66 auto y_f =
p2.segment<3>(3);
87 Eigen::Matrix<double, 1, 1> evaluateFMMInterpolation_impl(
90 auto s =
p1.segment<2>(0);
91 auto t =
p2.segment<2>(0);
94 auto x_f =
p1.segment<3>(3);
97 auto y_f =
p2.segment<3>(3);
106 Eigen::Matrix<double, 1, 1>
intval;
116 const Eigen::Vector3d &
y)
const {
117 return 1. / 4. / BEMBEL_PI / (
x -
y).
norm();
This class implements the specification of the integration for the single layer operator for Laplace.
double evaluateKernel(const Eigen::Vector3d &x, const Eigen::Vector3d &y) const
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...