MFEM
v4.4.0
Finite element discretization library
|
Scalar coefficient defined as the linear combination of two scalar coefficients or a scalar and a scalar coefficient. More...
#include <coefficient.hpp>
Public Member Functions | |
SumCoefficient (double A, Coefficient &B, double alpha_=1.0, double beta_=1.0) | |
Constructor with one coefficient. Result is alpha_ * A + beta_ * B. More... | |
SumCoefficient (Coefficient &A, Coefficient &B, double alpha_=1.0, double beta_=1.0) | |
Constructor with two coefficients. Result is alpha_ * A + beta_ * B. More... | |
void | SetTime (double t) |
Set the time for internally stored coefficients. More... | |
void | SetAConst (double A) |
Reset the first term in the linear combination as a constant. More... | |
double | GetAConst () const |
Return the first term in the linear combination. More... | |
void | SetACoef (Coefficient &A) |
Reset the first term in the linear combination. More... | |
Coefficient * | GetACoef () const |
Return the first term in the linear combination. More... | |
void | SetBCoef (Coefficient &B) |
Reset the second term in the linear combination. More... | |
Coefficient * | GetBCoef () const |
Return the second term in the linear combination. More... | |
void | SetAlpha (double alpha_) |
Reset the factor in front of the first term in the linear combination. More... | |
double | GetAlpha () const |
Return the factor in front of the first term in the linear combination. More... | |
void | SetBeta (double beta_) |
Reset the factor in front of the second term in the linear combination. More... | |
double | GetBeta () const |
Return the factor in front of the second term in the linear combination. More... | |
virtual double | Eval (ElementTransformation &T, const IntegrationPoint &ip) |
Evaluate the coefficient at ip. More... | |
Public Member Functions inherited from mfem::Coefficient | |
Coefficient () | |
double | GetTime () |
Get the time for time dependent coefficients. More... | |
double | Eval (ElementTransformation &T, const IntegrationPoint &ip, double t) |
Evaluate the coefficient in the element described by T at the point ip at time t. More... | |
virtual | ~Coefficient () |
Additional Inherited Members | |
Protected Attributes inherited from mfem::Coefficient | |
double | time |
Scalar coefficient defined as the linear combination of two scalar coefficients or a scalar and a scalar coefficient.
Coefficients based on sums, products, or other functions of coefficients.
Definition at line 1190 of file coefficient.hpp.
|
inline |
Constructor with one coefficient. Result is alpha_ * A + beta_ * B.
Definition at line 1202 of file coefficient.hpp.
|
inline |
Constructor with two coefficients. Result is alpha_ * A + beta_ * B.
Definition at line 1207 of file coefficient.hpp.
|
inlinevirtual |
Evaluate the coefficient at ip.
Implements mfem::Coefficient.
Definition at line 1240 of file coefficient.hpp.
|
inline |
Return the first term in the linear combination.
Definition at line 1222 of file coefficient.hpp.
|
inline |
Return the first term in the linear combination.
Definition at line 1217 of file coefficient.hpp.
|
inline |
Return the factor in front of the first term in the linear combination.
Definition at line 1232 of file coefficient.hpp.
|
inline |
Return the second term in the linear combination.
Definition at line 1227 of file coefficient.hpp.
|
inline |
Return the factor in front of the second term in the linear combination.
Definition at line 1237 of file coefficient.hpp.
|
inline |
Reset the first term in the linear combination.
Definition at line 1220 of file coefficient.hpp.
|
inline |
Reset the first term in the linear combination as a constant.
Definition at line 1215 of file coefficient.hpp.
|
inline |
Reset the factor in front of the first term in the linear combination.
Definition at line 1230 of file coefficient.hpp.
|
inline |
Reset the second term in the linear combination.
Definition at line 1225 of file coefficient.hpp.
|
inline |
Reset the factor in front of the second term in the linear combination.
Definition at line 1235 of file coefficient.hpp.
|
virtual |
Set the time for internally stored coefficients.
Reimplemented from mfem::Coefficient.
Definition at line 778 of file coefficient.cpp.