initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / lagrangian / intermediate / submodels / Thermodynamic / HeatTransferModel / HeatTransferModel / HeatTransferModel.C
blob37b5276269d3f01e9563f6f4b087c13afc63647a
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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(CloudType& owner)
34     dict_(dictionary::null),
35     owner_(owner),
36     coeffDict_(dictionary::null)
40 template<class CloudType>
41 Foam::HeatTransferModel<CloudType>::HeatTransferModel
43     const dictionary& dict,
44     CloudType& owner,
45     const word& type
48     dict_(dict),
49     owner_(owner),
50     coeffDict_(dict.subDict(type + "Coeffs"))
54 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
56 template<class CloudType>
57 Foam::HeatTransferModel<CloudType>::~HeatTransferModel()
61 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
63 template<class CloudType>
64 const CloudType& Foam::HeatTransferModel<CloudType>::owner() const
66     return owner_;
70 template<class CloudType>
71 const Foam::dictionary& Foam::HeatTransferModel<CloudType>::dict() const
73     return dict_;
77 template<class CloudType>
78 const Foam::dictionary& Foam::HeatTransferModel<CloudType>::coeffDict() const
80     return coeffDict_;
84 template<class CloudType>
85 Foam::scalar Foam::HeatTransferModel<CloudType>::h
87     const scalar dp,
88     const vector& Ur,
89     const scalar rhoc,
90     const scalar rhop,
91     const scalar cpc,
92     const scalar cpp,
93     const scalar muc
94 ) const
96     const scalar Re = rhoc*mag(Ur)*dp/(muc + ROOTVSMALL);
98 //    const scalar Pr = muc/alphac;
99     const scalar Pr = this->Pr();
101     const scalar Nu = this->Nu(Re, Pr);
103     const scalar kappa = cpc*muc/Pr;
105     return Nu*kappa/dp;
109 template<class CloudType>
110 Foam::scalar Foam::HeatTransferModel<CloudType>::Cu
112     const scalar dp,
113     const vector& Ur,
114     const scalar rhoc,
115     const scalar rhop,
116     const scalar cpc,
117     const scalar cpp,
118     const scalar muc
119 ) const
121     const scalar Re = rhoc*mag(Ur)*dp/(muc + ROOTVSMALL);
123 //    const scalar Pr = muc/alphac;
124     const scalar Pr = this->Pr();
126     const scalar Nu = this->Nu(Re, Pr);
128     const scalar kappa = cpc*muc/Pr;
130     const scalar htc = Nu*kappa/dp;
132     return 6.0*htc/(dp*rhop*cpp);
136 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
138 #include "NewHeatTransferModel.C"
141 // ************************************************************************* //