perfectGasI.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 #include "perfectGas.H"
27 
28 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
29 
30 template<class Specie>
31 inline Foam::perfectGas<Specie>::perfectGas(const Specie& sp)
32 :
33  Specie(sp)
34 {}
35 
36 
37 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
38 
39 template<class Specie>
41 (
42  const word& name,
43  const perfectGas<Specie>& pg
44 )
45 :
46  Specie(name, pg)
47 {}
48 
49 
50 template<class Specie>
53 {
55 }
56 
57 
58 template<class Specie>
60 (
61  const dictionary& dict
62 )
63 {
65 }
66 
67 
68 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
69 
70 template<class Specie>
71 inline Foam::scalar Foam::perfectGas<Specie>::rho(scalar p, scalar T) const
72 {
73  return p/(this->R()*T);
74 }
75 
76 
77 template<class Specie>
78 inline Foam::scalar Foam::perfectGas<Specie>::H(scalar p, scalar T) const
79 {
80  return 0;
81 }
82 
83 
84 template<class Specie>
85 inline Foam::scalar Foam::perfectGas<Specie>::Cp(scalar p, scalar T) const
86 {
87  return 0;
88 }
89 
90 
91 template<class Specie>
92 inline Foam::scalar Foam::perfectGas<Specie>::S(scalar p, scalar T) const
93 {
94  return -this->R()*log(p/Pstd);
95 }
96 
97 
98 template<class Specie>
99 inline Foam::scalar Foam::perfectGas<Specie>::psi(scalar p, scalar T) const
100 {
101  return 1.0/(this->R()*T);
102 }
103 
104 
105 template<class Specie>
106 inline Foam::scalar Foam::perfectGas<Specie>::Z(scalar p, scalar T) const
107 {
108  return 1;
109 }
110 
111 
112 template<class Specie>
113 inline Foam::scalar Foam::perfectGas<Specie>::CpMCv(scalar p, scalar T) const
114 {
115  return this->R();
116 }
117 
118 
119 // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
120 
121 template<class Specie>
123 {
124  Specie::operator+=(pg);
125 }
126 
127 
128 template<class Specie>
129 inline void Foam::perfectGas<Specie>::operator*=(const scalar s)
130 {
131  Specie::operator*=(s);
132 }
133 
134 
135 // * * * * * * * * * * * * * * * Friend Operators * * * * * * * * * * * * * //
136 
137 template<class Specie>
138 inline Foam::perfectGas<Specie> Foam::operator+
139 (
140  const perfectGas<Specie>& pg1,
141  const perfectGas<Specie>& pg2
142 )
143 {
144  return perfectGas<Specie>
145  (
146  static_cast<const Specie&>(pg1) + static_cast<const Specie&>(pg2)
147  );
148 }
149 
150 
151 template<class Specie>
152 inline Foam::perfectGas<Specie> Foam::operator*
153 (
154  const scalar s,
155  const perfectGas<Specie>& pg
156 )
157 {
158  return perfectGas<Specie>(s*static_cast<const Specie&>(pg));
159 }
160 
161 
162 template<class Specie>
163 inline Foam::perfectGas<Specie> Foam::operator==
164 (
165  const perfectGas<Specie>& pg1,
166  const perfectGas<Specie>& pg2
167 )
168 {
169  return perfectGas<Specie>
170  (
171  static_cast<const Specie&>(pg1) == static_cast<const Specie&>(pg2)
172  );
173 }
174 
175 
176 // ************************************************************************* //
void operator*=(const scalar)
Definition: perfectGasI.H:129
dictionary dict
scalar CpMCv(scalar p, scalar T) const
Return (Cp - Cv) [J/(kg K].
Definition: perfectGasI.H:113
dimensionedScalar log(const dimensionedScalar &ds)
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
scalar S(const scalar p, const scalar T) const
Return entropy [J/(kg K)].
Definition: perfectGasI.H:92
scalar H(const scalar p, const scalar T) const
Return enthalpy departure [J/kg].
Definition: perfectGasI.H:78
scalar Cp(scalar p, scalar T) const
Return Cp departure [J/(kg K].
Definition: perfectGasI.H:85
scalar psi(scalar p, scalar T) const
Return compressibility rho/p [s^2/m^2].
Definition: perfectGasI.H:99
void operator+=(const perfectGas &)
Definition: perfectGasI.H:122
gmvFile<< "tracers "<< particles.size()<< nl;forAllConstIter(Cloud< passiveParticle >, particles, iter){ gmvFile<< iter().position().x()<< " ";}gmvFile<< nl;forAllConstIter(Cloud< passiveParticle >, particles, iter){ gmvFile<< iter().position().y()<< " ";}gmvFile<< nl;forAllConstIter(Cloud< passiveParticle >, particles, iter){ gmvFile<< iter().position().z()<< " ";}gmvFile<< nl;forAll(lagrangianScalarNames, i){ word name=lagrangianScalarNames[i];IOField< scalar > s(IOobject(name, runTime.timeName(), cloud::prefix, mesh, IOobject::MUST_READ, IOobject::NO_WRITE))
autoPtr< perfectGas > clone() const
Construct and return a clone.
Definition: perfectGasI.H:52
A class for handling words, derived from string.
Definition: word.H:59
const dimensionedScalar Pstd
Standard pressure.
Perfect gas equation of state.
Definition: perfectGas.H:47
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
static autoPtr< perfectGas > New(const dictionary &dict)
Definition: perfectGasI.H:60
#define R(A, B, C, D, E, F, K, M)
perfectGas(const Specie &sp)
Construct from components.
Definition: perfectGasI.H:31
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
volScalarField & p
scalar Z(scalar p, scalar T) const
Return compression factor [].
Definition: perfectGasI.H:106
scalar rho(scalar p, scalar T) const
Return density [kg/m^3].
Definition: perfectGasI.H:71