MFEM
v4.5.2
Finite element discretization library
|
Vector coefficient defined by a vector GridFunction. More...
#include <coefficient.hpp>
Public Member Functions | |
VectorGridFunctionCoefficient () | |
Construct an empty coefficient. Calling Eval() before the grid function is set will cause a segfault. More... | |
VectorGridFunctionCoefficient (const GridFunction *gf) | |
Construct the coefficient with grid function gf. The grid function is not owned by the coefficient. More... | |
void | SetGridFunction (const GridFunction *gf) |
Set the grid function for this coefficient. Also sets the Vector dimension to match that of the gf. More... | |
const GridFunction * | GetGridFunction () const |
Returns a pointer to the grid function in this Coefficient. More... | |
virtual void | Eval (Vector &V, ElementTransformation &T, const IntegrationPoint &ip) |
Evaluate the vector coefficient at ip. More... | |
virtual void | Eval (DenseMatrix &M, ElementTransformation &T, const IntegrationRule &ir) |
Evaluate the vector coefficients at all of the locations in the integration rule and write the vectors into the columns of matrix M. More... | |
virtual void | Project (QuadratureFunction &qf) |
Fill the QuadratureFunction qf by evaluating the coefficient at the quadrature points. More... | |
virtual | ~VectorGridFunctionCoefficient () |
Public Member Functions inherited from mfem::VectorCoefficient | |
VectorCoefficient (int vd) | |
Initialize the VectorCoefficient with vector dimension vd. More... | |
virtual void | SetTime (double t) |
Set the time for time dependent coefficients. More... | |
double | GetTime () |
Get the time for time dependent coefficients. More... | |
int | GetVDim () |
Returns dimension of the vector. More... | |
virtual | ~VectorCoefficient () |
Protected Attributes | |
const GridFunction * | GridFunc |
Protected Attributes inherited from mfem::VectorCoefficient | |
int | vdim |
double | time |
Vector coefficient defined by a vector GridFunction.
Definition at line 683 of file coefficient.hpp.
|
inline |
Construct an empty coefficient. Calling Eval() before the grid function is set will cause a segfault.
Definition at line 691 of file coefficient.hpp.
mfem::VectorGridFunctionCoefficient::VectorGridFunctionCoefficient | ( | const GridFunction * | gf | ) |
Construct the coefficient with grid function gf. The grid function is not owned by the coefficient.
Definition at line 383 of file coefficient.cpp.
|
inlinevirtual |
Definition at line 721 of file coefficient.hpp.
|
virtual |
Evaluate the vector coefficient at ip.
Implements mfem::VectorCoefficient.
Definition at line 395 of file coefficient.cpp.
|
virtual |
Evaluate the vector coefficients at all of the locations in the integration rule and write the vectors into the columns of matrix M.
Reimplemented from mfem::VectorCoefficient.
Definition at line 411 of file coefficient.cpp.
|
inline |
Returns a pointer to the grid function in this Coefficient.
Definition at line 702 of file coefficient.hpp.
|
virtual |
Fill the QuadratureFunction qf by evaluating the coefficient at the quadrature points.
This function uses the efficient QuadratureFunction::ProjectGridFunction to fill the QuadratureFunction.
Reimplemented from mfem::VectorCoefficient.
Definition at line 424 of file coefficient.cpp.
void mfem::VectorGridFunctionCoefficient::SetGridFunction | ( | const GridFunction * | gf | ) |
Set the grid function for this coefficient. Also sets the Vector dimension to match that of the gf.
Definition at line 390 of file coefficient.cpp.
|
protected |
Definition at line 686 of file coefficient.hpp.