SERiF 0.0.1a
3+1D Stellar Structure and Evolution
|
Structure to hold the various bilinear and nonlinear forms for the polytrope problem. More...
#include <polySolver.h>
Public Attributes | |
std::unique_ptr< mfem::MixedBilinearForm > | M |
Mixed bilinear form ![]() ![]() ![]() ![]() ![]() | |
std::unique_ptr< mfem::MixedBilinearForm > | Q |
Mixed bilinear form ![]() ![]() ![]() ![]() | |
std::unique_ptr< mfem::BilinearForm > | D |
Bilinear form ![]() ![]() ![]() ![]() | |
std::unique_ptr< mfem::BilinearForm > | S |
Bilinear form ![]() ![]() | |
std::unique_ptr< mfem::NonlinearForm > | f |
Nonlinear form ![]() ![]() ![]() | |
Structure to hold the various bilinear and nonlinear forms for the polytrope problem.
This structure bundles the MFEM forms that represent the discretized weak formulation of the mixed variable polytropic equations. The system being solved is typically:
After integration by parts and discretization, these lead to matrix equations involving the forms stored here.
Definition at line 137 of file polySolver.h.
std::unique_ptr<mfem::BilinearForm> serif::polytrope::formBundle::D |
Bilinear form . This is a mass matrix for the vector field
. It arises from the
term in the first equation when tested with a vector test function
.
Definition at line 158 of file polySolver.h.
std::unique_ptr<mfem::NonlinearForm> serif::polytrope::formBundle::f |
Nonlinear form . This form arises from the nonlinear source term
in the second equation, tested with a scalar test function
.
Definition at line 172 of file polySolver.h.
std::unique_ptr<mfem::MixedBilinearForm> serif::polytrope::formBundle::M |
Mixed bilinear form . This form arises from the term
in the first equation, tested with a vector test function
. It couples the scalar field
(potential) with the vector field
(flux).
Definition at line 143 of file polySolver.h.
std::unique_ptr<mfem::MixedBilinearForm> serif::polytrope::formBundle::Q |
Mixed bilinear form . This form arises from the term
in the first equation, tested with a scalar test function
, after integration by parts of the
term. It can also be seen as related to the transpose of a discrete gradient operator.
Definition at line 151 of file polySolver.h.
std::unique_ptr<mfem::BilinearForm> serif::polytrope::formBundle::S |
Bilinear form . This is a stiffness matrix (Laplacian) for the scalar field
. It is used for stabilization terms or alternative formulations.
Definition at line 165 of file polySolver.h.