MFEM  v4.1.0
Finite element discretization library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
Public Member Functions | List of all members
mfem::VectorArrayCoefficient Class Reference

Vector coefficient defined by an array of scalar coefficients. More...

#include <coefficient.hpp>

Inheritance diagram for mfem::VectorArrayCoefficient:
[legend]
Collaboration diagram for mfem::VectorArrayCoefficient:
[legend]

Public Member Functions

 VectorArrayCoefficient (int dim)
 Construct vector of dim coefficients. More...
 
CoefficientGetCoeff (int i)
 Returns i'th coefficient. More...
 
Coefficient ** GetCoeffs ()
 
void Set (int i, Coefficient *c, bool own=true)
 Sets coefficient in the vector. More...
 
double Eval (int i, ElementTransformation &T, const IntegrationPoint &ip)
 Evaluates i'th component of the vector. More...
 
virtual void Eval (Vector &V, ElementTransformation &T, const IntegrationPoint &ip)
 Evaluate the vector coefficient in the element described by T at the point ip, storing the result in V. More...
 
virtual ~VectorArrayCoefficient ()
 Destroys vector coefficient. More...
 
- Public Member Functions inherited from mfem::VectorCoefficient
 VectorCoefficient (int vd)
 
void SetTime (double t)
 
double GetTime ()
 
int GetVDim ()
 Returns dimension of the vector. More...
 
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. More...
 
virtual ~VectorCoefficient ()
 

Additional Inherited Members

- Protected Attributes inherited from mfem::VectorCoefficient
int vdim
 
double time
 

Detailed Description

Vector coefficient defined by an array of scalar coefficients.

Definition at line 369 of file coefficient.hpp.

Constructor & Destructor Documentation

mfem::VectorArrayCoefficient::VectorArrayCoefficient ( int  dim)
explicit

Construct vector of dim coefficients.

Definition at line 127 of file coefficient.cpp.

mfem::VectorArrayCoefficient::~VectorArrayCoefficient ( )
virtual

Destroys vector coefficient.

Definition at line 144 of file coefficient.cpp.

Member Function Documentation

double mfem::VectorArrayCoefficient::Eval ( int  i,
ElementTransformation T,
const IntegrationPoint ip 
)
inline

Evaluates i'th component of the vector.

Definition at line 388 of file coefficient.hpp.

void mfem::VectorArrayCoefficient::Eval ( Vector V,
ElementTransformation T,
const IntegrationPoint ip 
)
virtual

Evaluate the vector coefficient in the element described by T at the point ip, storing the result in V.

Note
When this method is called, the caller must make sure that the IntegrationPoint associated with T is the same as ip. This can be achieved by calling T.SetIntPoint(&ip).

Implements mfem::VectorCoefficient.

Definition at line 152 of file coefficient.cpp.

Coefficient* mfem::VectorArrayCoefficient::GetCoeff ( int  i)
inline

Returns i'th coefficient.

Definition at line 380 of file coefficient.hpp.

Coefficient** mfem::VectorArrayCoefficient::GetCoeffs ( )
inline

Definition at line 382 of file coefficient.hpp.

void mfem::VectorArrayCoefficient::Set ( int  i,
Coefficient c,
bool  own = true 
)

Sets coefficient in the vector.

Definition at line 137 of file coefficient.cpp.


The documentation for this class was generated from the following files: