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"
27class 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;
355template <
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->isDGKernel() ? form->AddInteriorFaceIntegrator(std::move(integ))
376 : kernel->isSubdomainRestricted()
377 ? form->AddDomainIntegrator(std::move(integ), kernel->getSubdomainMarkers())
378 : form->AddDomainIntegrator(std::move(integ));
384template <
class FormType>
387 const std::string & trial_var_name,
388 const std::string & test_var_name,
389 std::shared_ptr<FormType> form,
392 std::optional<mfem::real_t> scale_factor)
394 if (integrated_bc_map.Has(test_var_name) &&
395 integrated_bc_map.Get(test_var_name)->Has(trial_var_name))
397 auto bcs = integrated_bc_map.GetRef(test_var_name).GetRef(trial_var_name);
398 for (
auto & bc : bcs)
400 mfem::BilinearFormIntegrator * integ = bc->createBFIntegrator();
404 if (scale_factor.has_value())
406 bc->isDGBC() ? bc->isBoundaryRestricted()
407 ? form->AddBdrFaceIntegrator(std::move(integ), bc->getBoundaryMarkers())
408 : form->AddBdrFaceIntegrator(std::move(integ))
409 : bc->isBoundaryRestricted()
410 ? form->AddBoundaryIntegrator(std::move(integ), bc->getBoundaryMarkers())
411 : form->AddBoundaryIntegrator(std::move(integ));
Front-end class for creating and storing MFEM coefficients.
Owns the weak-form mathematics of a MOOSE MFEM problem.
virtual void AddTestVariableNameIfMissing(const std::string &test_var_name)
Add test variable to EquationSystem.
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,...
const std::vector< std::string > & GetTrialVarNames() const
const std::vector< std::string > & GetTestVarNames() const
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...
virtual void BuildBilinearForms()
Build bilinear forms (diagonal Jacobian contributions)
virtual void BuildNonlinearForms()
Build non-linear action forms.
std::vector< std::string > _coupled_var_names
Names of all trial variables of kernels and boundary conditions added to this EquationSystem.
virtual void ApplyEssentialBCs()
Update all essentially constrained true DoF markers and values on boundaries.
std::vector< mfem::ParFiniteElementSpace * > _test_pfespaces
Pointers to finite element spaces associated with test variables.
mfem::Array< int > _block_true_offsets
void FormSystem(mfem::BlockVector &trueX, mfem::BlockVector &trueRHS)
Build all weak-form components via BuildEquationSystem(), form the constrained linear part of the sys...
void SetCoefficientManager(CoefficientManager &coefficients)
Set the coefficient manager to notify when trial variables are updated, so that stored projections of...
NamedFieldsMap< NamedFieldsMap< std::vector< std::shared_ptr< MFEMKernel > > > > _kernels_map
Arrays to store kernels to act on each component of weak form.
std::vector< mfem::ParFiniteElementSpace * > _coupled_pfespaces
Pointers to finite element spaces associated with coupled variables.
bool VectorContainsName(const std::vector< std::string > &the_vector, const std::string &name) const
const mfem::Array< int > & GetBlockOffsets() const
Getter for block true offsets associated with the EquationSystem operator.
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...
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 EliminateCoupledVariables()
Perform trivial eliminations of coupled variables lacking corresponding test variables.
virtual void BuildEquationSystem()
Build all forms comprising this EquationSystem.
mfem::Operator & GetGradient(const mfem::Vector &u) const override
Get Jacobian at the provided vector of true DoFs of trial variables.
virtual void BuildMixedBilinearForms()
Build mixed bilinear forms (off-diagonal Jacobian contributions)
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...
mfem::Array2D< const mfem::HypreParMatrix * > _h_blocks
mfem::OperatorHandle & GetLinearOperator() const
Get operator handle for linear component of system operator.
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...
std::vector< std::string > _test_var_names
Names of all test variables corresponding to linear forms in this equation system.
void FormJacobianMatrix(const mfem::Vector &u)
Compute Jacobian matrix at the provided vector of true DoFs of trial variables.
virtual void FormSystemOperator(mfem::OperatorHandle &op, mfem::BlockVector &trueX, mfem::BlockVector &trueRHS)
Form matrix-free representation of linear components of system operator.
~EquationSystem() override
bool IsMultivariate() const
mfem::Array< int > & GetEssentialBoundaryMarkers(const std::string &var_name)
Return the essential boundary attribute marker array for a given trial variable.
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...
mfem::OperatorHandle _linear_operator
const mfem::Vector * _linearization_point
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...
NamedFieldsMap< mfem::ParLinearForm > _lfs
virtual void AddIntegratedBC(std::shared_ptr< MFEMIntegratedBC > kernel)
mfem::AssemblyLevel _assembly_level
virtual void AddKernel(std::shared_ptr< MFEMKernel > kernel)
Add kernels.
virtual void SetTrialVariableNames()
Set trial variable names from subset of coupled variables that have an associated test variable.
mfem::ParGridFunction & GetGridFunction(const std::string &trial_var_name)
mfem::Array2D< const mfem::HypreParMatrix * > _jacobian_blocks
virtual void FormSystemMatrix(mfem::OperatorHandle &op, mfem::BlockVector &trueX, mfem::BlockVector &trueRHS)
Form matrix representation of linear components of system operator as a HypreParMatrix.
std::vector< mfem::Array< int > > _ess_tdof_lists
CoefficientManager * _coefficient_manager
virtual void SetTrialVariablesFromTrueVectors(const mfem::BlockVector &trueX) const
Update variable from solution vector after solve.
virtual void AddEssentialBC(std::shared_ptr< MFEMEssentialBC > bc)
Add BC associated with essentially constrained DoFs on boundaries.
NamedFieldsMap< mfem::ParBilinearForm > _blfs
void DeleteHBlocks()
Deletes the HypreParMatrix associated with any pointer stored in _h_blocks, and then proceeds to dele...
virtual void ComputeNonlinearResidual(const mfem::Vector &u, mfem::Vector &residual) const
Compute the contribution to the residual from nonlinear forms only.
mfem::OperatorHandle _jacobian
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,...
mfem::ParBilinearForm & GetBilinearForm(const std::string &test_var_name)
NamedFieldsMap< std::vector< std::shared_ptr< MFEMEssentialBC > > > _essential_bc_map
Arrays to store essential BCs to act on each component of weak form.
virtual void Init(GridFunctions &gridfunctions, ComplexGridFunctions &cmplx_gridfunctions, mfem::AssemblyLevel assembly_level)
Initialise.
std::vector< std::string > _trial_var_names
Subset of _coupled_var_names of all variables corresponding to gridfunctions with degrees of freedom ...
NamedFieldsMap< NamedFieldsMap< mfem::ParMixedBilinearForm > > _mblfs
std::vector< std::unique_ptr< mfem::ParGridFunction > > _var_ess_constraints
Gridfunctions holding essential constraints from Dirichlet BCs.
void DeleteJacobianBlocks()
Deletes the HypreParMatrix associated with any pointer stored in _jacobian_blocks,...
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 ...
virtual void AddEliminatedVariableNameIfMissing(const std::string &eliminated_var_name)
Add eliminated variable to EquationSystem.
void Mult(const mfem::Vector &u, mfem::Vector &residual) const override
Compute residual y = Mu.
NamedFieldsMap< mfem::ParNonlinearForm > _nlfs
Moose::MFEM::GridFunctions _eliminated_variables
Pointers to coupled variables not part of the reduced EquationSystem.
const mfem::Vector & GetLinearizationPoint() const
The true-DoF vector used for the most recent Jacobian linearization.
std::vector< mfem::Array< int > > _ess_markers
void SetGradientRequired(bool requires_gradient)
Set whether an external object (such as a nonlinear solver) requires Jacobian information for this Eq...
std::vector< std::string > _eliminated_var_names
Names of all coupled variables without a corresponding test variable.
virtual bool IsComplex() const
Moose::MFEM::GridFunctions * _gfuncs
virtual bool IsEigen() const
virtual void BuildLinearForms()
Build linear forms and eliminate constrained DoFs.
virtual void AddCoupledVariableNameIfMissing(const std::string &coupled_var_name)
Add coupled variable to EquationSystem.
virtual bool IsTimeDependent() 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.
T & GetRef(const std::string &field_name) const
Returns a reference to a field.
Integrator which scales its results by a constant value.
Utilities for converting between vector(s) of libMesh Points and MFEM Vector(s).