MFEM v4.7.0
Finite element discretization library
|
Base class Coefficients that optionally depend on space and time. These are used by the BilinearFormIntegrator, LinearFormIntegrator, and NonlinearFormIntegrator classes to represent the physical coefficients in the PDEs that are being discretized. This class can also be used in a more general way to represent functions that don't necessarily belong to a FE space, e.g., to project onto GridFunctions to use as initial conditions, exact solutions, etc. See, e.g., ex4 or ex22 for these uses. More...
#include <coefficient.hpp>
Public Member Functions | |
Coefficient () | |
virtual void | SetTime (real_t t) |
Set the time for time dependent coefficients. | |
real_t | GetTime () |
Get the time for time dependent coefficients. | |
virtual real_t | Eval (ElementTransformation &T, const IntegrationPoint &ip)=0 |
Evaluate the coefficient in the element described by T at the point ip. | |
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 () |
Protected Attributes | |
real_t | time |
Base class Coefficients that optionally depend on space and time. These are used by the BilinearFormIntegrator, LinearFormIntegrator, and NonlinearFormIntegrator classes to represent the physical coefficients in the PDEs that are being discretized. This class can also be used in a more general way to represent functions that don't necessarily belong to a FE space, e.g., to project onto GridFunctions to use as initial conditions, exact solutions, etc. See, e.g., ex4 or ex22 for these uses.
Definition at line 41 of file coefficient.hpp.
|
inline |
Definition at line 47 of file coefficient.hpp.
|
inlinevirtual |
Definition at line 79 of file coefficient.hpp.
|
pure virtual |
Evaluate the coefficient in the element described by T at the point ip.
Implemented in Combo_Level_Set_Coefficient, Dist_Level_Set_Coefficient, mfem::CartesianCoefficient, mfem::common::PProductCoefficient, mfem::ConstantCoefficient, mfem::CylindricalAzimuthalCoefficient, mfem::CylindricalRadialCoefficient, mfem::DeltaCoefficient, mfem::DeterminantCoefficient, mfem::DiffMappedGridFunctionCoefficient, mfem::DivergenceGridFunctionCoefficient, mfem::electromagnetics::JouleHeatingCoefficient, mfem::electromagnetics::MeshDependentCoefficient, mfem::electromagnetics::ScaledGFCoefficient, mfem::ExtrudeCoefficient, mfem::FunctionCoefficient, mfem::GradComponentCoeff, mfem::GridFunctionCoefficient, mfem::InnerProductCoefficient, mfem::MappedGridFunctionCoefficient, mfem::NormalGradCoeff, mfem::NormalGradComponentCoeff, mfem::PmlCoefficient, mfem::PowerCoefficient, mfem::ProductCoefficient, mfem::PWCoefficient, mfem::PWConstCoefficient, mfem::QuadratureFunctionCoefficient, mfem::RatioCoefficient, mfem::RestrictedCoefficient, mfem::ShiftedFunctionCoefficient, mfem::SIMPInterpolationCoefficient, mfem::SphericalAzimuthalCoefficient, mfem::SphericalPolarCoefficient, mfem::SphericalRadialCoefficient, mfem::StrainEnergyDensityCoefficient, mfem::SumCoefficient, mfem::TransformedCoefficient, and mfem::VectorRotProductCoefficient.
|
inline |
Evaluate the coefficient in the element described by T at the point ip at time t.
Definition at line 68 of file coefficient.hpp.
|
inline |
Get the time for time dependent coefficients.
Definition at line 53 of file coefficient.hpp.
|
virtual |
Fill the QuadratureFunction qf by evaluating the coefficient at the quadrature points.
Reimplemented in mfem::ConstantCoefficient, mfem::GridFunctionCoefficient, and mfem::QuadratureFunctionCoefficient.
Definition at line 51 of file coefficient.cpp.
|
inlinevirtual |
Set the time for time dependent coefficients.
Reimplemented in mfem::DeltaCoefficient, mfem::DeterminantCoefficient, mfem::InnerProductCoefficient, mfem::PowerCoefficient, mfem::ProductCoefficient, mfem::PWCoefficient, mfem::RatioCoefficient, mfem::RestrictedCoefficient, mfem::SumCoefficient, mfem::TransformedCoefficient, and mfem::VectorRotProductCoefficient.
Definition at line 50 of file coefficient.hpp.
|
protected |
Definition at line 44 of file coefficient.hpp.