/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2012-2016 OpenFOAM Foundation Copyright (C) 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 "variableHeightFlowRateInletVelocityFvPatchVectorField.H" #include "addToRunTimeSelectionTable.H" #include "volFields.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::variableHeightFlowRateInletVelocityFvPatchVectorField ::variableHeightFlowRateInletVelocityFvPatchVectorField ( const fvPatch& p, const DimensionedField& iF ) : fixedValueFvPatchField(p, iF), flowRate_(), alphaName_("none") {} Foam::variableHeightFlowRateInletVelocityFvPatchVectorField ::variableHeightFlowRateInletVelocityFvPatchVectorField ( const fvPatch& p, const DimensionedField& iF, const dictionary& dict ) : fixedValueFvPatchField(p, iF, dict), flowRate_(Function1::New("flowRate", dict, &db())), alphaName_(dict.lookup("alpha")) {} Foam::variableHeightFlowRateInletVelocityFvPatchVectorField ::variableHeightFlowRateInletVelocityFvPatchVectorField ( const variableHeightFlowRateInletVelocityFvPatchVectorField& ptf, const fvPatch& p, const DimensionedField& iF, const fvPatchFieldMapper& mapper ) : fixedValueFvPatchField(ptf, p, iF, mapper), flowRate_(ptf.flowRate_.clone()), alphaName_(ptf.alphaName_) {} Foam::variableHeightFlowRateInletVelocityFvPatchVectorField ::variableHeightFlowRateInletVelocityFvPatchVectorField ( const variableHeightFlowRateInletVelocityFvPatchVectorField& ptf ) : fixedValueFvPatchField(ptf), flowRate_(ptf.flowRate_.clone()), alphaName_(ptf.alphaName_) {} Foam::variableHeightFlowRateInletVelocityFvPatchVectorField ::variableHeightFlowRateInletVelocityFvPatchVectorField ( const variableHeightFlowRateInletVelocityFvPatchVectorField& ptf, const DimensionedField& iF ) : fixedValueFvPatchField(ptf, iF), flowRate_(ptf.flowRate_.clone()), alphaName_(ptf.alphaName_) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void Foam::variableHeightFlowRateInletVelocityFvPatchVectorField ::updateCoeffs() { if (updated()) { return; } scalarField alphap = patch().lookupPatchField(alphaName_); alphap = max(alphap, scalar(0)); alphap = min(alphap, scalar(1)); const scalar t = db().time().timeOutputValue(); scalar flowRate = flowRate_->value(t); // a simpler way of doing this would be nice scalar avgU = -flowRate/gSum(patch().magSf()*alphap); vectorField n(patch().nf()); operator==(n*avgU*alphap); fixedValueFvPatchField::updateCoeffs(); } void Foam::variableHeightFlowRateInletVelocityFvPatchVectorField::write ( Ostream& os ) const { fvPatchField::write(os); flowRate_->writeData(os); os.writeEntry("alpha", alphaName_); writeEntry("value", os); } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { makePatchTypeField ( fvPatchVectorField, variableHeightFlowRateInletVelocityFvPatchVectorField ); } // ************************************************************************* //