MFEM
v3.4
Finite element discretization library
|
Abstract class for integrators that support delta coefficients. More...
#include <lininteg.hpp>
Public Member Functions | |
bool | IsDelta () const |
Returns true if the derived class instance uses a delta coefficient. More... | |
void | GetDeltaCenter (Vector ¢er) |
Returns the center of the delta coefficient. More... | |
virtual void | AssembleDeltaElementVect (const FiniteElement &fe, ElementTransformation &Trans, Vector &elvect)=0 |
Assemble the delta coefficient at the IntegrationPoint set in Trans which is assumed to map to the delta coefficient center. More... | |
Public Member Functions inherited from mfem::LinearFormIntegrator | |
virtual void | AssembleRHSElementVect (const FiniteElement &el, ElementTransformation &Tr, Vector &elvect)=0 |
virtual void | AssembleRHSElementVect (const FiniteElement &el, FaceElementTransformations &Tr, Vector &elvect) |
void | SetIntRule (const IntegrationRule *ir) |
const IntegrationRule * | GetIntRule () |
virtual | ~LinearFormIntegrator () |
Protected Member Functions | |
DeltaLFIntegrator (Coefficient &q, const IntegrationRule *ir=NULL) | |
This constructor should be used by derived classes that use a scalar DeltaCoefficient. More... | |
DeltaLFIntegrator (VectorCoefficient &vq, const IntegrationRule *ir=NULL) | |
This constructor should be used by derived classes that use a VectorDeltaCoefficient. More... | |
Protected Member Functions inherited from mfem::LinearFormIntegrator | |
LinearFormIntegrator (const IntegrationRule *ir=NULL) | |
Protected Attributes | |
DeltaCoefficient * | delta |
VectorDeltaCoefficient * | vec_delta |
Protected Attributes inherited from mfem::LinearFormIntegrator | |
const IntegrationRule * | IntRule |
Abstract class for integrators that support delta coefficients.
Definition at line 47 of file lininteg.hpp.
|
inlineprotected |
This constructor should be used by derived classes that use a scalar DeltaCoefficient.
Definition at line 55 of file lininteg.hpp.
|
inlineprotected |
This constructor should be used by derived classes that use a VectorDeltaCoefficient.
Definition at line 62 of file lininteg.hpp.
|
pure virtual |
Assemble the delta coefficient at the IntegrationPoint set in Trans which is assumed to map to the delta coefficient center.
Implemented in mfem::VectorFEDomainLFIntegrator, mfem::VectorDomainLFIntegrator, and mfem::DomainLFIntegrator.
|
inline |
Returns the center of the delta coefficient.
Definition at line 73 of file lininteg.hpp.
|
inline |
Returns true if the derived class instance uses a delta coefficient.
Definition at line 70 of file lininteg.hpp.
|
protected |
Definition at line 50 of file lininteg.hpp.
|
protected |
Definition at line 51 of file lininteg.hpp.