initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / lagrangian / intermediate / submodels / Thermodynamic / HeatTransferModel / HeatTransferModel / HeatTransferModel.C
blob34d68667fda614160236135460792e05a051e671
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 OpenCFD Ltd.
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 "HeatTransferModel.H"
29 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
31 template<class CloudType>
32 Foam::HeatTransferModel<CloudType>::HeatTransferModel
34     const dictionary& dict,
35     CloudType& owner,
36     const word& type
38 :   dict_(dict),
39     owner_(owner),
40     coeffDict_(dict.subDict(type + "Coeffs"))
44 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
46 template<class CloudType>
47 Foam::HeatTransferModel<CloudType>::~HeatTransferModel()
51 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
53 template<class CloudType>
54 const CloudType& Foam::HeatTransferModel<CloudType>::owner() const
56     return owner_;
60 template<class CloudType>
61 const Foam::dictionary& Foam::HeatTransferModel<CloudType>::dict() const
63     return dict_;
67 template<class CloudType>
68 const Foam::dictionary& Foam::HeatTransferModel<CloudType>::coeffDict() const
70     return coeffDict_;
74 template<class CloudType>
75 Foam::scalar Foam::HeatTransferModel<CloudType>::h
77     const scalar dp,
78     const vector& Ur,
79     const scalar rhoc,
80     const scalar rhop,
81     const scalar cpc,
82     const scalar cpp,
83     const scalar muc
84 ) const
86     const scalar Re = rhoc*mag(Ur)*dp/(muc + SMALL);
88 //    const scalar Pr = muc/alphac;
89     const scalar Pr = this->Pr();
91     const scalar Nu = this->Nu(Re, Pr);
93     const scalar kappa = cpc*muc/Pr;
95     return Nu*kappa/dp;
99 template<class CloudType>
100 Foam::scalar Foam::HeatTransferModel<CloudType>::Cu
102     const scalar dp,
103     const vector& Ur,
104     const scalar rhoc,
105     const scalar rhop,
106     const scalar cpc,
107     const scalar cpp,
108     const scalar muc
109 ) const
111     const scalar Re = rhoc*mag(Ur)*dp/(muc + SMALL);
113 //    const scalar Pr = muc/alphac;
114     const scalar Pr = this->Pr();
116     const scalar Nu = this->Nu(Re, Pr);
118     const scalar kappa = cpc*muc/Pr;
120     const scalar htc = Nu*kappa/dp;
122     return 6.0*htc/(dp*rhop*cpp);
126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
128 #include "NewHeatTransferModel.C"
131 // ************************************************************************* //