![]() |
|
Base class for elements with pml capabilities. More...
#include <pml_meshes.h>
Inheritance diagram for oomph::PMLElementBase< DIM >:Public Member Functions | |
| PMLElementBase () | |
| Constructor. More... | |
| virtual | ~PMLElementBase () |
| Virtual destructor. More... | |
| void | disable_pml () |
| void | enable_pml (const int &direction, const double &interface_border_value, const double &outer_domain_border_value) |
| virtual void | values_to_be_pinned_on_outer_pml_boundary (Vector< unsigned > &values_to_pin)=0 |
Protected Attributes | |
| bool | Pml_is_enabled |
| Boolean indicating if element is used in pml mode. More... | |
| std::vector< bool > | Pml_direction_active |
| Vector< double > | Pml_inner_boundary |
| Vector< double > | Pml_outer_boundary |
Base class for elements with pml capabilities.
///////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////
|
inline |
Constructor.
|
inlinevirtual |
|
inline |
Disable pml. Ensures the PML-ification in all directions has been deactivated
References DIM, oomph::PMLElementBase< DIM >::Pml_direction_active, and oomph::PMLElementBase< DIM >::Pml_is_enabled.
|
inline |
Enable pml. Specify the coordinate direction along which pml boundary is constant, as well as the coordinate along the dimension for the interface between the physical and artificial domains and the coordinate for the outer boundary. All of these are used to adjust the perfectly matched layer mechanism. Needs to be called separately for each pml-ified direction (if needed – e.g. in corner elements)
References oomph::PMLElementBase< DIM >::Pml_direction_active, oomph::PMLElementBase< DIM >::Pml_inner_boundary, oomph::PMLElementBase< DIM >::Pml_is_enabled, and oomph::PMLElementBase< DIM >::Pml_outer_boundary.
Referenced by oomph::TwoDimensionalPMLHelper::create_bottom_left_pml_mesh(), oomph::TwoDimensionalPMLHelper::create_bottom_pml_mesh(), oomph::TwoDimensionalPMLHelper::create_bottom_right_pml_mesh(), oomph::TwoDimensionalPMLHelper::create_left_pml_mesh(), oomph::TwoDimensionalPMLHelper::create_right_pml_mesh(), oomph::TwoDimensionalPMLHelper::create_top_left_pml_mesh(), oomph::TwoDimensionalPMLHelper::create_top_pml_mesh(), and oomph::TwoDimensionalPMLHelper::create_top_right_pml_mesh().
|
pure virtual |
Pure virtual function in which we have to specify the values to be pinned (and set to zero) on the outer edge of the pml layer. This is usually all of the nodal values (values 0 and 1 (real and imag part) for Helmholtz; values 0,1,2 and 3 (real and imag part of x- and y-displacement for 2D time-harmonic linear elasticity; etc.). Vector must be resized internally!
Implemented in oomph::PMLTimeHarmonicLinearElasticityEquationsBase< DIM >, oomph::PMLHelmholtzEquations< DIM >, oomph::PMLFourierDecomposedHelmholtzEquations, oomph::MyRefineableQTaylorHoodElement, and oomph::MyRefineableQTaylorHoodElement.
Referenced by oomph::TwoDimensionalPMLHelper::create_bottom_left_pml_mesh(), oomph::TwoDimensionalPMLHelper::create_bottom_pml_mesh(), oomph::TwoDimensionalPMLHelper::create_bottom_right_pml_mesh(), oomph::TwoDimensionalPMLHelper::create_left_pml_mesh(), oomph::TwoDimensionalPMLHelper::create_right_pml_mesh(), oomph::TwoDimensionalPMLHelper::create_top_left_pml_mesh(), oomph::TwoDimensionalPMLHelper::create_top_pml_mesh(), and oomph::TwoDimensionalPMLHelper::create_top_right_pml_mesh().
|
protected |
Coordinate direction along which pml boundary is constant; alternatively: coordinate direction in which coordinate stretching is performed.
Referenced by oomph::PMLTimeHarmonicLinearElasticityEquationsBase< DIM >::compute_pml_coefficients(), oomph::PMLHelmholtzEquations< DIM >::compute_pml_coefficients(), oomph::PMLElementBase< DIM >::disable_pml(), and oomph::PMLElementBase< DIM >::enable_pml().
|
protected |
Coordinate of inner pml boundary (Storage is provided for any coordinate direction; only the entries for "active" directions is used.)
Referenced by oomph::PMLTimeHarmonicLinearElasticityEquationsBase< DIM >::compute_pml_coefficients(), oomph::PMLHelmholtzEquations< DIM >::compute_pml_coefficients(), and oomph::PMLElementBase< DIM >::enable_pml().
|
protected |
Boolean indicating if element is used in pml mode.
Referenced by oomph::PMLTimeHarmonicLinearElasticityEquationsBase< DIM >::compute_pml_coefficients(), oomph::PMLHelmholtzEquations< DIM >::compute_pml_coefficients(), oomph::PMLElementBase< DIM >::disable_pml(), and oomph::PMLElementBase< DIM >::enable_pml().
|
protected |
Coordinate of outer pml boundary (Storage is provided for any coordinate direction; only the entries for "active" directions is used.)
Referenced by oomph::PMLTimeHarmonicLinearElasticityEquationsBase< DIM >::compute_pml_coefficients(), oomph::PMLHelmholtzEquations< DIM >::compute_pml_coefficients(), and oomph::PMLElementBase< DIM >::enable_pml().