MFEM
v4.1.0
Finite element discretization library
|
#include <coefficient.hpp>
Public Member Functions | |
MatrixFunctionCoefficient (int dim, void(*F)(const Vector &, DenseMatrix &), Coefficient *q=NULL) | |
Construct a time-independent square matrix coefficient from a C-function. More... | |
MatrixFunctionCoefficient (const DenseMatrix &m, Coefficient &q) | |
Construct a constant matrix coefficient times a scalar Coefficient. More... | |
MatrixFunctionCoefficient (int dim, void(*TDF)(const Vector &, double, DenseMatrix &), Coefficient *q=NULL) | |
Construct a time-dependent square matrix coefficient from a C-function. More... | |
virtual void | Eval (DenseMatrix &K, ElementTransformation &T, const IntegrationPoint &ip) |
Evaluate the matrix coefficient in the element described by T at the point ip, storing the result in K. More... | |
virtual | ~MatrixFunctionCoefficient () |
Public Member Functions inherited from mfem::MatrixCoefficient | |
MatrixCoefficient (int dim) | |
MatrixCoefficient (int h, int w) | |
void | SetTime (double t) |
double | GetTime () |
int | GetHeight () const |
int | GetWidth () const |
int | GetVDim () const |
virtual | ~MatrixCoefficient () |
Additional Inherited Members | |
Protected Attributes inherited from mfem::MatrixCoefficient | |
int | height |
int | width |
double | time |
Definition at line 588 of file coefficient.hpp.
|
inline |
Construct a time-independent square matrix coefficient from a C-function.
Definition at line 598 of file coefficient.hpp.
|
inline |
Construct a constant matrix coefficient times a scalar Coefficient.
Definition at line 608 of file coefficient.hpp.
|
inline |
Construct a time-dependent square matrix coefficient from a C-function.
Definition at line 617 of file coefficient.hpp.
|
inlinevirtual |
Definition at line 630 of file coefficient.hpp.
|
virtual |
Evaluate the matrix coefficient in the element described by T at the point ip, storing the result in K.
Implements mfem::MatrixCoefficient.
Definition at line 288 of file coefficient.cpp.