Class to store weak form components for time dependent PDEs. More...
#include <TimeDependentEquationSystem.h>
Public Member Functions | |
| TimeDependentEquationSystem (const Moose::MFEM::TimeDerivativeMap &time_derivative_map) | |
| virtual void | SetTimeStep (mfem::real_t &dt) |
| virtual void | AddKernel (std::shared_ptr< MFEMKernel > kernel) override |
| Add kernels. More... | |
| virtual void | AddIntegratedBC (std::shared_ptr< MFEMIntegratedBC > kernel) |
| virtual void | AddEssentialBC (std::shared_ptr< MFEMEssentialBC > bc) |
| Add BC associated with essentially constrained DoFs on boundaries. More... | |
| virtual void | Init (GridFunctions &gridfunctions, ComplexGridFunctions &cmplx_gridfunctions, mfem::AssemblyLevel assembly_level) |
| Initialise. More... | |
| void | FormSystem (mfem::BlockVector &trueX, mfem::BlockVector &trueRHS) |
| Assemble the linear part of the operator, assemble the right-hand side, apply essential and eliminated-variable constraints, and populate the true-DoF vectors used by the solve. More... | |
| void | Mult (const mfem::Vector &u, mfem::Vector &residual) const override |
| Compute residual y = Mu. More... | |
| virtual void | ComputeNonlinearResidual (const mfem::Vector &u, mfem::Vector &residual) const |
| Compute the contribution to the residual from nonlinear forms only. More... | |
| mfem::Operator & | GetGradient (const mfem::Vector &u) const override |
| Get Jacobian at the provided vector of true DoFs of trial variables. More... | |
| virtual void | SetTrialVariablesFromTrueVectors (const mfem::BlockVector &trueX) const |
| Update variable from solution vector after solve. More... | |
| void | SetSolverRequiresGradient (bool requires_gradient) |
| Set whether the nonlinear solver driving this equation system requires Jacobian information. More... | |
| const std::vector< std::string > & | GetTrialVarNames () const |
| const std::vector< std::string > & | GetTestVarNames () const |
| bool | Nonlinear () const |
| void | PrepareLinearSolver (LinearSolverBase &solver) |
| Prepare the provided linear solver. More... | |
Protected Member Functions | |
| virtual void | BuildBilinearForms () override |
| Build bilinear forms (diagonal Jacobian contributions) More... | |
| virtual void | BuildMixedBilinearForms () override |
| Build mixed bilinear forms (off-diagonal Jacobian contributions) More... | |
| virtual void | BuildNonlinearForms () override |
| Build non-linear action forms. More... | |
| virtual void | EliminateCoupledVariables () override |
| Perform trivial eliminations of coupled variables lacking corresponding test variables. More... | |
| virtual void | AddCoupledVariableNameIfMissing (const std::string &coupled_var_name) |
| Add coupled variable to EquationSystem. More... | |
| virtual void | AddEliminatedVariableNameIfMissing (const std::string &eliminated_var_name) |
| Add eliminated variable to EquationSystem. More... | |
| virtual void | AddTestVariableNameIfMissing (const std::string &test_var_name) |
| Add test variable to EquationSystem. More... | |
| virtual void | SetTrialVariableNames () |
| Set trial variable names from subset of coupled variables that have an associated test variable. More... | |
| void | DeleteHBlocks () |
| Deletes the HypreParMatrix associated with any pointer stored in _h_blocks, and then proceeds to delete all dynamically allocated memory for _h_blocks itself, resetting all dimensions to zero. More... | |
| void | DeleteJacobianBlocks () |
| Deletes the HypreParMatrix associated with any pointer stored in _jacobian_blocks, and then proceeds to delete all dynamically allocated memory for _jacobian_blocks itself, resetting all dimensions to zero. More... | |
| bool | VectorContainsName (const std::vector< std::string > &the_vector, const std::string &name) const |
| virtual void | ApplyEssentialBC (const std::string &var_name, mfem::ParGridFunction &trial_gf, mfem::Array< int > &global_ess_markers) |
| Apply essential BC(s) associated with var_name to set true DoFs of trial_gf and update markers of all essential boundaries. More... | |
| virtual void | ApplyEssentialBCs () |
| Update all essentially constrained true DoF markers and values on boundaries. More... | |
| virtual void | BuildLinearForms () |
| Build linear forms and eliminate constrained DoFs. More... | |
| virtual void | BuildEquationSystem () |
| Build all forms comprising this EquationSystem. More... | |
| virtual void | FormLinearSystem (mfem::OperatorHandle &op, mfem::BlockVector &trueX, mfem::BlockVector &trueRHS) |
| Form linear components of system based on on- and off-diagonal bilinear form contributions, populate solution and RHS vectors of true DoFs, and apply constraints. More... | |
| virtual void | FormSystemOperator (mfem::OperatorHandle &op, mfem::BlockVector &trueX, mfem::BlockVector &trueRHS) |
| Form matrix-free representation of linear components of system operator. More... | |
| virtual void | FormSystemMatrix (mfem::OperatorHandle &op, mfem::BlockVector &trueX, mfem::BlockVector &trueRHS) |
| Form matrix representation of linear components of system operator as a HypreParMatrix. More... | |
| void | FormJacobianMatrix (const mfem::Vector &u) |
| Compute Jacobian matrix at the provided vector of true DoFs of trial variables. More... | |
| template<class FormType > | |
| void | ApplyDomainBLFIntegrators (const std::string &trial_var_name, const std::string &test_var_name, std::shared_ptr< FormType > form, NamedFieldsMap< NamedFieldsMap< std::vector< std::shared_ptr< MFEMKernel >>>> &kernels_map, std::optional< mfem::real_t > scale_factor=std::nullopt) |
| Template method for applying BilinearFormIntegrators on domains from kernels to a BilinearForm, or MixedBilinearForm. More... | |
| void | ApplyDomainLFIntegrators (const std::string &test_var_name, std::shared_ptr< mfem::ParLinearForm > form, NamedFieldsMap< NamedFieldsMap< std::vector< std::shared_ptr< MFEMKernel >>>> &kernels_map) |
| Apply domain LinearFormIntegrators from kernels to the linear form associated with the supplied test variable. More... | |
| void | ApplyDomainNLFIntegrators (const std::string &test_var_name, std::shared_ptr< mfem::ParNonlinearForm > form, NamedFieldsMap< NamedFieldsMap< std::vector< std::shared_ptr< MFEMKernel >>>> &kernels_map, std::optional< mfem::real_t > scale_factor=std::nullopt) |
| Apply domain NonlinearFormIntegrators from kernels to the nonlinear form associated with the supplied test variable. More... | |
| template<class FormType > | |
| void | ApplyBoundaryBLFIntegrators (const std::string &trial_var_name, const std::string &test_var_name, std::shared_ptr< FormType > form, NamedFieldsMap< NamedFieldsMap< std::vector< std::shared_ptr< MFEMIntegratedBC >>>> &integrated_bc_map, std::optional< mfem::real_t > scale_factor=std::nullopt) |
| Template method for applying BilinearFormIntegrators on boundaries from integrated boundary conditions to a BilinearForm, or MixedBilinearForm. More... | |
| void | ApplyBoundaryLFIntegrators (const std::string &test_var_name, std::shared_ptr< mfem::ParLinearForm > form, NamedFieldsMap< NamedFieldsMap< std::vector< std::shared_ptr< MFEMIntegratedBC >>>> &integrated_bc_map) |
| Apply boundary LinearFormIntegrators from integrated boundary conditions to the linear form associated with the supplied test variable. More... | |
| void | ApplyBoundaryNLFIntegrators (const std::string &test_var_name, std::shared_ptr< mfem::ParNonlinearForm > form, NamedFieldsMap< NamedFieldsMap< std::vector< std::shared_ptr< MFEMIntegratedBC >>>> &integrated_bc_map, std::optional< mfem::real_t > scale_factor=std::nullopt) |
| Apply boundary NonlinearFormIntegrators from integrated boundary conditions to the nonlinear form associated with the supplied test variable. More... | |
| virtual bool | Complex () const |
| Whether this a complex equation system. More... | |
Protected Attributes | |
| mfem::real_t | _dt |
| Timestep size. More... | |
| Moose::MFEM::NamedFieldsMap< Moose::MFEM::NamedFieldsMap< std::vector< std::shared_ptr< MFEMKernel > > > > | _td_kernels_map |
| Moose::MFEM::NamedFieldsMap< mfem::ParBilinearForm > | _td_blfs |
| Containers to store contributions to weak form of the form (F du/dt, v) More... | |
| Moose::MFEM::NamedFieldsMap< Moose::MFEM::NamedFieldsMap< mfem::ParMixedBilinearForm > > | _td_mblfs |
| const Moose::MFEM::TimeDerivativeMap & | _time_derivative_map |
| Map between variable names and their time derivatives. More... | |
| std::vector< std::string > | _coupled_var_names |
| Names of all trial variables of kernels and boundary conditions added to this EquationSystem. More... | |
| std::vector< std::string > | _trial_var_names |
| Subset of _coupled_var_names of all variables corresponding to gridfunctions with degrees of freedom that comprise the state vector of this EquationSystem. More... | |
| std::vector< std::string > | _eliminated_var_names |
| Names of all coupled variables without a corresponding test variable. More... | |
| Moose::MFEM::GridFunctions | _eliminated_variables |
| Pointers to coupled variables not part of the reduced EquationSystem. More... | |
| std::vector< std::string > | _test_var_names |
| Names of all test variables corresponding to linear forms in this equation system. More... | |
| std::vector< mfem::ParFiniteElementSpace * > | _test_pfespaces |
| Pointers to finite element spaces associated with test variables. More... | |
| std::vector< mfem::ParFiniteElementSpace * > | _coupled_pfespaces |
| Pointers to finite element spaces associated with coupled variables. More... | |
| NamedFieldsMap< mfem::ParBilinearForm > | _blfs |
| NamedFieldsMap< mfem::ParLinearForm > | _lfs |
| NamedFieldsMap< mfem::ParNonlinearForm > | _nlfs |
| NamedFieldsMap< NamedFieldsMap< mfem::ParMixedBilinearForm > > | _mblfs |
| std::vector< std::unique_ptr< mfem::ParGridFunction > > | _var_ess_constraints |
| Gridfunctions holding essential constraints from Dirichlet BCs. More... | |
| std::vector< mfem::Array< int > > | _ess_tdof_lists |
| mfem::Array2D< const mfem::HypreParMatrix * > | _h_blocks |
| mfem::Array2D< const mfem::HypreParMatrix * > | _jacobian_blocks |
| NamedFieldsMap< NamedFieldsMap< std::vector< std::shared_ptr< MFEMKernel > > > > | _kernels_map |
| Arrays to store kernels to act on each component of weak form. More... | |
| NamedFieldsMap< NamedFieldsMap< std::vector< std::shared_ptr< MFEMIntegratedBC > > > > | _integrated_bc_map |
| Arrays to store integrated BCs to act on each component of weak form. More... | |
| NamedFieldsMap< std::vector< std::shared_ptr< MFEMEssentialBC > > > | _essential_bc_map |
| Arrays to store essential BCs to act on each component of weak form. More... | |
| mfem::OperatorHandle | _jacobian |
| mfem::OperatorHandle | _linear_operator |
| mfem::AssemblyLevel | _assembly_level |
| Moose::MFEM::GridFunctions * | _gfuncs |
| mfem::Array< int > | _block_true_offsets |
| bool | _non_linear = false |
| bool | _solver_requires_gradient = false |
Friends | |
| class | TimeDependentEquationSystemProblemOperator |
Class to store weak form components for time dependent PDEs.
Definition at line 21 of file TimeDependentEquationSystem.h.
| Moose::MFEM::TimeDependentEquationSystem::TimeDependentEquationSystem | ( | const Moose::MFEM::TimeDerivativeMap & | time_derivative_map | ) |
Definition at line 16 of file TimeDependentEquationSystem.C.
|
protectedvirtualinherited |
Add coupled variable to EquationSystem.
Definition at line 56 of file EquationSystem.C.
Referenced by Moose::MFEM::ComplexEquationSystem::AddComplexIntegratedBC(), Moose::MFEM::ComplexEquationSystem::AddComplexKernel(), Moose::MFEM::EquationSystem::AddIntegratedBC(), and Moose::MFEM::EquationSystem::AddKernel().
|
protectedvirtualinherited |
Add eliminated variable to EquationSystem.
Definition at line 63 of file EquationSystem.C.
Referenced by AddKernel().
|
virtualinherited |
Add BC associated with essentially constrained DoFs on boundaries.
Definition at line 138 of file EquationSystem.C.
Referenced by MFEMProblem::addBoundaryCondition().
|
virtualinherited |
Definition at line 115 of file EquationSystem.C.
Referenced by MFEMProblem::addBoundaryCondition().
|
overridevirtual |
Add kernels.
Reimplemented from Moose::MFEM::EquationSystem.
Definition at line 23 of file TimeDependentEquationSystem.C.
|
protectedvirtualinherited |
Add test variable to EquationSystem.
Definition at line 70 of file EquationSystem.C.
Referenced by Moose::MFEM::ComplexEquationSystem::AddComplexEssentialBCs(), Moose::MFEM::ComplexEquationSystem::AddComplexIntegratedBC(), Moose::MFEM::ComplexEquationSystem::AddComplexKernel(), Moose::MFEM::EquationSystem::AddEssentialBC(), Moose::MFEM::EquationSystem::AddIntegratedBC(), AddKernel(), and Moose::MFEM::EquationSystem::AddKernel().
|
protectedinherited |
Template method for applying BilinearFormIntegrators on boundaries from integrated boundary conditions to a BilinearForm, or MixedBilinearForm.
Definition at line 311 of file EquationSystem.h.
|
protectedinherited |
Apply boundary LinearFormIntegrators from integrated boundary conditions to the linear form associated with the supplied test variable.
Definition at line 650 of file EquationSystem.C.
Referenced by Moose::MFEM::EquationSystem::BuildLinearForms().
|
protectedinherited |
Apply boundary NonlinearFormIntegrators from integrated boundary conditions to the nonlinear form associated with the supplied test variable.
Definition at line 675 of file EquationSystem.C.
Referenced by BuildNonlinearForms(), and Moose::MFEM::EquationSystem::BuildNonlinearForms().
|
protectedinherited |
Template method for applying BilinearFormIntegrators on domains from kernels to a BilinearForm, or MixedBilinearForm.
Definition at line 283 of file EquationSystem.h.
|
protectedinherited |
Apply domain LinearFormIntegrators from kernels to the linear form associated with the supplied test variable.
Definition at line 595 of file EquationSystem.C.
Referenced by Moose::MFEM::EquationSystem::BuildLinearForms().
|
protectedinherited |
Apply domain NonlinearFormIntegrators from kernels to the nonlinear form associated with the supplied test variable.
Definition at line 618 of file EquationSystem.C.
Referenced by BuildNonlinearForms(), and Moose::MFEM::EquationSystem::BuildNonlinearForms().
|
protectedvirtualinherited |
Apply essential BC(s) associated with var_name to set true DoFs of trial_gf and update markers of all essential boundaries.
Definition at line 207 of file EquationSystem.C.
Referenced by Moose::MFEM::EquationSystem::ApplyEssentialBCs().
|
protectedvirtualinherited |
Update all essentially constrained true DoF markers and values on boundaries.
Reimplemented in Moose::MFEM::ComplexEquationSystem, and Moose::MFEM::EigenproblemEquationSystem.
Definition at line 228 of file EquationSystem.C.
Referenced by Moose::MFEM::EquationSystem::BuildLinearForms().
|
overrideprotectedvirtual |
Build bilinear forms (diagonal Jacobian contributions)
Reimplemented from Moose::MFEM::EquationSystem.
Definition at line 53 of file TimeDependentEquationSystem.C.
|
protectedvirtualinherited |
Build all forms comprising this EquationSystem.
Reimplemented in Moose::MFEM::ComplexEquationSystem.
Definition at line 586 of file EquationSystem.C.
Referenced by Moose::MFEM::EquationSystemProblemOperator::BuildEquationSystemOperator(), Moose::MFEM::EigenproblemESProblemOperator::BuildEquationSystemOperator(), and Moose::MFEM::TimeDependentEquationSystemProblemOperator::BuildEquationSystemOperator().
|
protectedvirtualinherited |
Build linear forms and eliminate constrained DoFs.
Reimplemented in Moose::MFEM::ComplexEquationSystem.
Definition at line 483 of file EquationSystem.C.
Referenced by Moose::MFEM::EquationSystem::BuildEquationSystem().
|
overrideprotectedvirtual |
Build mixed bilinear forms (off-diagonal Jacobian contributions)
Reimplemented from Moose::MFEM::EquationSystem.
Definition at line 87 of file TimeDependentEquationSystem.C.
|
overrideprotectedvirtual |
Build non-linear action forms.
Reimplemented from Moose::MFEM::EquationSystem.
Definition at line 167 of file TimeDependentEquationSystem.C.
|
inlineprotectedvirtualinherited |
Whether this a complex equation system.
Reimplemented in Moose::MFEM::ComplexEquationSystem.
Definition at line 218 of file EquationSystem.h.
Referenced by Moose::MFEM::EquationSystem::PrepareLinearSolver().
|
virtualinherited |
Compute the contribution to the residual from nonlinear forms only.
Definition at line 406 of file EquationSystem.C.
Referenced by Moose::MFEM::EquationSystem::Mult().
|
protectedinherited |
Deletes the HypreParMatrix associated with any pointer stored in _h_blocks, and then proceeds to delete all dynamically allocated memory for _h_blocks itself, resetting all dimensions to zero.
Definition at line 26 of file EquationSystem.C.
Referenced by Moose::MFEM::ComplexEquationSystem::FormSystemMatrix(), Moose::MFEM::EquationSystem::FormSystemMatrix(), and Moose::MFEM::EquationSystem::~EquationSystem().
|
protectedinherited |
Deletes the HypreParMatrix associated with any pointer stored in _jacobian_blocks, and then proceeds to delete all dynamically allocated memory for _jacobian_blocks itself, resetting all dimensions to zero.
Definition at line 39 of file EquationSystem.C.
Referenced by Moose::MFEM::EquationSystem::FormJacobianMatrix(), and Moose::MFEM::EquationSystem::~EquationSystem().
|
overrideprotectedvirtual |
Perform trivial eliminations of coupled variables lacking corresponding test variables.
Reimplemented from Moose::MFEM::EquationSystem.
Definition at line 183 of file TimeDependentEquationSystem.C.
|
protectedinherited |
Compute Jacobian matrix at the provided vector of true DoFs of trial variables.
Definition at line 425 of file EquationSystem.C.
Referenced by Moose::MFEM::EquationSystem::GetGradient().
|
protectedvirtualinherited |
Form linear components of system based on on- and off-diagonal bilinear form contributions, populate solution and RHS vectors of true DoFs, and apply constraints.
Definition at line 265 of file EquationSystem.C.
Referenced by Moose::MFEM::EquationSystem::FormSystem().
|
inherited |
Assemble the linear part of the operator, assemble the right-hand side, apply essential and eliminated-variable constraints, and populate the true-DoF vectors used by the solve.
Definition at line 374 of file EquationSystem.C.
Referenced by Moose::MFEM::EquationSystemProblemOperator::BuildEquationSystemOperator(), and Moose::MFEM::TimeDependentEquationSystemProblemOperator::BuildEquationSystemOperator().
|
protectedvirtualinherited |
Form matrix representation of linear components of system operator as a HypreParMatrix.
Used when EquationSystem assembly level is set to 'LEGACY'.
Reimplemented in Moose::MFEM::ComplexEquationSystem.
Definition at line 310 of file EquationSystem.C.
Referenced by Moose::MFEM::EquationSystem::FormLinearSystem().
|
protectedvirtualinherited |
Form matrix-free representation of linear components of system operator.
Used when EquationSystem assembly level is set to 'FULL', 'ELEMENT', 'PARTIAL', or 'NONE'.
Reimplemented in Moose::MFEM::ComplexEquationSystem.
Definition at line 283 of file EquationSystem.C.
Referenced by Moose::MFEM::EquationSystem::FormLinearSystem().
|
overrideinherited |
Get Jacobian at the provided vector of true DoFs of trial variables.
Definition at line 456 of file EquationSystem.C.
|
inlineinherited |
Definition at line 74 of file EquationSystem.h.
Referenced by Moose::MFEM::EquationSystemProblemOperator::SetGridFunctions(), Moose::MFEM::ComplexEquationSystemProblemOperator::SetGridFunctions(), and Moose::MFEM::TimeDependentEquationSystemProblemOperator::SetGridFunctions().
|
inlineinherited |
Definition at line 73 of file EquationSystem.h.
Referenced by Moose::MFEM::EquationSystemProblemOperator::SetGridFunctions(), Moose::MFEM::ComplexEquationSystemProblemOperator::SetGridFunctions(), and Moose::MFEM::TimeDependentEquationSystemProblemOperator::SetGridFunctions().
|
virtualinherited |
Initialise.
Reimplemented in Moose::MFEM::ComplexEquationSystem.
Definition at line 152 of file EquationSystem.C.
|
overrideinherited |
Compute residual y = Mu.
Definition at line 388 of file EquationSystem.C.
|
inlineinherited |
Definition at line 79 of file EquationSystem.h.
Referenced by Moose::MFEM::ProblemOperatorBase::SolveWithOperator().
|
inherited |
Prepare the provided linear solver.
First calls SetupLOR on the solver if it's using a Low Order Refined methodology and then calls SetOperator on the solver with the assembled linear operator
Definition at line 709 of file EquationSystem.C.
Referenced by Moose::MFEM::ProblemOperatorBase::SolveWithOperator().
|
inlineinherited |
Set whether the nonlinear solver driving this equation system requires Jacobian information.
Definition at line 66 of file EquationSystem.h.
|
inlinevirtual |
Definition at line 26 of file TimeDependentEquationSystem.h.
Referenced by Moose::MFEM::TimeDependentEquationSystemProblemOperator::BuildEquationSystemOperator().
|
protectedvirtualinherited |
Set trial variable names from subset of coupled variables that have an associated test variable.
Definition at line 77 of file EquationSystem.C.
Referenced by Moose::MFEM::ComplexEquationSystem::Init(), and Moose::MFEM::EquationSystem::Init().
|
virtualinherited |
Update variable from solution vector after solve.
Reimplemented in Moose::MFEM::ComplexEquationSystem.
Definition at line 472 of file EquationSystem.C.
Referenced by Moose::MFEM::EquationSystem::ComputeNonlinearResidual().
|
protectedinherited |
Definition at line 49 of file EquationSystem.C.
Referenced by Moose::MFEM::EquationSystem::AddCoupledVariableNameIfMissing(), Moose::MFEM::EquationSystem::AddEliminatedVariableNameIfMissing(), Moose::MFEM::EquationSystem::AddTestVariableNameIfMissing(), Moose::MFEM::EquationSystem::EliminateCoupledVariables(), and Moose::MFEM::EquationSystem::SetTrialVariableNames().
|
friend |
Definition at line 49 of file TimeDependentEquationSystem.h.
|
protectedinherited |
Definition at line 263 of file EquationSystem.h.
Referenced by BuildBilinearForms(), Moose::MFEM::ComplexEquationSystem::BuildBilinearForms(), Moose::MFEM::EquationSystem::BuildBilinearForms(), BuildMixedBilinearForms(), Moose::MFEM::EquationSystem::BuildMixedBilinearForms(), Moose::MFEM::EquationSystem::FormLinearSystem(), Moose::MFEM::EquationSystem::GetGradient(), Moose::MFEM::ComplexEquationSystem::Init(), and Moose::MFEM::EquationSystem::Init().
|
protectedinherited |
Definition at line 239 of file EquationSystem.h.
Referenced by BuildBilinearForms(), Moose::MFEM::EquationSystem::BuildBilinearForms(), Moose::MFEM::EigenproblemEquationSystem::FormEigenproblemMatrix(), Moose::MFEM::EquationSystem::FormSystemMatrix(), Moose::MFEM::EquationSystem::FormSystemOperator(), and Moose::MFEM::EquationSystem::PrepareLinearSolver().
|
protectedinherited |
Definition at line 268 of file EquationSystem.h.
Referenced by Moose::MFEM::EquationSystem::ComputeNonlinearResidual(), Moose::MFEM::EquationSystem::FormJacobianMatrix(), and Moose::MFEM::EquationSystem::FormSystem().
|
protectedinherited |
Pointers to finite element spaces associated with coupled variables.
Definition at line 236 of file EquationSystem.h.
Referenced by BuildMixedBilinearForms(), Moose::MFEM::EquationSystem::BuildMixedBilinearForms(), Moose::MFEM::ComplexEquationSystem::Init(), and Moose::MFEM::EquationSystem::Init().
|
protectedinherited |
Names of all trial variables of kernels and boundary conditions added to this EquationSystem.
Definition at line 222 of file EquationSystem.h.
Referenced by Moose::MFEM::EquationSystem::AddCoupledVariableNameIfMissing(), BuildMixedBilinearForms(), Moose::MFEM::EquationSystem::BuildMixedBilinearForms(), Moose::MFEM::ComplexEquationSystem::Init(), Moose::MFEM::EquationSystem::Init(), and Moose::MFEM::EquationSystem::SetTrialVariableNames().
|
protected |
Timestep size.
Definition at line 36 of file TimeDependentEquationSystem.h.
Referenced by BuildBilinearForms(), BuildMixedBilinearForms(), BuildNonlinearForms(), EliminateCoupledVariables(), and SetTimeStep().
|
protectedinherited |
Names of all coupled variables without a corresponding test variable.
Definition at line 228 of file EquationSystem.h.
Referenced by Moose::MFEM::EquationSystem::AddEliminatedVariableNameIfMissing(), EliminateCoupledVariables(), Moose::MFEM::EquationSystem::EliminateCoupledVariables(), Moose::MFEM::ComplexEquationSystem::Init(), Moose::MFEM::EquationSystem::Init(), and Moose::MFEM::EquationSystem::SetTrialVariableNames().
|
protectedinherited |
Pointers to coupled variables not part of the reduced EquationSystem.
Definition at line 230 of file EquationSystem.h.
Referenced by EliminateCoupledVariables(), Moose::MFEM::EquationSystem::EliminateCoupledVariables(), and Moose::MFEM::EquationSystem::Init().
|
protectedinherited |
Definition at line 246 of file EquationSystem.h.
Referenced by Moose::MFEM::EigenproblemEquationSystem::ApplyEssentialBCs(), Moose::MFEM::ComplexEquationSystem::ApplyEssentialBCs(), Moose::MFEM::EquationSystem::ApplyEssentialBCs(), BuildNonlinearForms(), Moose::MFEM::EquationSystem::BuildNonlinearForms(), Moose::MFEM::ComplexEquationSystem::FormSystemMatrix(), Moose::MFEM::EquationSystem::FormSystemMatrix(), Moose::MFEM::ComplexEquationSystem::FormSystemOperator(), Moose::MFEM::EquationSystem::FormSystemOperator(), and Moose::MFEM::EquationSystem::PrepareLinearSolver().
|
protectedinherited |
Arrays to store essential BCs to act on each component of weak form.
Named according to test variable.
Definition at line 257 of file EquationSystem.h.
Referenced by Moose::MFEM::EquationSystem::AddEssentialBC(), and Moose::MFEM::EquationSystem::ApplyEssentialBC().
|
protectedinherited |
|
protectedinherited |
Definition at line 248 of file EquationSystem.h.
Referenced by Moose::MFEM::EquationSystem::DeleteHBlocks(), Moose::MFEM::EquationSystem::DeleteJacobianBlocks(), Moose::MFEM::EquationSystem::FormJacobianMatrix(), Moose::MFEM::ComplexEquationSystem::FormSystemMatrix(), and Moose::MFEM::EquationSystem::FormSystemMatrix().
|
protectedinherited |
Arrays to store integrated BCs to act on each component of weak form.
Named according to test and trial variables.
Definition at line 254 of file EquationSystem.h.
Referenced by Moose::MFEM::EquationSystem::AddIntegratedBC(), BuildBilinearForms(), Moose::MFEM::EquationSystem::BuildBilinearForms(), Moose::MFEM::EquationSystem::BuildLinearForms(), BuildMixedBilinearForms(), BuildNonlinearForms(), and Moose::MFEM::EquationSystem::BuildNonlinearForms().
|
mutableprotectedinherited |
|
protectedinherited |
Definition at line 248 of file EquationSystem.h.
Referenced by Moose::MFEM::EquationSystem::DeleteHBlocks(), Moose::MFEM::EquationSystem::DeleteJacobianBlocks(), and Moose::MFEM::EquationSystem::FormJacobianMatrix().
|
protectedinherited |
Arrays to store kernels to act on each component of weak form.
Named according to test and trial variables.
Definition at line 251 of file EquationSystem.h.
Referenced by Moose::MFEM::EquationSystem::AddKernel(), BuildBilinearForms(), Moose::MFEM::EquationSystem::BuildBilinearForms(), Moose::MFEM::EquationSystem::BuildLinearForms(), BuildMixedBilinearForms(), Moose::MFEM::EquationSystem::BuildMixedBilinearForms(), BuildNonlinearForms(), and Moose::MFEM::EquationSystem::BuildNonlinearForms().
|
protectedinherited |
Definition at line 240 of file EquationSystem.h.
Referenced by Moose::MFEM::EquationSystem::BuildLinearForms(), EliminateCoupledVariables(), Moose::MFEM::EquationSystem::EliminateCoupledVariables(), Moose::MFEM::EquationSystem::FormSystemMatrix(), and Moose::MFEM::EquationSystem::FormSystemOperator().
|
mutableprotectedinherited |
|
protectedinherited |
Definition at line 242 of file EquationSystem.h.
Referenced by BuildMixedBilinearForms(), Moose::MFEM::EquationSystem::BuildMixedBilinearForms(), Moose::MFEM::EquationSystem::EliminateCoupledVariables(), and Moose::MFEM::EquationSystem::FormSystemMatrix().
|
protectedinherited |
Definition at line 241 of file EquationSystem.h.
Referenced by BuildNonlinearForms(), Moose::MFEM::EquationSystem::BuildNonlinearForms(), Moose::MFEM::EquationSystem::ComputeNonlinearResidual(), and Moose::MFEM::EquationSystem::FormJacobianMatrix().
|
protectedinherited |
Definition at line 270 of file EquationSystem.h.
Referenced by Moose::MFEM::EquationSystem::ApplyBoundaryNLFIntegrators(), Moose::MFEM::EquationSystem::ApplyDomainNLFIntegrators(), Moose::MFEM::EquationSystem::ComputeNonlinearResidual(), Moose::MFEM::EquationSystem::GetGradient(), Moose::MFEM::EquationSystem::Mult(), and Moose::MFEM::EquationSystem::Nonlinear().
|
protectedinherited |
Definition at line 272 of file EquationSystem.h.
Referenced by Moose::MFEM::EquationSystem::ApplyBoundaryNLFIntegrators(), Moose::MFEM::EquationSystem::ApplyDomainNLFIntegrators(), and Moose::MFEM::EquationSystem::SetSolverRequiresGradient().
|
protected |
Containers to store contributions to weak form of the form (F du/dt, v)
Definition at line 41 of file TimeDependentEquationSystem.h.
Referenced by BuildBilinearForms(), and EliminateCoupledVariables().
|
protected |
Definition at line 39 of file TimeDependentEquationSystem.h.
Referenced by AddKernel(), BuildBilinearForms(), and BuildMixedBilinearForms().
|
protected |
Definition at line 43 of file TimeDependentEquationSystem.h.
Referenced by BuildMixedBilinearForms(), and EliminateCoupledVariables().
|
protectedinherited |
Pointers to finite element spaces associated with test variables.
Definition at line 234 of file EquationSystem.h.
Referenced by BuildBilinearForms(), Moose::MFEM::ComplexEquationSystem::BuildBilinearForms(), Moose::MFEM::EquationSystem::BuildBilinearForms(), Moose::MFEM::ComplexEquationSystem::BuildLinearForms(), Moose::MFEM::EquationSystem::BuildLinearForms(), BuildMixedBilinearForms(), Moose::MFEM::EquationSystem::BuildMixedBilinearForms(), BuildNonlinearForms(), Moose::MFEM::EquationSystem::BuildNonlinearForms(), Moose::MFEM::EigenproblemEquationSystem::FormMassMatrix(), Moose::MFEM::EquationSystem::FormSystemMatrix(), Moose::MFEM::ComplexEquationSystem::Init(), and Moose::MFEM::EquationSystem::Init().
|
protectedinherited |
Names of all test variables corresponding to linear forms in this equation system.
Definition at line 232 of file EquationSystem.h.
Referenced by Moose::MFEM::EquationSystem::AddTestVariableNameIfMissing(), BuildBilinearForms(), Moose::MFEM::ComplexEquationSystem::BuildBilinearForms(), Moose::MFEM::EquationSystem::BuildBilinearForms(), Moose::MFEM::EigenproblemEquationSystem::BuildEigenproblemJacobian(), Moose::MFEM::ComplexEquationSystem::BuildLinearForms(), Moose::MFEM::EquationSystem::BuildLinearForms(), BuildMixedBilinearForms(), Moose::MFEM::EquationSystem::BuildMixedBilinearForms(), BuildNonlinearForms(), Moose::MFEM::EquationSystem::BuildNonlinearForms(), Moose::MFEM::EquationSystem::ComputeNonlinearResidual(), EliminateCoupledVariables(), Moose::MFEM::EquationSystem::EliminateCoupledVariables(), Moose::MFEM::EigenproblemEquationSystem::FormEigenproblemMatrix(), Moose::MFEM::EquationSystem::FormJacobianMatrix(), Moose::MFEM::EquationSystem::FormLinearSystem(), Moose::MFEM::ComplexEquationSystem::FormSystemMatrix(), Moose::MFEM::EquationSystem::FormSystemMatrix(), Moose::MFEM::ComplexEquationSystem::FormSystemOperator(), Moose::MFEM::EquationSystem::FormSystemOperator(), Moose::MFEM::EquationSystem::GetTestVarNames(), Moose::MFEM::ComplexEquationSystem::Init(), Moose::MFEM::EquationSystem::Init(), Moose::MFEM::EquationSystem::PrepareLinearSolver(), and Moose::MFEM::EquationSystem::SetTrialVariableNames().
|
protected |
Map between variable names and their time derivatives.
Definition at line 46 of file TimeDependentEquationSystem.h.
Referenced by AddKernel().
|
protectedinherited |
Subset of _coupled_var_names of all variables corresponding to gridfunctions with degrees of freedom that comprise the state vector of this EquationSystem.
This will differ from _coupled_var_names when time derivatives or other eliminated variables are present.
Definition at line 226 of file EquationSystem.h.
Referenced by Moose::MFEM::EigenproblemEquationSystem::ApplyEssentialBCs(), Moose::MFEM::ComplexEquationSystem::ApplyEssentialBCs(), Moose::MFEM::EquationSystem::ApplyEssentialBCs(), Moose::MFEM::EigenproblemEquationSystem::BuildEigenproblemJacobian(), BuildMixedBilinearForms(), Moose::MFEM::EquationSystem::FormJacobianMatrix(), Moose::MFEM::EquationSystem::FormLinearSystem(), Moose::MFEM::EquationSystem::FormSystem(), Moose::MFEM::ComplexEquationSystem::FormSystemMatrix(), Moose::MFEM::EquationSystem::FormSystemMatrix(), Moose::MFEM::EquationSystem::GetTrialVarNames(), Moose::MFEM::EquationSystem::Init(), Moose::MFEM::EquationSystem::SetTrialVariableNames(), Moose::MFEM::EquationSystem::SetTrialVariablesFromTrueVectors(), and Moose::MFEM::ComplexEquationSystem::SetTrialVariablesFromTrueVectors().
|
protectedinherited |
Gridfunctions holding essential constraints from Dirichlet BCs.
Definition at line 245 of file EquationSystem.h.
Referenced by Moose::MFEM::EigenproblemEquationSystem::ApplyEssentialBCs(), Moose::MFEM::EquationSystem::ApplyEssentialBCs(), Moose::MFEM::EquationSystem::FormSystemMatrix(), Moose::MFEM::EquationSystem::FormSystemOperator(), and Moose::MFEM::EquationSystem::Init().
1.8.14