/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011 OpenFOAM Foundation Copyright (C) 2018-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 "fixedPressureCompressibleDensityFvPatchScalarField.H" #include "addToRunTimeSelectionTable.H" #include "fvPatchFieldMapper.H" #include "surfaceFields.H" #include "volFields.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::fixedPressureCompressibleDensityFvPatchScalarField:: fixedPressureCompressibleDensityFvPatchScalarField ( const fvPatch& p, const DimensionedField& iF ) : fixedValueFvPatchField(p, iF), pName_("p") {} Foam::fixedPressureCompressibleDensityFvPatchScalarField:: fixedPressureCompressibleDensityFvPatchScalarField ( const fixedPressureCompressibleDensityFvPatchScalarField& ptf, const fvPatch& p, const DimensionedField& iF, const fvPatchFieldMapper& mapper ) : fixedValueFvPatchField(ptf, p, iF, mapper), pName_(ptf.pName_) {} Foam::fixedPressureCompressibleDensityFvPatchScalarField:: fixedPressureCompressibleDensityFvPatchScalarField ( const fvPatch& p, const DimensionedField& iF, const dictionary& dict ) : fixedValueFvPatchField(p, iF, dict), pName_(dict.getOrDefault("p", "p")) {} Foam::fixedPressureCompressibleDensityFvPatchScalarField:: fixedPressureCompressibleDensityFvPatchScalarField ( const fixedPressureCompressibleDensityFvPatchScalarField& ptf ) : fixedValueFvPatchField(ptf), pName_(ptf.pName_) {} Foam::fixedPressureCompressibleDensityFvPatchScalarField:: fixedPressureCompressibleDensityFvPatchScalarField ( const fixedPressureCompressibleDensityFvPatchScalarField& ptf, const DimensionedField& iF ) : fixedValueFvPatchField(ptf, iF), pName_(ptf.pName_) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void Foam::fixedPressureCompressibleDensityFvPatchScalarField::updateCoeffs() { if (updated()) { return; } const auto& pp = patch().lookupPatchField(pName_); const dictionary& thermoProps = db().lookupObject("thermodynamicProperties"); const scalar rholSat = dimensionedScalar("rholSat", thermoProps).value(); const scalar pSat = dimensionedScalar("pSat", thermoProps).value(); const scalar psil = dimensionedScalar("psil", thermoProps).value(); operator==(rholSat + psil*(pp - pSat)); fixedValueFvPatchField::updateCoeffs(); } void Foam::fixedPressureCompressibleDensityFvPatchScalarField::write ( Ostream& os ) const { fvPatchField::write(os); os.writeEntryIfDifferent("p", "p", pName_); fvPatchField::writeValueEntry(os); } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { makePatchTypeField ( fvPatchScalarField, fixedPressureCompressibleDensityFvPatchScalarField ); } // ************************************************************************* //