www.mooseframework.org
NSEnthalpyAux.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 // MOOSE includes
13 #include "AuxKernel.h"
14 
15 // Forward Declarations
16 class NSEnthalpyAux;
17 
18 template <>
19 InputParameters validParams<NSEnthalpyAux>();
20 
31 class NSEnthalpyAux : public AuxKernel
32 {
33 public:
34  NSEnthalpyAux(const InputParameters & parameters);
35 
36 protected:
37  virtual Real computeValue();
38 
39  const VariableValue & _rho;
40  const VariableValue & _rhoE;
41  const VariableValue & _pressure;
42 };
43 
NSEnthalpyAux
Nodal auxiliary variable, for computing enthalpy at the nodes.
Definition: NSEnthalpyAux.h:31
NSEnthalpyAux::_pressure
const VariableValue & _pressure
Definition: NSEnthalpyAux.h:41
NSEnthalpyAux::_rho
const VariableValue & _rho
Definition: NSEnthalpyAux.h:39
NSEnthalpyAux::computeValue
virtual Real computeValue()
Definition: NSEnthalpyAux.C:40
NSEnthalpyAux::NSEnthalpyAux
NSEnthalpyAux(const InputParameters &parameters)
Definition: NSEnthalpyAux.C:31
NSEnthalpyAux::_rhoE
const VariableValue & _rhoE
Definition: NSEnthalpyAux.h:40
validParams< NSEnthalpyAux >
InputParameters validParams< NSEnthalpyAux >()
Definition: NSEnthalpyAux.C:18