https://mooseframework.inl.gov
Loading...
Searching...
No Matches
ElementUOAux.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#pragma once
11
12#include "AuxKernel.h"
13
14// Forward Declarations
16
21class ElementUOAux : public AuxKernel
22{
23public:
25
26 ElementUOAux(const InputParameters & params);
27
28protected:
29 virtual Real computeValue() override;
30
32 const std::string _field_name;
33 const std::string _field_type;
34};
This AuxKernel retrieves values from a ElementUOProvider derived class and returns the reported spati...
const std::string _field_type
const ElementUOProvider & _elem_uo
virtual Real computeValue() override
Compute and return the value of the aux variable.
static InputParameters validParams()
const std::string _field_name
User object intermediate base class that declares an interface for providing generic fields by name.
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.