Nektar++
IdealGasEoS.cpp
Go to the documentation of this file.
1 ///////////////////////////////////////////////////////////////////////////////
2 //
3 // File: IdealGasEoS.cpp
4 //
5 // For more information, please see: http://www.nektar.info
6 //
7 // The MIT License
8 //
9 // Copyright (c) 2006 Division of Applied Mathematics, Brown University (USA),
10 // Department of Aeronautics, Imperial College London (UK), and Scientific
11 // Computing and Imaging Institute, University of Utah (USA).
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining a
14 // copy of this software and associated documentation files (the "Software"),
15 // to deal in the Software without restriction, including without limitation
16 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
17 // and/or sell copies of the Software, and to permit persons to whom the
18 // Software is furnished to do so, subject to the following conditions:
19 //
20 // The above copyright notice and this permission notice shall be included
21 // in all copies or substantial portions of the Software.
22 //
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29 // DEALINGS IN THE SOFTWARE.
30 //
31 // Description: Ideal gas equation of state
32 //
33 ///////////////////////////////////////////////////////////////////////////////
34 
35 #include <boost/core/ignore_unused.hpp>
36 
37 #include "IdealGasEoS.h"
38 
39 using namespace std;
40 
41 namespace Nektar
42 {
43 
44 std::string IdealGasEoS::className = GetEquationOfStateFactory().
45  RegisterCreatorFunction("IdealGas",
46  IdealGasEoS::create,
47  "Ideal gas equation of state.");
48 
49 IdealGasEoS::IdealGasEoS(const LibUtilities::SessionReaderSharedPtr& pSession)
50  : EquationOfState(pSession)
51 {
52 
53 }
54 
56  const NekDouble &rho, const NekDouble &e)
57 {
58  boost::ignore_unused(rho);
59  return e*(m_gamma-1)/m_gasConstant;
60 }
61 
63  const NekDouble &rho, const NekDouble &e)
64 {
65  return rho*e*(m_gamma-1);
66 }
67 
69  const NekDouble &rho, const NekDouble &e)
70 {
71  NekDouble T = GetTemperature(rho,e);
72  return sqrt(m_gamma * m_gasConstant * T);
73 }
74 
76  const NekDouble &rho, const NekDouble &e)
77 {
78  NekDouble T = GetTemperature(rho,e);
79  return m_gasConstant/(m_gamma-1) * log(T) - m_gasConstant * log(rho);
80 }
81 
83  const NekDouble &rho, const NekDouble &e)
84 {
85  boost::ignore_unused(rho);
86  return e*(m_gamma-1);
87 }
88 
90  const NekDouble &rho, const NekDouble &e)
91 {
92  boost::ignore_unused(e);
93  return rho*(m_gamma-1);
94 }
95 
97  const NekDouble &rho, const NekDouble &p)
98 {
99  return p / (rho * (m_gamma-1));
100 }
101 
103  const NekDouble &p, const NekDouble &T)
104 {
105  return p/(m_gasConstant*T);
106 }
107 
108 }
virtual NekDouble v_GetSoundSpeed(const NekDouble &rho, const NekDouble &e)
Definition: IdealGasEoS.cpp:68
virtual NekDouble v_GetDPDe_rho(const NekDouble &rho, const NekDouble &e)
Definition: IdealGasEoS.cpp:89
virtual NekDouble v_GetDPDrho_e(const NekDouble &rho, const NekDouble &e)
Definition: IdealGasEoS.cpp:82
Encapsulates equations of state allowing us to obtain thermodynamic properties: most relations are in...
virtual NekDouble v_GetEntropy(const NekDouble &rho, const NekDouble &e)
Definition: IdealGasEoS.cpp:75
STL namespace.
virtual NekDouble v_GetRhoFromPT(const NekDouble &rho, const NekDouble &p)
virtual NekDouble v_GetTemperature(const NekDouble &rho, const NekDouble &e)
Definition: IdealGasEoS.cpp:55
EquationOfStateFactory & GetEquationOfStateFactory()
Declaration of the equation of state factory singleton.
double NekDouble
virtual NekDouble v_GetEFromRhoP(const NekDouble &rho, const NekDouble &p)
Definition: IdealGasEoS.cpp:96
NekDouble GetTemperature(const NekDouble &rho, const NekDouble &e)
Calculate the temperature.
virtual NekDouble v_GetPressure(const NekDouble &rho, const NekDouble &e)
Definition: IdealGasEoS.cpp:62
std::shared_ptr< SessionReader > SessionReaderSharedPtr