/*---------------------------------------------------------------------------*\ ========= | \\ / 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 "totalPressureFvPatchScalarField.H" #include "addToRunTimeSelectionTable.H" #include "fvPatchFieldMapper.H" #include "volFields.H" #include "surfaceFields.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::totalPressureFvPatchScalarField::totalPressureFvPatchScalarField ( const fvPatch& p, const DimensionedField& iF ) : fixedValueFvPatchScalarField(p, iF), UName_("U"), phiName_("phi"), rhoName_("rho"), psiName_("none"), gamma_(0.0), p0_(p.size(), Zero) {} Foam::totalPressureFvPatchScalarField::totalPressureFvPatchScalarField ( 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")), rhoName_(dict.getOrDefault("rho", "rho")), psiName_(dict.getOrDefault("psi", "none")), gamma_(psiName_ != "none" ? dict.get("gamma") : 1), p0_("p0", dict, p.size()) { if (!this->readValueEntry(dict)) { fvPatchField::operator=(p0_); } } Foam::totalPressureFvPatchScalarField::totalPressureFvPatchScalarField ( const totalPressureFvPatchScalarField& ptf, const fvPatch& p, const DimensionedField& iF, const fvPatchFieldMapper& mapper ) : fixedValueFvPatchScalarField(ptf, p, iF, mapper), UName_(ptf.UName_), phiName_(ptf.phiName_), rhoName_(ptf.rhoName_), psiName_(ptf.psiName_), gamma_(ptf.gamma_), p0_(ptf.p0_, mapper) {} Foam::totalPressureFvPatchScalarField::totalPressureFvPatchScalarField ( const totalPressureFvPatchScalarField& tppsf ) : fixedValueFvPatchScalarField(tppsf), UName_(tppsf.UName_), phiName_(tppsf.phiName_), rhoName_(tppsf.rhoName_), psiName_(tppsf.psiName_), gamma_(tppsf.gamma_), p0_(tppsf.p0_) {} Foam::totalPressureFvPatchScalarField::totalPressureFvPatchScalarField ( const totalPressureFvPatchScalarField& tppsf, const DimensionedField& iF ) : fixedValueFvPatchScalarField(tppsf, iF), UName_(tppsf.UName_), phiName_(tppsf.phiName_), rhoName_(tppsf.rhoName_), psiName_(tppsf.psiName_), gamma_(tppsf.gamma_), p0_(tppsf.p0_) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void Foam::totalPressureFvPatchScalarField::autoMap ( const fvPatchFieldMapper& m ) { fixedValueFvPatchScalarField::autoMap(m); p0_.autoMap(m); } void Foam::totalPressureFvPatchScalarField::rmap ( const fvPatchScalarField& ptf, const labelList& addr ) { fixedValueFvPatchScalarField::rmap(ptf, addr); const totalPressureFvPatchScalarField& tiptf = refCast(ptf); p0_.rmap(tiptf.p0_, addr); } void Foam::totalPressureFvPatchScalarField::updateCoeffs ( const scalarField& p0p, const vectorField& Up ) { if (updated()) { return; } const auto& phip = patch().lookupPatchField(phiName_); if (internalField().dimensions() == dimPressure) { if (psiName_ == "none") { // Variable density and low-speed compressible flow const auto& rho = patch().lookupPatchField(rhoName_); operator==(p0p - 0.5*rho*(neg(phip))*magSqr(Up)); } else { // High-speed compressible flow const auto& psip = patch().lookupPatchField(psiName_); if (gamma_ > 1) { scalar gM1ByG = (gamma_ - 1)/gamma_; operator== ( p0p /pow ( (1.0 + 0.5*psip*gM1ByG*(neg(phip))*magSqr(Up)), 1.0/gM1ByG ) ); } else { operator==(p0p/(1.0 + 0.5*psip*(neg(phip))*magSqr(Up))); } } } else if (internalField().dimensions() == dimPressure/dimDensity) { // Incompressible flow operator==(p0p - 0.5*(neg(phip))*magSqr(Up)); } else { FatalErrorInFunction << " Incorrect pressure dimensions " << internalField().dimensions() << nl << " Should be " << dimPressure << " for compressible/variable density flow" << nl << " or " << dimPressure/dimDensity << " for incompressible flow," << nl << " on patch " << this->patch().name() << " of field " << this->internalField().name() << " in file " << this->internalField().objectPath() << exit(FatalError); } fixedValueFvPatchScalarField::updateCoeffs(); } void Foam::totalPressureFvPatchScalarField::updateCoeffs() { updateCoeffs ( p0(), patch().lookupPatchField(UName()) ); } void Foam::totalPressureFvPatchScalarField::write(Ostream& os) const { fvPatchField::write(os); os.writeEntryIfDifferent("U", "U", UName_); os.writeEntryIfDifferent("phi", "phi", phiName_); os.writeEntry("rho", rhoName_); os.writeEntry("psi", psiName_); os.writeEntry("gamma", gamma_); p0_.writeEntry("p0", os); fvPatchField::writeValueEntry(os); } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { makePatchTypeField ( fvPatchScalarField, totalPressureFvPatchScalarField ); } // ************************************************************************* //