forked from idaholab/moose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMFEMFunctorMaterial.h
More file actions
34 lines (27 loc) · 947 Bytes
/
MFEMFunctorMaterial.h
File metadata and controls
34 lines (27 loc) · 947 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//* This file is part of the MOOSE framework
//* https://mooseframework.inl.gov
//*
//* All rights reserved, see COPYRIGHT for full restrictions
//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
//*
//* Licensed under LGPL 2.1, please see LICENSE for details
//* https://www.gnu.org/licenses/lgpl-2.1.html
#ifdef MOOSE_MFEM_ENABLED
#pragma once
#include "MFEMObject.h"
#include "MFEMBlockRestrictable.h"
#include "MFEMBoundaryRestrictable.h"
#include "CoefficientManager.h"
class MFEMFunctorMaterial : public MFEMObject,
public MFEMBlockRestrictable,
public MFEMBoundaryRestrictable
{
public:
static InputParameters validParams();
static libMesh::Point libMeshPointFromMFEMVector(const mfem::Vector & vec);
MFEMFunctorMaterial(const InputParameters & parameters);
virtual ~MFEMFunctorMaterial();
protected:
Moose::MFEM::CoefficientManager & _properties;
};
#endif