10 #ifdef MOOSE_MFEM_ENABLED 14 #include "libmesh/ignore_warnings.h" 15 #include "mfem/miniapps/common/pfem_extras.hpp" 16 #include "libmesh/restore_warnings.h" 27 class CoefficientManager;
52 virtual void AddKernel(std::shared_ptr<MFEMKernel> kernel);
60 mfem::AssemblyLevel assembly_level);
72 void FormSystem(mfem::BlockVector & trueX, mfem::BlockVector & trueRHS);
74 void Mult(
const mfem::Vector & u, mfem::Vector & residual)
const override;
78 mfem::Operator &
GetGradient(
const mfem::Vector & u)
const override;
131 std::shared_ptr<mfem::ParBilinearForm>
133 mfem::ParFiniteElementSpace & fespace,
134 mfem::AssemblyLevel assembly_level);
140 std::shared_ptr<mfem::ParNonlinearForm>
142 mfem::ParFiniteElementSpace & fespace,
143 mfem::AssemblyLevel assembly_level);
154 virtual bool IsEigen()
const {
return false; }
186 const std::string & name)
const;
191 mfem::ParGridFunction & trial_gf,
192 mfem::Array<int> & global_ess_markers);
209 mfem::BlockVector & trueX,
210 mfem::BlockVector & trueRHS);
211 using mfem::Operator::FormSystemOperator;
215 mfem::BlockVector & trueX,
216 mfem::BlockVector & trueRHS);
220 mfem::BlockVector & trueX,
221 mfem::BlockVector & trueRHS);
229 template <
class FormType>
231 const std::string & trial_var_name,
232 const std::string & test_var_name,
233 std::shared_ptr<FormType> form,
235 std::optional<mfem::real_t> scale_factor = std::nullopt);
242 const std::string & test_var_name,
243 std::shared_ptr<mfem::ParLinearForm> form,
251 const std::string & test_var_name,
252 std::shared_ptr<mfem::ParNonlinearForm> form,
254 std::optional<mfem::real_t> scale_factor = std::nullopt);
260 template <
class FormType>
262 const std::string & trial_var_name,
263 const std::string & test_var_name,
264 std::shared_ptr<FormType> form,
267 std::optional<mfem::real_t> scale_factor = std::nullopt);
274 const std::string & test_var_name,
275 std::shared_ptr<mfem::ParLinearForm> form,
284 const std::string & test_var_name,
285 std::shared_ptr<mfem::ParNonlinearForm> form,
288 std::optional<mfem::real_t> scale_factor = std::nullopt);
352 using mfem::Operator::RecoverFEMSolution;
355 template <
class FormType>
358 const std::string & trial_var_name,
359 const std::string & test_var_name,
360 std::shared_ptr<FormType> form,
362 std::optional<mfem::real_t> scale_factor)
364 if (kernels_map.Has(test_var_name) && kernels_map.Get(test_var_name)->Has(trial_var_name))
366 auto kernels = kernels_map.GetRef(test_var_name).GetRef(trial_var_name);
367 for (
auto & kernel : kernels)
369 mfem::BilinearFormIntegrator * integ = kernel->createBFIntegrator();
373 if (scale_factor.has_value())
375 kernel->isSubdomainRestricted()
376 ? form->AddDomainIntegrator(std::move(integ), kernel->getSubdomainMarkers())
377 : form->AddDomainIntegrator(std::move(integ));
383 template <
class FormType>
386 const std::string & trial_var_name,
387 const std::string & test_var_name,
388 std::shared_ptr<FormType> form,
391 std::optional<mfem::real_t> scale_factor)
393 if (integrated_bc_map.Has(test_var_name) &&
394 integrated_bc_map.Get(test_var_name)->Has(trial_var_name))
396 auto bcs = integrated_bc_map.GetRef(test_var_name).GetRef(trial_var_name);
397 for (
auto & bc : bcs)
399 mfem::BilinearFormIntegrator * integ = bc->createBFIntegrator();
403 if (scale_factor.has_value())
405 bc->isBoundaryRestricted()
406 ? form->AddBoundaryIntegrator(std::move(integ), bc->getBoundaryMarkers())
407 : form->AddBoundaryIntegrator(std::move(integ));
void SetCoefficientManager(CoefficientManager &coefficients)
Set the coefficient manager to notify when trial variables are updated, so that stored projections of...
virtual bool IsTimeDependent() const
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...
NamedFieldsMap< mfem::ParBilinearForm > _blfs
mfem::ParGridFunction & GetGridFunction(const std::string &trial_var_name)
virtual void EliminateCoupledVariables()
Perform trivial eliminations of coupled variables lacking corresponding test variables.
NamedFieldsMap< NamedFieldsMap< mfem::ParMixedBilinearForm > > _mblfs
virtual void AddTestVariableNameIfMissing(const std::string &test_var_name)
Add test variable to EquationSystem.
virtual void AddKernel(std::shared_ptr< MFEMKernel > kernel)
Add kernels.
std::shared_ptr< mfem::ParNonlinearForm > BuildNonlinearFormForFESpace(const std::string &var_name, mfem::ParFiniteElementSpace &fespace, mfem::AssemblyLevel assembly_level)
Build a fresh ParNonlinearForm on the given FESpace using the same kernels as the main system's nonli...
mfem::ParBilinearForm & GetBilinearForm(const std::string &test_var_name)
virtual void BuildBilinearForms()
Build bilinear forms (diagonal Jacobian contributions)
std::vector< mfem::ParFiniteElementSpace * > _coupled_pfespaces
Pointers to finite element spaces associated with coupled variables.
const mfem::Vector & GetLinearizationPoint() const
The true-DoF vector used for the most recent Jacobian linearization.
virtual void SetTrialVariablesFromTrueVectors(const mfem::BlockVector &trueX) const
Update variable from solution vector after solve.
virtual bool IsComplex() const
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.
bool VectorContainsName(const std::vector< std::string > &the_vector, const std::string &name) const
NamedFieldsMap< NamedFieldsMap< std::vector< std::shared_ptr< MFEMIntegratedBC > > > > _integrated_bc_map
Arrays to store integrated BCs to act on each component of weak form.
std::vector< std::string > _eliminated_var_names
Names of all coupled variables without a corresponding test variable.
void SetGradientRequired(bool requires_gradient)
Set whether an external object (such as a nonlinear solver) requires Jacobian information for this Eq...
void FormJacobianMatrix(const mfem::Vector &u)
Compute Jacobian matrix at the provided vector of true DoFs of trial variables.
~EquationSystem() override
NamedFieldsMap< mfem::ParNonlinearForm > _nlfs
Owns the weak-form mathematics of a MOOSE MFEM problem.
Front-end class for creating and storing MFEM coefficients.
Moose::MFEM::GridFunctions _eliminated_variables
Pointers to coupled variables not part of the reduced EquationSystem.
virtual void AddEssentialBC(std::shared_ptr< MFEMEssentialBC > bc)
Add BC associated with essentially constrained DoFs on boundaries.
std::vector< mfem::Array< int > > _ess_tdof_lists
CoefficientManager * _coefficient_manager
mfem::AssemblyLevel _assembly_level
mfem::Array< int > & GetEssentialBoundaryMarkers(const std::string &var_name)
Return the essential boundary attribute marker array for a given trial variable.
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 condition...
std::vector< mfem::ParFiniteElementSpace * > _test_pfespaces
Pointers to finite element spaces associated with test variables.
mfem::OperatorHandle & GetLinearOperator() const
Get operator handle for linear component of system operator.
void FormSystem(mfem::BlockVector &trueX, mfem::BlockVector &trueRHS)
Build all weak-form components via BuildEquationSystem(), form the constrained linear part of the sys...
void Mult(const mfem::Vector &u, mfem::Vector &residual) const override
Compute residual y = Mu.
mfem::Array< int > _block_true_offsets
std::vector< std::string > _trial_var_names
Subset of _coupled_var_names of all variables corresponding to gridfunctions with degrees of freedom ...
NamedFieldsMap< std::vector< std::shared_ptr< MFEMEssentialBC > > > _essential_bc_map
Arrays to store essential BCs to act on each component of weak form.
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...
virtual bool IsEigen() const
mfem::OperatorHandle _jacobian
NamedFieldsMap< NamedFieldsMap< std::vector< std::shared_ptr< MFEMKernel > > > > _kernels_map
Arrays to store kernels to act on each component of weak form.
std::vector< std::string > _test_var_names
Names of all test variables corresponding to linear forms in this equation system.
virtual void BuildEquationSystem()
Build all forms comprising this EquationSystem.
std::vector< std::unique_ptr< mfem::ParGridFunction > > _var_ess_constraints
Gridfunctions holding essential constraints from Dirichlet BCs.
const mfem::Array< int > & GetBlockOffsets() const
Getter for block true offsets associated with the EquationSystem operator.
std::shared_ptr< mfem::ParBilinearForm > BuildBilinearFormForFESpace(const std::string &var_name, mfem::ParFiniteElementSpace &fespace, mfem::AssemblyLevel assembly_level)
Build a fresh ParBilinearForm on the given FESpace using the same kernels as the main system's biline...
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 associate...
virtual void BuildMixedBilinearForms()
Build mixed bilinear forms (off-diagonal Jacobian contributions)
std::vector< mfem::Array< int > > _ess_markers
virtual void FormSystemOperator(mfem::OperatorHandle &op, mfem::BlockVector &trueX, mfem::BlockVector &trueRHS)
Form matrix-free representation of linear components of system operator.
Integrator which scales its results by a constant value.
mfem::Array2D< const mfem::HypreParMatrix * > _h_blocks
virtual void SetTrialVariableNames()
Set trial variable names from subset of coupled variables that have an associated test variable...
virtual void FormSystemMatrix(mfem::OperatorHandle &op, mfem::BlockVector &trueX, mfem::BlockVector &trueRHS)
Form matrix representation of linear components of system operator as a HypreParMatrix.
virtual void AddCoupledVariableNameIfMissing(const std::string &coupled_var_name)
Add coupled variable to EquationSystem.
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.
void DeleteHBlocks()
Deletes the HypreParMatrix associated with any pointer stored in _h_blocks, and then proceeds to dele...
std::vector< std::string > _coupled_var_names
Names of all trial variables of kernels and boundary conditions added to this EquationSystem.
virtual void BuildNonlinearForms()
Build non-linear action forms.
NamedFieldsMap< mfem::ParLinearForm > _lfs
virtual void BuildLinearForms()
Build linear forms and eliminate constrained DoFs.
const std::vector< std::string > & GetTrialVarNames() const
const std::vector< std::string > & GetTestVarNames() const
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 ass...
virtual void ApplyEssentialBCs()
Update all essentially constrained true DoF markers and values on boundaries.
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 ...
Utilities for converting between vector(s) of libMesh Points and MFEM Vector(s).
mfem::OperatorHandle _linear_operator
virtual void AddEliminatedVariableNameIfMissing(const std::string &eliminated_var_name)
Add eliminated variable to EquationSystem.
virtual void Init(GridFunctions &gridfunctions, ComplexGridFunctions &cmplx_gridfunctions, mfem::AssemblyLevel assembly_level)
Initialise.
const mfem::Vector * _linearization_point
T & GetRef(const std::string &field_name) const
Returns a reference to a field.
mfem::Operator & GetGradient(const mfem::Vector &u) const override
Get Jacobian at the provided vector of true DoFs of trial variables.
bool IsMultivariate() const
virtual void ComputeNonlinearResidual(const mfem::Vector &u, mfem::Vector &residual) const
Compute the contribution to the residual from nonlinear forms only.
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...
virtual void AddIntegratedBC(std::shared_ptr< MFEMIntegratedBC > kernel)
mfem::Array2D< const mfem::HypreParMatrix * > _jacobian_blocks
Moose::MFEM::GridFunctions * _gfuncs