https://mooseframework.inl.gov
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 
17 namespace Moose::MFEM
18 {
21 class TimeDependentProblemOperator : public mfem::TimeDependentOperator, public ProblemOperatorBase
22 {
23 public:
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
Problem operator for time-dependent problems with no equation system.
Interface inherited by ProblemOperator and TimeDependentProblemOperator. Removes duplicated code in b...
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).