https://mooseframework.inl.gov
MFEMGradAux.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 "libmesh/ignore_warnings.h"
15 #include "mfem/miniapps/common/pfem_extras.hpp"
16 #include "libmesh/restore_warnings.h"
17 #include "MFEMAuxKernel.h"
18 
22 class MFEMGradAux : public MFEMAuxKernel
23 {
24 public:
26 
28 
29  virtual ~MFEMGradAux() = default;
30 
32  virtual void execute() override;
33 
34  // Updates grad operator.
35  virtual void update() override;
36 
37 protected:
39  const VariableName _source_var_name;
41  const mfem::ParGridFunction & _source_var;
43  const mfem::real_t _scale_factor;
45  mfem::common::ParDiscreteGradOperator _grad;
46 };
47 
48 #endif
mfem::common::ParDiscreteGradOperator _grad
Grad operator.
Definition: MFEMGradAux.h:45
const mfem::real_t _scale_factor
Scalar factor to multiply the result by.
Definition: MFEMGradAux.h:43
const InputParameters & parameters() const
Get the parameters of the object.
Definition: MooseBase.h:131
virtual ~MFEMGradAux()=default
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
static InputParameters validParams()
Definition: MFEMGradAux.C:18
virtual void update() override
Method called to update any owned objects upon an FE space update.
Definition: MFEMGradAux.C:51
Class to construct an auxiliary solver used to update a real auxvariable.
Definition: MFEMAuxKernel.h:20
Class to set an H(curl) auxvariable to be the gradient of a H1 scalar variable.
Definition: MFEMGradAux.h:22
const VariableName _source_var_name
Name of source MFEMVariable to take the gradient of.
Definition: MFEMGradAux.h:39
virtual void execute() override
Computes the auxvariable.
Definition: MFEMGradAux.C:44
const mfem::ParGridFunction & _source_var
Reference to source gridfunction.
Definition: MFEMGradAux.h:41
MFEMGradAux(const InputParameters &parameters)
Definition: MFEMGradAux.C:30