fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / src / lagrangian / dieselSpray / parcel / parcelFunctions.C
blob735e0fa8460bfaff0170013ddbcc92671cb0c868
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 "parcel.H"
28 #include "mathematicalConstants.H"
30 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
32 namespace Foam
35 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
37 // The diameter based Reynolds number
38 scalar parcel::Re
40     const vector& U,
41     const scalar nu
42 ) const
44     return mag(Urel(U))*d_/nu;
47 // The diameter based Reynolds number
48 scalar parcel::Re
50     const scalar rho,
51     const vector& U,
52     const scalar mu
53 ) const
56     return rho*mag(Urel(U))*d_/mu;
59 // The diameter based Weber number
60 scalar parcel::We
62     const vector& U,
63     const scalar rho,
64     const scalar sigma
65 ) const
67     return 0.5*rho*pow(mag(Urel(U)),2)*d_/sigma;
71 scalar parcel::Sc
73     const scalar mu,
74     const scalar rho,
75     const scalar massDiffusion
76 ) const
78     return mu/(rho*massDiffusion);
82 scalar parcel::Sc
84     const scalar nu,
85     const scalar massDiffusion
86 ) const
88     return nu/massDiffusion;
92 scalar parcel::Pr
94     const scalar cp,
95     const scalar mu,
96     const scalar kappa
97 ) const
99     return cp*mu/kappa;
103 scalar parcel::N(const scalar rho) const
105     return 6.0*m_/(rho*pow(d_, 3.0)*mathematicalConstant::pi);
109 scalar parcel::Vd() const
111     return pow(d_, 3.0)*mathematicalConstant::pi/6.0;
115 scalar parcel::V(const scalar rho) const
117     return m_/rho;
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 } // End namespace Foam
125 // ************************************************************************* //