/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2017 OpenFOAM Foundation Copyright (C) 2020-2021 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 "matchedFlowRateOutletVelocityFvPatchVectorField.H" #include "volFields.H" #include "one.H" #include "addToRunTimeSelectionTable.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::matchedFlowRateOutletVelocityFvPatchVectorField:: matchedFlowRateOutletVelocityFvPatchVectorField ( const fvPatch& p, const DimensionedField& iF ) : fixedValueFvPatchField(p, iF), inletPatchName_(), rhoName_("rho"), volumetric_(false) {} Foam::matchedFlowRateOutletVelocityFvPatchVectorField:: matchedFlowRateOutletVelocityFvPatchVectorField ( const fvPatch& p, const DimensionedField& iF, const dictionary& dict ) : fixedValueFvPatchField(p, iF, dict, IOobjectOption::NO_READ), inletPatchName_(dict.get("inletPatch")), rhoName_(), volumetric_(dict.getOrDefault("volumetric", true)) { if (volumetric_) { rhoName_ = "none"; } else { rhoName_ = dict.getOrDefault("rho", "rho"); } // Value field required if mass based if (!this->readValueEntry(dict)) { evaluate(Pstream::commsTypes::buffered); } } Foam::matchedFlowRateOutletVelocityFvPatchVectorField:: matchedFlowRateOutletVelocityFvPatchVectorField ( const matchedFlowRateOutletVelocityFvPatchVectorField& ptf, const fvPatch& p, const DimensionedField& iF, const fvPatchFieldMapper& mapper ) : fixedValueFvPatchField(ptf, p, iF, mapper), inletPatchName_(ptf.inletPatchName_), rhoName_(ptf.rhoName_), volumetric_(ptf.volumetric_) {} Foam::matchedFlowRateOutletVelocityFvPatchVectorField:: matchedFlowRateOutletVelocityFvPatchVectorField ( const matchedFlowRateOutletVelocityFvPatchVectorField& ptf ) : fixedValueFvPatchField(ptf), inletPatchName_(ptf.inletPatchName_), rhoName_(ptf.rhoName_), volumetric_(ptf.volumetric_) {} Foam::matchedFlowRateOutletVelocityFvPatchVectorField:: matchedFlowRateOutletVelocityFvPatchVectorField ( const matchedFlowRateOutletVelocityFvPatchVectorField& ptf, const DimensionedField& iF ) : fixedValueFvPatchField(ptf, iF), inletPatchName_(ptf.inletPatchName_), rhoName_(ptf.rhoName_), volumetric_(ptf.volumetric_) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template void Foam::matchedFlowRateOutletVelocityFvPatchVectorField::updateValues ( const label inletPatchID, const RhoType& rhoOutlet, const RhoType& rhoInlet ) { const fvPatch& p = patch(); const fvPatch& inletPatch = p.boundaryMesh()[inletPatchID]; const vectorField n(p.nf()); // Extrapolate patch velocity vectorField Up(patchInternalField()); // Patch normal extrapolated velocity scalarField nUp(n & Up); // Remove the normal component of the extrapolate patch velocity Up -= nUp*n; // Remove any reverse flow nUp = max(nUp, scalar(0)); // Lookup non-const access to velocity field volVectorField& U ( dynamic_cast(internalField()).constCast() ); // Get the corresponding inlet velocity patch field fvPatchVectorField& inletPatchU = U.boundaryFieldRef()[inletPatchID]; // Ensure that the corresponding inlet velocity patch field is up-to-date inletPatchU.updateCoeffs(); // Calculate the inlet patch flow rate const scalar flowRate = -gSum(rhoInlet*(inletPatch.Sf() & inletPatchU)); // Calculate the extrapolated outlet patch flow rate const scalar estimatedFlowRate = gSum(rhoOutlet*(patch().magSf()*nUp)); if (estimatedFlowRate > 0.5*flowRate) { nUp *= (mag(flowRate)/mag(estimatedFlowRate)); } else { nUp += ((flowRate - estimatedFlowRate)/gSum(rhoOutlet*patch().magSf())); } // Add the corrected normal component of velocity to the patch velocity Up += nUp*n; // Correct the patch velocity operator==(Up); } void Foam::matchedFlowRateOutletVelocityFvPatchVectorField::updateCoeffs() { if (updated()) { return; } // Find corresponding inlet patch const label inletPatchID = patch().patch().boundaryMesh().findPatchID(inletPatchName_); if (inletPatchID < 0) { FatalErrorInFunction << "Unable to find inlet patch " << inletPatchName_ << exit(FatalError); } if (volumetric_) { updateValues(inletPatchID, one{}, one{}); } else { // Mass flow-rate if (db().foundObject(rhoName_)) { const volScalarField& rho = db().lookupObject ( rhoName_ ); updateValues ( inletPatchID, rho.boundaryField()[patch().index()], rho.boundaryField()[inletPatchID] ); } else { FatalErrorInFunction << "Cannot find density field " << rhoName_ << exit(FatalError); } } fixedValueFvPatchVectorField::updateCoeffs(); } void Foam::matchedFlowRateOutletVelocityFvPatchVectorField::write ( Ostream& os ) const { fvPatchField::write(os); os.writeEntry("inletPatch", inletPatchName_); if (!volumetric_) { os.writeEntry("volumetric", volumetric_); os.writeEntryIfDifferent("rho", "rho", rhoName_); } fvPatchField::writeValueEntry(os); } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { makePatchTypeField ( fvPatchVectorField, matchedFlowRateOutletVelocityFvPatchVectorField ); } // ************************************************************************* //