https://mooseframework.inl.gov
Loading...
Searching...
No Matches
TimeDependentProblemOperator.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{
21class TimeDependentProblemOperator : public mfem::TimeDependentOperator, public ProblemOperatorBase
22{
23public:
25
26 virtual void SetGridFunctions() override;
27 virtual void Solve() override {}
28 virtual void ImplicitSolve(const mfem::real_t, const mfem::Vector &, mfem::Vector &) override {}
29};
30
31} // namespace Moose::MFEM
32
33#endif
Connects MFEMProblem's MOOSE solver objects to EquationSystem's mathematics.
Problem operator for time-dependent problems with no equation system.
virtual void ImplicitSolve(const mfem::real_t, const mfem::Vector &, mfem::Vector &) override
Utilities for converting between vector(s) of libMesh Points and MFEM Vector(s).