MFEM v4.7.0
Finite element discretization library
|
Vector coefficient defined by an array of scalar coefficients. Coefficients that are not set will evaluate to zero in the vector. This object takes ownership of the array of coefficients inside it and deletes them at object destruction. More...
#include <coefficient.hpp>
Public Member Functions | |
VectorArrayCoefficient (int dim) | |
Construct vector of dim coefficients. The actual coefficients still need to be added with Set(). | |
void | SetTime (real_t t) |
Set the time for internally stored coefficients. | |
Coefficient * | GetCoeff (int i) |
Returns i'th coefficient. | |
Coefficient ** | GetCoeffs () |
Returns the entire array of coefficients. | |
void | Set (int i, Coefficient *c, bool own=true) |
Sets coefficient in the vector. | |
real_t | Eval (int i, ElementTransformation &T, const IntegrationPoint &ip) |
virtual void | Eval (Vector &V, ElementTransformation &T, const IntegrationPoint &ip) |
Evaluate the coefficient. Each element of vector V comes from the associated array of scalar coefficients. | |
virtual | ~VectorArrayCoefficient () |
Destroys vector coefficient. | |
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. | |
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 |
Vector coefficient defined by an array of scalar coefficients. Coefficients that are not set will evaluate to zero in the vector. This object takes ownership of the array of coefficients inside it and deletes them at object destruction.
Definition at line 778 of file coefficient.hpp.
|
explicit |
Construct vector of dim coefficients. The actual coefficients still need to be added with Set().
Definition at line 389 of file coefficient.cpp.
|
virtual |
Destroys vector coefficient.
Definition at line 415 of file coefficient.cpp.
|
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.
|
inline |
Evaluates i'th component of the vector of coefficients and returns the value.
Definition at line 803 of file coefficient.hpp.
|
virtual |
Evaluate the coefficient. Each element of vector V comes from the associated array of scalar coefficients.
Implements mfem::VectorCoefficient.
Definition at line 423 of file coefficient.cpp.
|
inline |
Returns i'th coefficient.
Definition at line 793 of file coefficient.hpp.
|
inline |
Returns the entire array of coefficients.
Definition at line 796 of file coefficient.hpp.
void mfem::VectorArrayCoefficient::Set | ( | int | i, |
Coefficient * | c, | ||
bool | own = true ) |
Sets coefficient in the vector.
Definition at line 408 of file coefficient.cpp.
|
virtual |
Set the time for internally stored coefficients.
Reimplemented from mfem::VectorCoefficient.
Definition at line 399 of file coefficient.cpp.