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

Matrix coefficient defined as a product of a scalar coefficient and a matrix coefficient. More...

#include <coefficient.hpp>

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

Public Member Functions

 ScalarMatrixProductCoefficient (double A, MatrixCoefficient &B)
 Constructor with one coefficient. Result is A*B. More...
 
 ScalarMatrixProductCoefficient (Coefficient &A, MatrixCoefficient &B)
 Constructor with two coefficients. Result is A*B. More...
 
void SetAConst (double A)
 Reset the scalar factor as a constant. More...
 
double GetAConst () const
 Return the scalar factor. More...
 
void SetACoef (Coefficient &A)
 Reset the scalar factor. More...
 
CoefficientGetACoef () const
 Return the scalar factor. More...
 
void SetBCoef (MatrixCoefficient &B)
 Reset the matrix factor. More...
 
MatrixCoefficientGetBCoef () const
 Return the matrix factor. More...
 
virtual void Eval (DenseMatrix &M, ElementTransformation &T, const IntegrationPoint &ip)
 Evaluate the matrix coefficient at ip. More...
 
- Public Member Functions inherited from mfem::MatrixCoefficient
 MatrixCoefficient (int dim, bool symm=false)
 Construct a dim x dim matrix coefficient. More...
 
 MatrixCoefficient (int h, int w, bool symm=false)
 Construct a h x w matrix coefficient. More...
 
void SetTime (double t)
 Set the time for time dependent coefficients. More...
 
double GetTime ()
 Get the time for time dependent coefficients. More...
 
int GetHeight () const
 Get the height of the matrix. More...
 
int GetWidth () const
 Get the width of the matrix. More...
 
int GetVDim () const
 For backward compatibility get the width of the matrix. More...
 
bool IsSymmetric () const
 
virtual void EvalSymmetric (Vector &K, ElementTransformation &T, const IntegrationPoint &ip)
 (DEPRECATED) Evaluate a symmetric matrix coefficient. More...
 
virtual ~MatrixCoefficient ()
 

Additional Inherited Members

- Protected Attributes inherited from mfem::MatrixCoefficient
int height
 
int width
 
double time
 
bool symmetric
 

Detailed Description

Matrix coefficient defined as a product of a scalar coefficient and a matrix coefficient.

Definition at line 1517 of file coefficient.hpp.

Constructor & Destructor Documentation

mfem::ScalarMatrixProductCoefficient::ScalarMatrixProductCoefficient ( double  A,
MatrixCoefficient B 
)

Constructor with one coefficient. Result is A*B.

Definition at line 661 of file coefficient.cpp.

mfem::ScalarMatrixProductCoefficient::ScalarMatrixProductCoefficient ( Coefficient A,
MatrixCoefficient B 
)

Constructor with two coefficients. Result is A*B.

Definition at line 667 of file coefficient.cpp.

Member Function Documentation

void mfem::ScalarMatrixProductCoefficient::Eval ( DenseMatrix M,
ElementTransformation T,
const IntegrationPoint ip 
)
virtual

Evaluate the matrix coefficient at ip.

Implements mfem::MatrixCoefficient.

Definition at line 673 of file coefficient.cpp.

Coefficient* mfem::ScalarMatrixProductCoefficient::GetACoef ( ) const
inline

Return the scalar factor.

Definition at line 1539 of file coefficient.hpp.

double mfem::ScalarMatrixProductCoefficient::GetAConst ( ) const
inline

Return the scalar factor.

Definition at line 1534 of file coefficient.hpp.

MatrixCoefficient* mfem::ScalarMatrixProductCoefficient::GetBCoef ( ) const
inline

Return the matrix factor.

Definition at line 1544 of file coefficient.hpp.

void mfem::ScalarMatrixProductCoefficient::SetACoef ( Coefficient A)
inline

Reset the scalar factor.

Definition at line 1537 of file coefficient.hpp.

void mfem::ScalarMatrixProductCoefficient::SetAConst ( double  A)
inline

Reset the scalar factor as a constant.

Definition at line 1532 of file coefficient.hpp.

void mfem::ScalarMatrixProductCoefficient::SetBCoef ( MatrixCoefficient B)
inline

Reset the matrix factor.

Definition at line 1542 of file coefficient.hpp.


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