exponentialSolidTransportI.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2019 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 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
27 
28 template<class Thermo>
30 (
31  const Thermo& t,
32  const scalar kappa0,
33  const scalar n0,
34  const scalar Tref
35 )
36 :
37  Thermo(t),
38  kappa0_(kappa0),
39  n0_(n0),
40  Tref_(Tref)
41 {}
42 
43 
44 template<class Thermo>
46 (
47  const word& name,
49 )
50 :
51  Thermo(name, ct),
52  kappa0_(ct.kappa0_),
53  n0_(ct.n0_),
54  Tref_(ct.Tref_)
55 {}
56 
57 
58 template<class Thermo>
61 {
63  (
65  );
66 }
67 
68 
69 template<class Thermo>
72 (
73  const dictionary& dict
74 )
75 {
77  (
79  );
80 }
81 
82 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
83 
84 template<class Thermo>
86 (
87  const scalar p, const scalar T
88 ) const
89 {
90  return (kappa0_*pow(T/Tref_, n0_));
91 }
92 
93 
94 template<class Thermo>
96 (
97  const scalar p, const scalar T
98 ) const
99 {
100  const scalar kappa(kappa0_*pow(T/Tref_, n0_));
101  return vector(kappa, kappa, kappa);
102 }
103 
104 
105 template<class Thermo>
107 mu(const scalar p, const scalar T) const
108 {
110  return scalar(0);
111 }
112 
113 
114 template<class Thermo>
116 alphah(const scalar p, const scalar T) const
117 {
118  return kappa(p, T)/this->Cp(p, T);
119 }
120 
121 // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
122 
123 template<class Thermo>
124 inline void Foam::exponentialSolidTransport<Thermo>::operator+=
125 (
127 )
128 {
129  scalar Y1 = this->Y();
130 
131  Y1 /= this->Y();
132  scalar Y2 = ct.Y()/this->Y();
133 
134  kappa0_ = Y1*kappa0_ + Y2*ct.kappa0_;
135  n0_ = (Y1*n0_ + Y2*ct.n0_);
136  Tref_ = (Y1*Tref_ + Y2*ct.Tref_);
137 }
138 
139 
140 // * * * * * * * * * * * * * * * Friend Operators * * * * * * * * * * * * * //
141 
142 template<class Thermo>
143 inline Foam::exponentialSolidTransport<Thermo> Foam::operator*
144 (
145  const scalar s,
147 )
148 {
150  (
151  s*static_cast<const Thermo&>(ct),
152  ct.kappa0_,
153  ct.n0_,
154  ct.Tref_
155  );
156 }
157 
158 // ************************************************************************* //
dictionary dict
Exponential properties for solid heat transport Templated into a given thermodynamics package...
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
scalar kappa(const scalar p, const scalar T) const
Thermal conductivity [W/m/K].
Vector< scalar > vector
A scalar version of the templated Vector.
Definition: vector.H:49
scalar alphah(const scalar p, const scalar T) const
Thermal diffusivity of enthalpy [kg/m/s].
autoPtr< exponentialSolidTransport > clone() const
Construct and return a clone.
static autoPtr< exponentialSolidTransport > New(const dictionary &dict)
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))
A class for handling words, derived from string.
Definition: word.H:59
dimensionedScalar pow(const dimensionedScalar &ds, const dimensionedScalar &expt)
PtrList< volScalarField > & Y
scalar Cp(const scalar p, const scalar T) const
Definition: EtoHthermo.H:2
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
scalar mu(const scalar p, const scalar T) const
Dynamic viscosity [kg/m/s].
#define NotImplemented
Issue a FatalErrorIn for a function not currently implemented.
Definition: error.H:366
vector Kappa(const scalar p, const scalar T) const
Thermal conductivity [W/m/K].