https://mooseframework.inl.gov
Loading...
Searching...
No Matches
ProblemOperator.h
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10#ifdef MOOSE_MFEM_ENABLED
11
12#pragma once
13
14#include "MFEMProblemData.h"
15#include "ProblemOperatorBase.h"
16
17namespace Moose::MFEM
18{
20class ProblemOperator : public mfem::Operator, public ProblemOperatorBase
21{
22public:
24
25 virtual void SetGridFunctions() override;
26
27 virtual void Solve() override {}
28 void Mult(const mfem::Vector &, mfem::Vector &) const override {}
29};
30
31} // namespace Moose::MFEM
32
33#endif
Connects MFEMProblem's MOOSE solver objects to EquationSystem's mathematics.
Steady-state problem operator with no equation system.
virtual void Solve() override
virtual void SetGridFunctions() override
void Mult(const mfem::Vector &, mfem::Vector &) const override
ProblemOperator(MFEMProblem &problem)
Utilities for converting between vector(s) of libMesh Points and MFEM Vector(s).