Nektar++
IdealGasEoS.h
Go to the documentation of this file.
1///////////////////////////////////////////////////////////////////////////////
2//
3// File: IdealGasEoS.h
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#ifndef NEKTAR_SOLVERS_COMPRESSIBLEFLOWSOLVER_MISC_IDEALGASEOS
36#define NEKTAR_SOLVERS_COMPRESSIBLEFLOWSOLVER_MISC_IDEALGASEOS
37
38#include "EquationOfState.h"
39
40namespace Nektar
41{
42
43/**
44 * @brief Ideal gas equation of state:
45 * p = rho * R * T
46 */
48{
49public:
50 friend class MemoryManager<IdealGasEoS>;
51
52 /// Creates an instance of this class
55 {
58 return p;
59 }
60
61 /// Name of the class
62 static std::string className;
63
64protected:
65 virtual NekDouble v_GetTemperature(const NekDouble &rho,
66 const NekDouble &e) override final;
67
68 virtual vec_t v_GetTemperature(const vec_t &rho,
69 const vec_t &e) override final;
70
71 virtual NekDouble v_GetPressure(const NekDouble &rho,
72 const NekDouble &e) override final;
73
74 virtual vec_t v_GetPressure(const vec_t &rho,
75 const vec_t &e) override final;
76
77 virtual NekDouble v_GetSoundSpeed(const NekDouble &rho,
78 const NekDouble &e) override final;
79
80 virtual NekDouble v_GetEntropy(const NekDouble &rho,
81 const NekDouble &e) override final;
82
83 virtual NekDouble v_GetDPDrho_e(const NekDouble &rho,
84 const NekDouble &e) override final;
85
86 virtual NekDouble v_GetDPDe_rho(const NekDouble &rho,
87 const NekDouble &e) override final;
88
89 virtual NekDouble v_GetEFromRhoP(const NekDouble &rho,
90 const NekDouble &p) override final;
91
92 virtual NekDouble v_GetRhoFromPT(const NekDouble &rho,
93 const NekDouble &p) override final;
94
95private:
97
98 ~IdealGasEoS(void){};
99
100 // type agnostic kernels
101 template <class T, typename = typename std::enable_if<
102 std::is_floating_point<T>::value ||
104 inline T GetTemperatureKernel(const T &e)
105 {
106 return e * m_gammaMoneOgasConst;
107 }
108
109 template <class T, typename = typename std::enable_if<
110 std::is_floating_point<T>::value ||
112 inline T GetPressureKernel(const T &rho, const T &e)
113 {
114 return rho * e * m_gammaMone;
115 }
116};
117
118} // namespace Nektar
119
120#endif
Encapsulates equations of state allowing us to obtain thermodynamic properties: most relations are in...
Ideal gas equation of state: p = rho * R * T.
Definition: IdealGasEoS.h:48
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
General purpose memory allocation routines with the ability to allocate from thread specific memory p...
static std::shared_ptr< DataType > AllocateSharedPtr(const Args &...args)
Allocate a shared pointer from the memory pool.
std::shared_ptr< SessionReader > SessionReaderSharedPtr
The above copyright notice and this permission notice shall be included.
Definition: CoupledSolver.h:2
std::shared_ptr< EquationOfState > EquationOfStateSharedPtr
A shared pointer to an equation of state object.
tinysimd::simd< NekDouble > vec_t
double NekDouble