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 
40 namespace Nektar
41 {
42 
43 /**
44  * @brief Ideal gas equation of state:
45  * p = rho * R * T
46  */
48 {
49 public:
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 
64 protected:
65  NekDouble GetTemperature(const NekDouble &rho, const NekDouble &e) final;
66 
67  vec_t GetTemperature(const vec_t &rho, const vec_t &e) final;
68 
69  NekDouble GetPressure(const NekDouble &rho, const NekDouble &e) final;
70 
71  vec_t GetPressure(const vec_t &rho, const vec_t &e) final;
72 
73  NekDouble v_GetSoundSpeed(const NekDouble &rho, const NekDouble &e) final;
74 
75  NekDouble v_GetEntropy(const NekDouble &rho, const NekDouble &e) final;
76 
77  NekDouble v_GetDPDrho_e(const NekDouble &rho, const NekDouble &e) final;
78 
79  NekDouble v_GetDPDe_rho(const NekDouble &rho, const NekDouble &e) final;
80 
81  NekDouble v_GetEFromRhoP(const NekDouble &rho, const NekDouble &p) final;
82 
83  NekDouble v_GetRhoFromPT(const NekDouble &rho, const NekDouble &p) final;
84 
85 private:
87 
88  ~IdealGasEoS(void){};
89 
90  // type agnostic kernels
91  template <class T, typename = typename std::enable_if<
92  std::is_floating_point<T>::value ||
94  inline T GetTemperatureKernel(const T &e)
95  {
96  return e * m_gammaMoneOgasConst;
97  }
98 
99  template <class T, typename = typename std::enable_if<
100  std::is_floating_point<T>::value ||
102  inline T GetPressureKernel(const T &rho, const T &e)
103  {
104  return rho * e * m_gammaMone;
105  }
106 };
107 
108 } // namespace Nektar
109 
110 #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
NekDouble GetPressure(const NekDouble &rho, const NekDouble &e) final
Calculate the pressure.
Definition: IdealGasEoS.cpp:65
static EquationOfStateSharedPtr create(const LibUtilities::SessionReaderSharedPtr &pSession)
Creates an instance of this class.
Definition: IdealGasEoS.h:53
static std::string className
Name of the class.
Definition: IdealGasEoS.h:62
NekDouble v_GetEFromRhoP(const NekDouble &rho, const NekDouble &p) final
Definition: IdealGasEoS.cpp:99
NekDouble v_GetRhoFromPT(const NekDouble &rho, const NekDouble &p) final
NekDouble v_GetSoundSpeed(const NekDouble &rho, const NekDouble &e) final
Definition: IdealGasEoS.cpp:75
NekDouble v_GetDPDe_rho(const NekDouble &rho, const NekDouble &e) final
Definition: IdealGasEoS.cpp:93
IdealGasEoS(const LibUtilities::SessionReaderSharedPtr &pSession)
Definition: IdealGasEoS.cpp:48
T GetPressureKernel(const T &rho, const T &e)
Definition: IdealGasEoS.h:102
NekDouble v_GetDPDrho_e(const NekDouble &rho, const NekDouble &e) final
Definition: IdealGasEoS.cpp:87
NekDouble v_GetEntropy(const NekDouble &rho, const NekDouble &e) final
Definition: IdealGasEoS.cpp:81
T GetTemperatureKernel(const T &e)
Definition: IdealGasEoS.h:94
NekDouble GetTemperature(const NekDouble &rho, const NekDouble &e) final
Calculate the temperature.
Definition: IdealGasEoS.cpp:53
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:1
std::shared_ptr< EquationOfState > EquationOfStateSharedPtr
A shared pointer to an equation of state object.
tinysimd::simd< NekDouble > vec_t
double NekDouble