MFEM v4.7.0
Finite element discretization library
|
A general vector function coefficient. More...
#include <coefficient.hpp>
Public Member Functions | |
VectorFunctionCoefficient (int dim, std::function< void(const Vector &, Vector &)> F, Coefficient *q=nullptr) | |
Define a time-independent vector coefficient from a std function. | |
VectorFunctionCoefficient (int dim, std::function< void(const Vector &, real_t, Vector &)> TDF, Coefficient *q=nullptr) | |
Define a time-dependent vector coefficient from a std function. | |
virtual void | Eval (Vector &V, ElementTransformation &T, const IntegrationPoint &ip) |
Evaluate the vector coefficient at ip. | |
virtual | ~VectorFunctionCoefficient () |
virtual void | Eval (DenseMatrix &M, ElementTransformation &T, const IntegrationRule &ir) |
Evaluate the vector coefficient in the element described by T at all points of ir, storing the result in M. | |
Public Member Functions inherited from mfem::VectorCoefficient | |
VectorCoefficient (int vd) | |
Initialize the VectorCoefficient with vector dimension vd. | |
virtual void | SetTime (real_t t) |
Set the time for time dependent coefficients. | |
real_t | GetTime () |
Get the time for time dependent coefficients. | |
int | GetVDim () |
Returns dimension of the vector. | |
virtual void | Project (QuadratureFunction &qf) |
Fill the QuadratureFunction qf by evaluating the coefficient at the quadrature points. | |
virtual | ~VectorCoefficient () |
Additional Inherited Members | |
Protected Attributes inherited from mfem::VectorCoefficient | |
int | vdim |
real_t | time |
A general vector function coefficient.
Definition at line 738 of file coefficient.hpp.
|
inline |
Define a time-independent vector coefficient from a std function.
dim | - the size of the vector |
F | - time-independent function |
q | - optional scalar Coefficient to scale the vector coefficient |
Definition at line 750 of file coefficient.hpp.
|
inline |
Define a time-dependent vector coefficient from a std function.
dim | - the size of the vector |
TDF | - time-dependent function |
q | - optional scalar Coefficient to scale the vector coefficient |
Definition at line 760 of file coefficient.hpp.
|
inlinevirtual |
Definition at line 771 of file coefficient.hpp.
|
virtual |
Evaluate the vector coefficient in the element described by T at all points of ir, storing the result in M.
The dimensions of M are GetVDim() by ir.GetNPoints() and they must be set by the implementation of this method.
The general implementation provided by the base class (using the Eval method for one IntegrationPoint at a time) can be overloaded for more efficient implementation.
Reimplemented from mfem::VectorCoefficient.
Definition at line 605 of file coefficient.cpp.
|
virtual |
Evaluate the vector coefficient at ip.
Implements mfem::VectorCoefficient.
Definition at line 366 of file coefficient.cpp.