fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / src / lagrangian / intermediate / submodels / Reacting / PhaseChangeModel / LiquidEvaporation / LiquidEvaporation.C
blob5b9b341eaff68ad367f8c5bcdbc5202173fc64b9
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright held by original author
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
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.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #include "LiquidEvaporation.H"
28 #include "specie.H"
29 #include "mathematicalConstants.H"
31 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
33 template<class CloudType>
34 Foam::scalarField Foam::LiquidEvaporation<CloudType>::calcXc
36     const label cellI
37 ) const
39     scalarField Xc(this->owner().mcCarrierThermo().Y().size());
41     forAll(Xc, i)
42     {
43         Xc[i] =
44             this->owner().mcCarrierThermo().Y()[i][cellI]
45            /this->owner().mcCarrierThermo().speciesData()[i].W();
46     }
48     return Xc/sum(Xc);
52 template <class CloudType>
53 Foam::scalar Foam::LiquidEvaporation<CloudType>::Sh
55     const scalar Re,
56     const scalar Sc
57 ) const
59     return 2.0 + 0.6*Foam::sqrt(Re)*cbrt(Sc);
63 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
65 template <class CloudType>
66 Foam::LiquidEvaporation<CloudType>::LiquidEvaporation
68     const dictionary& dict,
69     CloudType& owner
72     PhaseChangeModel<CloudType>(dict, owner, typeName),
73     liquids_
74     (
75         liquidMixture::New
76         (
77             owner.mesh().objectRegistry::lookupObject<dictionary>
78             (
79                 owner.carrierThermo().name()
80             )
81         )
82     ),
83     activeLiquids_(this->coeffDict().lookup("activeLiquids")),
84     liqToCarrierMap_(activeLiquids_.size(), -1),
85     liqToLiqMap_(activeLiquids_.size(), -1)
87     if (activeLiquids_.size() == 0)
88     {
89         WarningIn
90         (
91             "Foam::LiquidEvaporation<CloudType>::LiquidEvaporation"
92             "("
93                 "const dictionary& dict, "
94                 "CloudType& owner"
95             ")"
96         )   << "Evaporation model selected, but no active liquids defined"
97             << nl << endl;
98     }
100     // Determine mapping between liquid and carrier phase species
101     forAll(activeLiquids_, i)
102     {
103         liqToCarrierMap_[i] =
104             owner.composition().globalCarrierId(activeLiquids_[i]);
105     }
107     // Determine mapping between model active liquids and global liquids
108     label idLiquid = owner.composition().idLiquid();
109     forAll(activeLiquids_, i)
110     {
111         liqToLiqMap_[i] =
112             owner.composition().localId(idLiquid, activeLiquids_[i]);
113     }
117 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
119 template <class CloudType>
120 Foam::LiquidEvaporation<CloudType>::~LiquidEvaporation()
124 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
126 template<class CloudType>
127 bool Foam::LiquidEvaporation<CloudType>::active() const
129     return true;
133 template<class CloudType>
134 void Foam::LiquidEvaporation<CloudType>::calculate
136     const scalar dt,
137     const label cellI,
138     const scalar Re,
139     const scalar d,
140     const scalar nu,
141     const scalar T,
142     const scalar Ts,
143     const scalar pc,
144     scalarField& dMassPC
145 ) const
147     // construct carrier phase species volume fractions for cell, cellI
148     scalarField Xc = calcXc(cellI);
150     // droplet surface area
151     scalar A = mathematicalConstant::pi*sqr(d);
153     // calculate mass transfer of each specie in liquid
154     forAll(activeLiquids_, i)
155     {
156         label gid = liqToCarrierMap_[i];
157         label lid = liqToLiqMap_[i];
159         // vapour diffusivity [m2/s]
160         scalar Dab = liquids_->properties()[lid].D(pc, Ts);
162         // saturation pressure for species i [pa]
163         // - carrier phase pressure assumed equal to the liquid vapour pressure
164         //   close to the surface
165         // NOTE: if pSat > pc then particle is superheated
166         // calculated evaporation rate will be greater than that of a particle
167         // at boiling point, but this is not a boiling model
168         scalar pSat = liquids_->properties()[lid].pv(pc, T);
170         // Schmidt number
171         scalar Sc = nu/(Dab + ROOTVSMALL);
173         // Sherwood number
174         scalar Sh = this->Sh(Re, Sc);
176         // mass transfer coefficient [m/s]
177         scalar kc = Sh*Dab/(d + ROOTVSMALL);
179         // vapour concentration at droplet surface [kmol/m3] at film temperature
180         scalar Cs = pSat/(specie::RR*Ts);
182         // vapour concentration in bulk gas [kmol/m3] at film temperature
183         scalar Cinf = Xc[gid]*pc/(specie::RR*Ts);
185         // molar flux of vapour [kmol/m2/s]
186         scalar Ni = max(kc*(Cs - Cinf), 0.0);
188         // mass transfer [kg]
189         dMassPC[lid] += Ni*A*liquids_->properties()[lid].W()*dt;
190     }
194 // ************************************************************************* //