fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / src / finiteVolume / fields / fvPatchFields / derived / inletOutletTotalTemperature / inletOutletTotalTemperatureFvPatchScalarField.C
blobc5ca73dd2ca910211a46c609589317a98584bc9a
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 "inletOutletTotalTemperatureFvPatchScalarField.H"
28 #include "addToRunTimeSelectionTable.H"
29 #include "fvPatchFieldMapper.H"
30 #include "volFields.H"
31 #include "surfaceFields.H"
33 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
35 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
37 Foam::inletOutletTotalTemperatureFvPatchScalarField::
38 inletOutletTotalTemperatureFvPatchScalarField
40     const fvPatch& p,
41     const DimensionedField<scalar, volMesh>& iF
44     mixedFvPatchScalarField(p, iF),
45     UName_("U"),
46     phiName_("phi"),
47     psiName_("psi"),
48     gamma_(0.0),
49     T0_(p.size(), 0.0)
51     this->refValue() = pTraits<scalar>::zero;
52     this->refGrad() = pTraits<scalar>::zero;
53     this->valueFraction() = 0.0;
57 Foam::inletOutletTotalTemperatureFvPatchScalarField::
58 inletOutletTotalTemperatureFvPatchScalarField
60     const inletOutletTotalTemperatureFvPatchScalarField& ptf,
61     const fvPatch& p,
62     const DimensionedField<scalar, volMesh>& iF,
63     const fvPatchFieldMapper& mapper
66     mixedFvPatchScalarField(ptf, p, iF, mapper),
67     UName_(ptf.UName_),
68     phiName_(ptf.phiName_),
69     psiName_(ptf.psiName_),
70     gamma_(ptf.gamma_),
71     T0_(ptf.T0_, mapper)
75 Foam::inletOutletTotalTemperatureFvPatchScalarField::
76 inletOutletTotalTemperatureFvPatchScalarField
78     const fvPatch& p,
79     const DimensionedField<scalar, volMesh>& iF,
80     const dictionary& dict
83     mixedFvPatchScalarField(p, iF),
84     UName_(dict.lookupOrDefault<word>("U", "U")),
85     phiName_(dict.lookupOrDefault<word>("phi", "phi")),
86     psiName_(dict.lookupOrDefault<word>("psi", "psi")),
87     gamma_(readScalar(dict.lookup("gamma"))),
88     T0_("T0", dict, p.size())
90     this->refValue() = pTraits<scalar>::zero;
91     if (dict.found("value"))
92     {
93         fvPatchField<scalar>::operator=
94         (
95             scalarField("value", dict, p.size())
96         );
97     }
98     else
99     {
100         fvPatchField<scalar>::operator=(T0_);
101     }
103     this->refGrad() = pTraits<scalar>::zero;
104     this->valueFraction() = 0.0;
108 Foam::inletOutletTotalTemperatureFvPatchScalarField::
109 inletOutletTotalTemperatureFvPatchScalarField
111     const inletOutletTotalTemperatureFvPatchScalarField& tppsf
114     mixedFvPatchScalarField(tppsf),
115     UName_(tppsf.UName_),
116     phiName_(tppsf.phiName_),
117     psiName_(tppsf.psiName_),
118     gamma_(tppsf.gamma_),
119     T0_(tppsf.T0_)
123 Foam::inletOutletTotalTemperatureFvPatchScalarField::
124 inletOutletTotalTemperatureFvPatchScalarField
126     const inletOutletTotalTemperatureFvPatchScalarField& tppsf,
127     const DimensionedField<scalar, volMesh>& iF
130     mixedFvPatchScalarField(tppsf, iF),
131     UName_(tppsf.UName_),
132     phiName_(tppsf.phiName_),
133     psiName_(tppsf.psiName_),
134     gamma_(tppsf.gamma_),
135     T0_(tppsf.T0_)
139 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
141 void Foam::inletOutletTotalTemperatureFvPatchScalarField::autoMap
143     const fvPatchFieldMapper& m
146     mixedFvPatchScalarField::autoMap(m);
147     T0_.autoMap(m);
151 void Foam::inletOutletTotalTemperatureFvPatchScalarField::rmap
153     const fvPatchScalarField& ptf,
154     const labelList& addr
157     mixedFvPatchScalarField::rmap(ptf, addr);
159     const inletOutletTotalTemperatureFvPatchScalarField& tiptf =
160         refCast<const inletOutletTotalTemperatureFvPatchScalarField>(ptf);
162     T0_.rmap(tiptf.T0_, addr);
166 void Foam::inletOutletTotalTemperatureFvPatchScalarField::updateCoeffs()
168     if (updated())
169     {
170         return;
171     }
173     const fvPatchVectorField& Up =
174         patch().lookupPatchField<volVectorField, vector>(UName_);
176     const fvsPatchField<scalar>& phip =
177         patch().lookupPatchField<surfaceScalarField, scalar>(phiName_);
179     const fvPatchField<scalar>& psip =
180         patch().lookupPatchField<volScalarField, scalar>(psiName_);
182     scalar gM1ByG = (gamma_ - 1.0)/gamma_;
184     this->refValue() =
185         T0_/(1.0 + 0.5*psip*gM1ByG*(1.0 - pos(phip))*magSqr(Up));
186     this->valueFraction() = 1.0 - pos(phip);
188     mixedFvPatchScalarField::updateCoeffs();
192 void Foam::inletOutletTotalTemperatureFvPatchScalarField::write(Ostream& os)
193 const
195     fvPatchScalarField::write(os);
196     if (UName_ != "U")
197     {
198         os.writeKeyword("U") << UName_ << token::END_STATEMENT << nl;
199     }
200     if (phiName_ != "phi")
201     {
202         os.writeKeyword("phi") << phiName_ << token::END_STATEMENT << nl;
203     }
204     if (phiName_ != "psi")
205     {
206         os.writeKeyword("psi") << psiName_ << token::END_STATEMENT << nl;
207     }
208     os.writeKeyword("gamma") << gamma_ << token::END_STATEMENT << nl;
209     T0_.writeEntry("T0", os);
210     writeEntry("value", os);
214 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
216 namespace Foam
218     makePatchTypeField
219     (
220         fvPatchScalarField,
221         inletOutletTotalTemperatureFvPatchScalarField
222     );
225 // ************************************************************************* //