![]() |
MFEM v4.8.0
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. | |
| VectorGridFunctionCoefficient (const GridFunction *gf) | |
| Construct the coefficient with grid function gf. The grid function is not owned by the coefficient. | |
| void | SetGridFunction (const GridFunction *gf) |
| Set the grid function for this coefficient. Also sets the Vector dimension to match that of the gf. | |
| const GridFunction * | GetGridFunction () const |
| Returns a pointer to the grid function in this Coefficient. | |
| void | Eval (Vector &V, ElementTransformation &T, const IntegrationPoint &ip) override |
| Evaluate the vector coefficient at ip. | |
| void | Eval (DenseMatrix &M, ElementTransformation &T, const IntegrationRule &ir) override |
| Evaluate the vector coefficients at all of the locations in the integration rule and write the vectors into the columns of matrix M. | |
| void | Project (QuadratureFunction &qf) override |
| Fill the QuadratureFunction qf by evaluating the coefficient at the quadrature points. | |
| virtual | ~VectorGridFunctionCoefficient () |
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 | ~VectorCoefficient () |
Protected Attributes | |
| const GridFunction * | GridFunc |
Protected Attributes inherited from mfem::VectorCoefficient | |
| int | vdim |
| real_t | time |
Vector coefficient defined by a vector GridFunction.
Definition at line 823 of file coefficient.hpp.
|
inline |
Construct an empty coefficient. Calling Eval() before the grid function is set will cause a segfault.
Definition at line 831 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 433 of file coefficient.cpp.
|
inlinevirtual |
Definition at line 861 of file coefficient.hpp.
|
overridevirtual |
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 461 of file coefficient.cpp.
|
overridevirtual |
Evaluate the vector coefficient at ip.
Implements mfem::VectorCoefficient.
Definition at line 445 of file coefficient.cpp.
|
inline |
Returns a pointer to the grid function in this Coefficient.
Definition at line 842 of file coefficient.hpp.
|
overridevirtual |
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 474 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 440 of file coefficient.cpp.
|
protected |
Definition at line 826 of file coefficient.hpp.