Line data Source code
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 MFEM_ENABLED 11 : 12 : #pragma once 13 : #include "Executioner.h" 14 : #include "MFEMProblemData.h" 15 : 16 : class MFEMProblem; 17 : 18 : class MFEMExecutioner : public Executioner 19 : { 20 : public: 21 : static InputParameters validParams(); 22 : 23 : MFEMExecutioner(const InputParameters & params); 24 : 25 134 : virtual bool lastSolveConverged() const override { return true; }; 26 : 27 : /// Virtual method to construct the ProblemOperator. Call for default problems. 28 : virtual void constructProblemOperator() = 0; 29 : 30 : /** 31 : * Set the device to use to solve the FE problem. 32 : */ 33 : void setDevice(); 34 : 35 : protected: 36 : MFEMProblem & _mfem_problem; 37 : MFEMProblemData & _problem_data; 38 : mfem::Device _device; 39 : }; 40 : 41 : #endif