/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . Class Foam::totalTemperatureFvPatchScalarField Group grpInletBoundaryConditions grpOutletBoundaryConditions Description This boundary condition provides a total temperature condition. Usage \table Property | Description | Required | Default value U | Velocity field name | no | U phi | Flux field name | no | phi psi | Compressibility field name | no | thermo:psi gamma | ratio of specific heats (Cp/Cv) | yes | T0 | total temperature | yes | \endtable Example of the boundary condition specification: \verbatim { type totalTemperature; gamma 1.4; T0 uniform 800; } \endverbatim SourceFiles totalTemperatureFvPatchScalarField.C See also Foam::fixedValueFvPatchField \*---------------------------------------------------------------------------*/ #ifndef totalTemperatureFvPatchScalarField_H #define totalTemperatureFvPatchScalarField_H #include "fixedValueFvPatchFields.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class totalTemperatureFvPatchScalarField Declaration \*---------------------------------------------------------------------------*/ class totalTemperatureFvPatchScalarField : public fixedValueFvPatchScalarField { // Private data //- Name of the velocity field word UName_; //- Name of the flux transporting the field word phiName_; //- Name of the compressibility field used to calculate the wave speed word psiName_; //- Heat capacity ratio scalar gamma_; //- Total temperature scalarField T0_; public: //- Runtime type information TypeName("totalTemperature"); // Constructors //- Construct from patch and internal field totalTemperatureFvPatchScalarField ( const fvPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary totalTemperatureFvPatchScalarField ( const fvPatch&, const DimensionedField&, const dictionary& ); //- Construct by mapping given totalTemperatureFvPatchScalarField // onto a new patch totalTemperatureFvPatchScalarField ( const totalTemperatureFvPatchScalarField&, const fvPatch&, const DimensionedField&, const fvPatchFieldMapper& ); //- Construct as copy totalTemperatureFvPatchScalarField ( const totalTemperatureFvPatchScalarField& ); //- Construct as copy setting internal field reference totalTemperatureFvPatchScalarField ( const totalTemperatureFvPatchScalarField&, const DimensionedField& ); //- Return a clone virtual tmp> clone() const { return fvPatchField::Clone(*this); } //- Clone with an internal field reference virtual tmp> clone ( const DimensionedField& iF ) const { return fvPatchField::Clone(*this, iF); } // Member functions // Access //- Return the total pressure const scalarField& T0() const { return T0_; } //- Return reference to the total pressure to allow adjustment scalarField& T0() { return T0_; } // Mapping functions //- Map (and resize as needed) from self given a mapping object virtual void autoMap ( const fvPatchFieldMapper& ); //- Reverse map the given fvPatchField onto this fvPatchField virtual void rmap ( const fvPatchScalarField&, const labelList& ); // Evaluation functions //- Update the coefficients associated with the patch field virtual void updateCoeffs(); //- Write virtual void write(Ostream&) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //