sutherlandTransportI.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-2016 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 "specie.H"
27 
28 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
29 
30 template<class Thermo>
32 (
33  const scalar mu1, const scalar T1,
34  const scalar mu2, const scalar T2
35 )
36 {
37  scalar rootT1 = sqrt(T1);
38  scalar mu1rootT2 = mu1*sqrt(T2);
39  scalar mu2rootT1 = mu2*rootT1;
40 
41  Ts_ = (mu2rootT1 - mu1rootT2)/(mu1rootT2/T1 - mu2rootT1/T2);
42 
43  As_ = mu1*(1.0 + Ts_/T1)/rootT1;
44 }
45 
46 
47 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
48 
49 template<class Thermo>
51 (
52  const Thermo& t,
53  const scalar As,
54  const scalar Ts
55 )
56 :
57  Thermo(t),
58  As_(As),
59  Ts_(Ts)
60 {}
61 
62 
63 template<class Thermo>
65 (
66  const Thermo& t,
67  const scalar mu1, const scalar T1,
68  const scalar mu2, const scalar T2
69 )
70 :
71  Thermo(t)
72 {
73  calcCoeffs(mu1, T1, mu2, T2);
74 }
75 
76 
77 template<class Thermo>
79 (
80  const word& name,
81  const sutherlandTransport& st
82 )
83 :
84  Thermo(name, st),
85  As_(st.As_),
86  Ts_(st.Ts_)
87 {}
88 
89 
90 template<class Thermo>
93 {
95  (
97  );
98 }
99 
100 
101 template<class Thermo>
104 (
105  Istream& is
106 )
107 {
109  (
111  );
112 }
113 
114 
115 template<class Thermo>
118 (
119  const dictionary& dict
120 )
121 {
123  (
125  );
126 }
127 
128 
129 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
130 
131 template<class Thermo>
132 inline Foam::scalar Foam::sutherlandTransport<Thermo>::mu
133 (
134  const scalar p,
135  const scalar T
136 ) const
137 {
138  return As_*::sqrt(T)/(1.0 + Ts_/T);
139 }
140 
141 
142 template<class Thermo>
144 (
145  const scalar p, const scalar T
146 ) const
147 {
148  scalar Cv_ = this->Cv(p, T);
149  return mu(p, T)*Cv_*(1.32 + 1.77*this->R()/Cv_);
150 }
151 
152 
153 template<class Thermo>
155 (
156  const scalar p,
157  const scalar T
158 ) const
159 {
160 
161  return kappa(p, T)/this->Cpv(p, T);
162 }
163 
164 
165 // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
166 
167 template<class Thermo>
168 inline void Foam::sutherlandTransport<Thermo>::operator=
169 (
171 )
172 {
173  Thermo::operator=(st);
174 
175  As_ = st.As_;
176  Ts_ = st.Ts_;
177 }
178 
179 
180 template<class Thermo>
181 inline void Foam::sutherlandTransport<Thermo>::operator+=
182 (
184 )
185 {
186  scalar molr1 = this->nMoles();
187 
188  Thermo::operator+=(st);
189 
190  molr1 /= this->nMoles();
191  scalar molr2 = st.nMoles()/this->nMoles();
192 
193  As_ = molr1*As_ + molr2*st.As_;
194  Ts_ = molr1*Ts_ + molr2*st.Ts_;
195 }
196 
197 
198 template<class Thermo>
199 inline void Foam::sutherlandTransport<Thermo>::operator-=
200 (
202 )
203 {
204  scalar molr1 = this->nMoles();
205 
206  Thermo::operator-=(st);
207 
208  molr1 /= this->nMoles();
209  scalar molr2 = st.nMoles()/this->nMoles();
210 
211  As_ = molr1*As_ - molr2*st.As_;
212  Ts_ = molr1*Ts_ - molr2*st.Ts_;
213 }
214 
215 
216 template<class Thermo>
217 inline void Foam::sutherlandTransport<Thermo>::operator*=
218 (
219  const scalar s
220 )
221 {
222  Thermo::operator*=(s);
223 }
224 
225 
226 // * * * * * * * * * * * * * * * Friend Operators * * * * * * * * * * * * * //
227 
228 template<class Thermo>
229 inline Foam::sutherlandTransport<Thermo> Foam::operator+
230 (
231  const sutherlandTransport<Thermo>& st1,
232  const sutherlandTransport<Thermo>& st2
233 )
234 {
235  Thermo t
236  (
237  static_cast<const Thermo&>(st1) + static_cast<const Thermo&>(st2)
238  );
239 
240  scalar molr1 = st1.nMoles()/t.nMoles();
241  scalar molr2 = st2.nMoles()/t.nMoles();
242 
244  (
245  t,
246  molr1*st1.As_ + molr2*st2.As_,
247  molr1*st1.Ts_ + molr2*st2.Ts_
248  );
249 }
250 
251 
252 template<class Thermo>
253 inline Foam::sutherlandTransport<Thermo> Foam::operator-
254 (
255  const sutherlandTransport<Thermo>& st1,
256  const sutherlandTransport<Thermo>& st2
257 )
258 {
259  Thermo t
260  (
261  static_cast<const Thermo&>(st1) - static_cast<const Thermo&>(st2)
262  );
263 
264  scalar molr1 = st1.nMoles()/t.nMoles();
265  scalar molr2 = st2.nMoles()/t.nMoles();
266 
268  (
269  t,
270  molr1*st1.As_ - molr2*st2.As_,
271  molr1*st1.Ts_ - molr2*st2.Ts_
272  );
273 }
274 
275 
276 template<class Thermo>
277 inline Foam::sutherlandTransport<Thermo> Foam::operator*
278 (
279  const scalar s,
281 )
282 {
284  (
285  s*static_cast<const Thermo&>(st),
286  st.As_,
287  st.Ts_
288  );
289 }
290 
291 
292 template<class Thermo>
293 inline Foam::sutherlandTransport<Thermo> Foam::operator==
294 (
295  const sutherlandTransport<Thermo>& st1,
296  const sutherlandTransport<Thermo>& st2
297 )
298 {
299  return st2 - st1;
300 }
301 
302 
303 // ************************************************************************* //
dictionary dict
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Definition: Istream.H:57
dimensionedScalar sqrt(const dimensionedScalar &ds)
static autoPtr< sutherlandTransport > New(Istream &is)
const dimensionedScalar kappa
Coulomb constant: default SI units: [N.m2/C2].
autoPtr< sutherlandTransport > clone() const
Construct and return a clone.
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))
scalar mu(const scalar p, const scalar T) const
Dynamic viscosity [kg/ms].
A class for handling words, derived from string.
Definition: word.H:59
sutherlandTransport(const Thermo &t, const scalar As, const scalar Ts)
Construct from components.
const volScalarField & T
const dimensionedScalar mu
Atomic mass unit.
#define R(A, B, C, D, E, F, K, M)
scalar alphah(const scalar p, const scalar T) const
Thermal diffusivity of enthalpy [kg/ms].
scalar kappa(const scalar p, const scalar T) const
Thermal conductivity [W/mK].
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:53
Transport package using Sutherland&#39;s formula.