MFEM v4.7.0
Finite element discretization library
|
Scalar coefficient defined as a scalar raised to a power. More...
#include <coefficient.hpp>
Public Member Functions | |
PowerCoefficient (Coefficient &A, real_t p_) | |
Construct with a coefficient and a constant power p_. Result is A^p. | |
void | SetTime (real_t t) |
Set the time for internally stored coefficients. | |
void | SetACoef (Coefficient &A) |
Reset the base coefficient. | |
Coefficient * | GetACoef () const |
Return the base coefficient. | |
void | SetExponent (real_t p_) |
Reset the exponent. | |
real_t | GetExponent () const |
Return the exponent. | |
virtual real_t | Eval (ElementTransformation &T, const IntegrationPoint &ip) |
Evaluate the coefficient at ip. | |
Public Member Functions inherited from mfem::Coefficient | |
Coefficient () | |
real_t | GetTime () |
Get the time for time dependent coefficients. | |
real_t | Eval (ElementTransformation &T, const IntegrationPoint &ip, real_t t) |
Evaluate the coefficient in the element described by T at the point ip at time t. | |
virtual void | Project (QuadratureFunction &qf) |
Fill the QuadratureFunction qf by evaluating the coefficient at the quadrature points. | |
virtual | ~Coefficient () |
Additional Inherited Members | |
Protected Attributes inherited from mfem::Coefficient | |
real_t | time |
Scalar coefficient defined as a scalar raised to a power.
Definition at line 1644 of file coefficient.hpp.
|
inline |
Construct with a coefficient and a constant power p_. Result is A^p.
Definition at line 1653 of file coefficient.hpp.
|
inlinevirtual |
Evaluate the coefficient at ip.
Implements mfem::Coefficient.
Definition at line 1670 of file coefficient.hpp.
|
inline |
Return the base coefficient.
Definition at line 1662 of file coefficient.hpp.
|
inline |
Return the exponent.
Definition at line 1667 of file coefficient.hpp.
|
inline |
Reset the base coefficient.
Definition at line 1660 of file coefficient.hpp.
|
inline |
Reset the exponent.
Definition at line 1665 of file coefficient.hpp.
|
virtual |
Set the time for internally stored coefficients.
Reimplemented from mfem::Coefficient.
Definition at line 969 of file coefficient.cpp.