Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / turbulenceModels / compressible / turbulenceModel / derivedFvPatchFields / turbulentHeatFluxTemperature / turbulentHeatFluxTemperatureFvPatchScalarField.C
blob1af32df9e0dbb4a7cb3e3db589168ba1efdf713c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "turbulentHeatFluxTemperatureFvPatchScalarField.H"
27 #include "addToRunTimeSelectionTable.H"
28 #include "fvPatchFieldMapper.H"
29 #include "volFields.H"
32 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
34 namespace Foam
36     // declare specialization within 'Foam' namespace
37     template<>
38     const char* NamedEnum
39     <
40         Foam::compressible::
41         turbulentHeatFluxTemperatureFvPatchScalarField::heatSourceType,
42         2
43     >::names[] =
44     {
45         "power",
46         "flux"
47     };
52 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
55 namespace Foam
58 namespace compressible
61 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
63 const NamedEnum
65     turbulentHeatFluxTemperatureFvPatchScalarField::heatSourceType,
66     2
67 > turbulentHeatFluxTemperatureFvPatchScalarField::heatSourceTypeNames_;
70 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
72 turbulentHeatFluxTemperatureFvPatchScalarField::
73 turbulentHeatFluxTemperatureFvPatchScalarField
75     const fvPatch& p,
76     const DimensionedField<scalar, volMesh>& iF
79     fixedGradientFvPatchScalarField(p, iF),
80     temperatureCoupledBase(patch(), "undefined", "undefined-K"),
81     heatSource_(hsPower),
82     q_(p.size(), 0.0)
86 turbulentHeatFluxTemperatureFvPatchScalarField::
87 turbulentHeatFluxTemperatureFvPatchScalarField
89     const turbulentHeatFluxTemperatureFvPatchScalarField& ptf,
90     const fvPatch& p,
91     const DimensionedField<scalar, volMesh>& iF,
92     const fvPatchFieldMapper& mapper
95     fixedGradientFvPatchScalarField(ptf, p, iF, mapper),
96     temperatureCoupledBase(patch(), ptf.KMethod(), ptf.KName()),
97     heatSource_(ptf.heatSource_),
98     q_(ptf.q_, mapper)
102 turbulentHeatFluxTemperatureFvPatchScalarField::
103 turbulentHeatFluxTemperatureFvPatchScalarField
105     const fvPatch& p,
106     const DimensionedField<scalar, volMesh>& iF,
107     const dictionary& dict
110     fixedGradientFvPatchScalarField(p, iF),
111     temperatureCoupledBase(patch(), dict),
112     heatSource_(heatSourceTypeNames_.read(dict.lookup("heatSource"))),
113     q_("q", dict, p.size())
115     fvPatchField<scalar>::operator=(patchInternalField());
116     gradient() = 0.0;
120 turbulentHeatFluxTemperatureFvPatchScalarField::
121 turbulentHeatFluxTemperatureFvPatchScalarField
123     const turbulentHeatFluxTemperatureFvPatchScalarField& thftpsf
126     fixedGradientFvPatchScalarField(thftpsf),
127     temperatureCoupledBase(patch(), thftpsf.KMethod(), thftpsf.KName()),
128     heatSource_(thftpsf.heatSource_),
129     q_(thftpsf.q_)
133 turbulentHeatFluxTemperatureFvPatchScalarField::
134 turbulentHeatFluxTemperatureFvPatchScalarField
136     const turbulentHeatFluxTemperatureFvPatchScalarField& thftpsf,
137     const DimensionedField<scalar, volMesh>& iF
140     fixedGradientFvPatchScalarField(thftpsf, iF),
141     temperatureCoupledBase(patch(), thftpsf.KMethod(), thftpsf.KName()),
142     heatSource_(thftpsf.heatSource_),
143     q_(thftpsf.q_)
147 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
149 void turbulentHeatFluxTemperatureFvPatchScalarField::autoMap
151     const fvPatchFieldMapper& m
154     fixedGradientFvPatchScalarField::autoMap(m);
155     q_.autoMap(m);
159 void turbulentHeatFluxTemperatureFvPatchScalarField::rmap
161     const fvPatchScalarField& ptf,
162     const labelList& addr
165     fixedGradientFvPatchScalarField::rmap(ptf, addr);
167     const turbulentHeatFluxTemperatureFvPatchScalarField& thftptf =
168         refCast<const turbulentHeatFluxTemperatureFvPatchScalarField>
169         (
170             ptf
171         );
173     q_.rmap(thftptf.q_, addr);
177 void turbulentHeatFluxTemperatureFvPatchScalarField::updateCoeffs()
179     if (updated())
180     {
181         return;
182     }
184     const scalarField& Tp = *this;
186     switch (heatSource_)
187     {
188         case hsPower:
189         {
190             const scalar Ap = gSum(patch().magSf());
191             gradient() = q_/(Ap*K(Tp));
192             break;
193         }
194         case hsFlux:
195         {
196             gradient() = q_/K(Tp);
197             break;
198         }
199         default:
200         {
201             FatalErrorIn
202             (
203                 "turbulentHeatFluxTemperatureFvPatchScalarField"
204                 "("
205                     "const fvPatch&, "
206                     "const DimensionedField<scalar, volMesh>&, "
207                     "const dictionary&"
208                 ")"
209             )   << "Unknown heat source type. Valid types are: "
210                 << heatSourceTypeNames_ << nl << exit(FatalError);
211         }
212     }
214     fixedGradientFvPatchScalarField::updateCoeffs();
218 void turbulentHeatFluxTemperatureFvPatchScalarField::write
220     Ostream& os
221 ) const
223     fixedGradientFvPatchScalarField::write(os);
224     os.writeKeyword("heatSource") << heatSourceTypeNames_[heatSource_]
225         << token::END_STATEMENT << nl;
226     temperatureCoupledBase::write(os);
227     q_.writeEntry("q", os);
231 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
233 makePatchTypeField
235     fvPatchScalarField,
236     turbulentHeatFluxTemperatureFvPatchScalarField
240 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
242 } // End namespace compressible
243 } // End namespace Foam
246 // ************************************************************************* //