/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation Copyright (C) 2020 OpenCFD Ltd. ------------------------------------------------------------------------------- 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 . \*---------------------------------------------------------------------------*/ #include "totalTemperatureFvPatchScalarField.H" #include "addToRunTimeSelectionTable.H" #include "fvPatchFieldMapper.H" #include "volFields.H" #include "surfaceFields.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::totalTemperatureFvPatchScalarField::totalTemperatureFvPatchScalarField ( const fvPatch& p, const DimensionedField& iF ) : fixedValueFvPatchScalarField(p, iF), UName_("U"), phiName_("phi"), psiName_("thermo:psi"), gamma_(0.0), T0_(p.size(), Zero) {} Foam::totalTemperatureFvPatchScalarField::totalTemperatureFvPatchScalarField ( const totalTemperatureFvPatchScalarField& ptf, const fvPatch& p, const DimensionedField& iF, const fvPatchFieldMapper& mapper ) : fixedValueFvPatchScalarField(ptf, p, iF, mapper), UName_(ptf.UName_), phiName_(ptf.phiName_), psiName_(ptf.psiName_), gamma_(ptf.gamma_), T0_(ptf.T0_, mapper) {} Foam::totalTemperatureFvPatchScalarField::totalTemperatureFvPatchScalarField ( const fvPatch& p, const DimensionedField& iF, const dictionary& dict ) : fixedValueFvPatchScalarField(p, iF, dict, IOobjectOption::NO_READ), UName_(dict.getOrDefault("U", "U")), phiName_(dict.getOrDefault("phi", "phi")), psiName_(dict.getOrDefault("psi", "thermo:psi")), gamma_(dict.get("gamma")), T0_("T0", dict, p.size()) { if (!this->readValueEntry(dict)) { fvPatchField::operator=(T0_); } } Foam::totalTemperatureFvPatchScalarField::totalTemperatureFvPatchScalarField ( const totalTemperatureFvPatchScalarField& tppsf ) : fixedValueFvPatchScalarField(tppsf), UName_(tppsf.UName_), phiName_(tppsf.phiName_), psiName_(tppsf.psiName_), gamma_(tppsf.gamma_), T0_(tppsf.T0_) {} Foam::totalTemperatureFvPatchScalarField::totalTemperatureFvPatchScalarField ( const totalTemperatureFvPatchScalarField& tppsf, const DimensionedField& iF ) : fixedValueFvPatchScalarField(tppsf, iF), UName_(tppsf.UName_), phiName_(tppsf.phiName_), psiName_(tppsf.psiName_), gamma_(tppsf.gamma_), T0_(tppsf.T0_) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void Foam::totalTemperatureFvPatchScalarField::autoMap ( const fvPatchFieldMapper& m ) { fixedValueFvPatchScalarField::autoMap(m); T0_.autoMap(m); } void Foam::totalTemperatureFvPatchScalarField::rmap ( const fvPatchScalarField& ptf, const labelList& addr ) { fixedValueFvPatchScalarField::rmap(ptf, addr); const totalTemperatureFvPatchScalarField& tiptf = refCast(ptf); T0_.rmap(tiptf.T0_, addr); } void Foam::totalTemperatureFvPatchScalarField::updateCoeffs() { if (updated()) { return; } const auto& Up = patch().lookupPatchField(UName_); const auto& phip = patch().lookupPatchField(phiName_); const auto& psip = patch().lookupPatchField(psiName_); scalar gM1ByG = (gamma_ - 1.0)/gamma_; operator== ( T0_/(1.0 + 0.5*psip*gM1ByG*(neg(phip))*magSqr(Up)) ); fixedValueFvPatchScalarField::updateCoeffs(); } void Foam::totalTemperatureFvPatchScalarField::write(Ostream& os) const { fvPatchField::write(os); os.writeEntryIfDifferent("U", "U", UName_); os.writeEntryIfDifferent("phi", "phi", phiName_); os.writeEntryIfDifferent("psi", "thermo:psi", psiName_); os.writeEntry("gamma", gamma_); T0_.writeEntry("T0", os); fvPatchField::writeValueEntry(os); } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { makePatchTypeField ( fvPatchScalarField, totalTemperatureFvPatchScalarField ); } // ************************************************************************* //