|
OpenBEM
Open-source framework for electromagnetic simulation with the boundary element method.
|
Class for computing the scalar single-layer potential operator. More...
#include <single_layer.hpp>
Inheritance diagram for bem::rwg::ScalarSingleLayerOp< ObsIntegratorType >:Class for computing the scalar single-layer potential operator.
| ObsIntegratorType | - Type of the observation triangle integrator, must derive from ObsIntegratorBase. |
Computes
\[ \int_{\mathrm{obs\_tri}} d\mathcal{S}\,h(\vec{r})\, \int_{\mathrm{src\_tri}} d\mathcal{S}'\,G(k, \vec{r}, \vec{r}\,')\,h(\vec{r}\,') \]
where \( G(k, \vec{r}, \vec{r}\,') \) is a scalar kernel, and \( h(\vec{r}) \) is a pulse function that is a non-zero constant inside the associated triangle, and zero outside.
Definition at line 199 of file single_layer.hpp.
|
inline |
Constructs a ScalarSingleLayerOp object with a specified integration object.
| [in] | obs_integrator | - Integration object for the observation triangle (optional). |
Definition at line 213 of file single_layer.hpp.
|
overridevirtual |
Computes operator values for the given observation and source triangles.
| [in] | k | - Complex wavenumber. |
| [in] | obs_tri | - Observation triangle. |
| [in] | src_tri | - Source triangle. |
Rows of the output matrix correspond to observation degrees of freedom, and columns correspond to source degrees of freedom.
Implements bem::rwg::OperatorBase< 1, 1 >.
Definition at line 154 of file single_layer.tpp.
| EigMatMN< Complex, 1, 1 > bem::rwg::ScalarSingleLayerOp< ObsIntegratorType >::assemble | ( | const Complex | k, |
| const Triangle< 3 > & | obs_tri, | ||
| const Triangle< 3 > & | src_tri, | ||
| const ObsResult & | obs_result | ||
| ) |
Assembles the computed integrals into the final operator values.
| [in] | k | - Complex wavenumber. |
| [in] | obs_tri | - Observation triangle in the source's local coordinate system. |
| [in] | src_tri | - Source triangle in its local coordinate system. |
| [in] | obs_result | - Integration result. |
Definition at line 172 of file single_layer.tpp.
|
inlinestaticinherited |
Transforms the coordinates of the observation and source triangles into a local coordinate system defined by the source triangle.
| [out] | obs_tri_local | - Observation triangle in the source's local coordinate system. |
| [out] | src_tri_local | - Source triangle in its local coordinate system. |
| [in] | obs_tri | - Original observation triangle. |
| [in] | src_tri | - Original source triangle. |
|
protected |
Definition at line 252 of file single_layer.hpp.