www.mooseframework.org
NS.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 <string>
13 
14 namespace NS
15 {
16 const std::string density = "rho";
17 const std::string momentum_x = "rhou";
18 const std::string momentum_y = "rhov";
19 const std::string momentum_z = "rhow";
20 const std::string total_energy = "rhoE";
21 
22 const std::string velocity_x = "vel_x";
23 const std::string velocity_y = "vel_y";
24 const std::string velocity_z = "vel_z";
25 const std::string pressure = "pressure";
26 const std::string temperature = "temperature";
27 const std::string enthalpy = "enthalpy";
28 const std::string mach_number = "Mach";
29 const std::string internal_energy = "internal_energy";
30 const std::string specific_volume = "specific_volume";
31 }
32 
NS::velocity_x
const std::string velocity_x
Definition: NS.h:22
NS::specific_volume
const std::string specific_volume
Definition: NS.h:30
NS::velocity_y
const std::string velocity_y
Definition: NS.h:23
NS::velocity_z
const std::string velocity_z
Definition: NS.h:24
NS::momentum_y
const std::string momentum_y
Definition: NS.h:18
NS::mach_number
const std::string mach_number
Definition: NS.h:28
NS
Definition: NS.h:14
NS::density
const std::string density
Definition: NS.h:16
NS::enthalpy
const std::string enthalpy
Definition: NS.h:27
NS::momentum_z
const std::string momentum_z
Definition: NS.h:19
NS::momentum_x
const std::string momentum_x
Definition: NS.h:17
NS::internal_energy
const std::string internal_energy
Definition: NS.h:29
NS::temperature
const std::string temperature
Definition: NS.h:26
NS::total_energy
const std::string total_energy
Definition: NS.h:20
NS::pressure
const std::string pressure
Definition: NS.h:25