https://mooseframework.inl.gov
MFEMSubMeshTransfer.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 MFEM_ENABLED
11 
12 #pragma once
13 
14 #include "MFEMGeneralUserObject.h"
15 #include "libmesh/ignore_warnings.h"
16 #include <mfem.hpp>
17 #include "libmesh/restore_warnings.h"
18 
24 {
25 public:
27 
29 
30  // Executes the transfer.
31  virtual void execute() override;
32 
33 private:
34  // Name of source MFEMVariable to transfer DoF data from.
35  const VariableName & _source_var_name;
37  const mfem::ParGridFunction & _source_var;
39  const VariableName & _result_var_name;
41  mfem::ParGridFunction & _result_var;
42 };
43 
44 #endif
MFEMSubMeshTransfer(const InputParameters &parameters)
static InputParameters validParams()
const mfem::ParGridFunction & _source_var
Reference to source gridfunction.
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
const VariableName & _source_var_name
Class to transfer MFEM variable data to or from a restricted copy of the variable defined on an a sub...
mfem::ParGridFunction & _result_var
Reference to result gridfunction.
virtual void execute() override
Execute method.
const VariableName & _result_var_name
Name of MFEMVariable to store the transferred output in.
const InputParameters & parameters() const
Get the parameters of the object.