www.mooseframework.org
SpecificInternalEnergyAux.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 #include "AuxKernel.h"
13 
15 
16 template <>
18 
22 class SpecificInternalEnergyAux : public AuxKernel
23 {
24 public:
25  SpecificInternalEnergyAux(const InputParameters & parameters);
26 
27 protected:
28  virtual Real computeValue();
29 
30  const VariableValue & _rho;
31  const VariableValue & _rho_u;
32  const VariableValue & _rho_v;
33  const VariableValue & _rho_w;
34  const VariableValue & _rho_et;
35 };
36 
SpecificInternalEnergyAux
Computes specific internal energy.
Definition: SpecificInternalEnergyAux.h:22
SpecificInternalEnergyAux::SpecificInternalEnergyAux
SpecificInternalEnergyAux(const InputParameters &parameters)
Definition: SpecificInternalEnergyAux.C:27
validParams< SpecificInternalEnergyAux >
InputParameters validParams< SpecificInternalEnergyAux >()
Definition: SpecificInternalEnergyAux.C:16
SpecificInternalEnergyAux::_rho_v
const VariableValue & _rho_v
Definition: SpecificInternalEnergyAux.h:32
SpecificInternalEnergyAux::_rho_w
const VariableValue & _rho_w
Definition: SpecificInternalEnergyAux.h:33
SpecificInternalEnergyAux::_rho_et
const VariableValue & _rho_et
Definition: SpecificInternalEnergyAux.h:34
SpecificInternalEnergyAux::computeValue
virtual Real computeValue()
Definition: SpecificInternalEnergyAux.C:38
SpecificInternalEnergyAux::_rho_u
const VariableValue & _rho_u
Definition: SpecificInternalEnergyAux.h:31
SpecificInternalEnergyAux::_rho
const VariableValue & _rho
Definition: SpecificInternalEnergyAux.h:30