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
39using namespace std;
40
41namespace Nektar
42{
43
44std::string IdealGasEoS::className =
46 "IdealGas", IdealGasEoS::create, "Ideal gas equation of state.");
47
49 : EquationOfState(pSession)
50{
51}
52
54 const NekDouble &e)
55{
56 boost::ignore_unused(rho);
57 return GetTemperatureKernel(e);
58}
59
61{
62 boost::ignore_unused(rho);
63 return GetTemperatureKernel(e);
64}
65
67{
68 return GetPressureKernel(rho, e);
69}
70
72{
73 return GetPressureKernel(rho, e);
74}
75
77{
78 NekDouble T = GetTemperature(rho, e);
79 return sqrt(m_gamma * m_gasConstant * T);
80}
81
83{
84 NekDouble T = GetTemperature(rho, e);
85 return m_gasConstant / (m_gamma - 1) * log(T) - m_gasConstant * log(rho);
86}
87
89{
90 boost::ignore_unused(rho);
91 return e * (m_gamma - 1);
92}
93
95{
96 boost::ignore_unused(e);
97 return rho * (m_gamma - 1);
98}
99
101{
102 return p / (rho * (m_gamma - 1));
103}
104
106{
107 return p / (m_gasConstant * T);
108}
109
110} // namespace Nektar
Encapsulates equations of state allowing us to obtain thermodynamic properties: most relations are in...
NekDouble GetTemperature(const NekDouble &rho, const NekDouble &e)
Calculate the temperature.
static EquationOfStateSharedPtr create(const LibUtilities::SessionReaderSharedPtr &pSession)
Creates an instance of this class.
Definition: IdealGasEoS.h:53
virtual NekDouble v_GetSoundSpeed(const NekDouble &rho, const NekDouble &e) override final
Definition: IdealGasEoS.cpp:76
static std::string className
Name of the class.
Definition: IdealGasEoS.h:62
virtual NekDouble v_GetEFromRhoP(const NekDouble &rho, const NekDouble &p) override final
virtual NekDouble v_GetTemperature(const NekDouble &rho, const NekDouble &e) override final
Definition: IdealGasEoS.cpp:53
IdealGasEoS(const LibUtilities::SessionReaderSharedPtr &pSession)
Definition: IdealGasEoS.cpp:48
T GetPressureKernel(const T &rho, const T &e)
Definition: IdealGasEoS.h:112
virtual NekDouble v_GetDPDe_rho(const NekDouble &rho, const NekDouble &e) override final
Definition: IdealGasEoS.cpp:94
virtual NekDouble v_GetPressure(const NekDouble &rho, const NekDouble &e) override final
Definition: IdealGasEoS.cpp:66
virtual NekDouble v_GetDPDrho_e(const NekDouble &rho, const NekDouble &e) override final
Definition: IdealGasEoS.cpp:88
virtual NekDouble v_GetRhoFromPT(const NekDouble &rho, const NekDouble &p) override final
T GetTemperatureKernel(const T &e)
Definition: IdealGasEoS.h:104
virtual NekDouble v_GetEntropy(const NekDouble &rho, const NekDouble &e) override final
Definition: IdealGasEoS.cpp:82
tKey RegisterCreatorFunction(tKey idKey, CreatorFunction classCreator, std::string pDesc="")
Register a class with the factory.
Definition: NekFactory.hpp:198
std::shared_ptr< SessionReader > SessionReaderSharedPtr
The above copyright notice and this permission notice shall be included.
Definition: CoupledSolver.h:2
EquationOfStateFactory & GetEquationOfStateFactory()
Declaration of the equation of state factory singleton.
tinysimd::simd< NekDouble > vec_t
double NekDouble
scalarT< T > log(scalarT< T > in)
Definition: scalar.hpp:303
scalarT< T > sqrt(scalarT< T > in)
Definition: scalar.hpp:294