/*---------------------------------------------------------------------------*\ ========= | \\ / 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) 2017-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 "turbulentIntensityKineticEnergyInletFvPatchScalarField.H" #include "addToRunTimeSelectionTable.H" #include "fvPatchFieldMapper.H" #include "surfaceFields.H" #include "volFields.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::turbulentIntensityKineticEnergyInletFvPatchScalarField:: turbulentIntensityKineticEnergyInletFvPatchScalarField ( const fvPatch& p, const DimensionedField& iF ) : inletOutletFvPatchScalarField(p, iF), intensity_(0.0), UName_("U") { this->refValue() = Zero; this->refGrad() = Zero; this->valueFraction() = 0.0; } Foam::turbulentIntensityKineticEnergyInletFvPatchScalarField:: turbulentIntensityKineticEnergyInletFvPatchScalarField ( const turbulentIntensityKineticEnergyInletFvPatchScalarField& ptf, const fvPatch& p, const DimensionedField& iF, const fvPatchFieldMapper& mapper ) : inletOutletFvPatchScalarField(ptf, p, iF, mapper), intensity_(ptf.intensity_), UName_(ptf.UName_) {} Foam::turbulentIntensityKineticEnergyInletFvPatchScalarField:: turbulentIntensityKineticEnergyInletFvPatchScalarField ( const fvPatch& p, const DimensionedField& iF, const dictionary& dict ) : inletOutletFvPatchScalarField(p, iF), intensity_(dict.get("intensity")), UName_(dict.getOrDefault("U", "U")) { fvPatchFieldBase::readDict(dict); this->phiName_ = dict.getOrDefault("phi", "phi"); if (intensity_ < 0 || intensity_ > 1) { FatalErrorInFunction << "Turbulence intensity should be specified as a fraction 0-1 " "of the mean velocity\n" " value given is " << intensity_ << nl << " on patch " << this->patch().name() << " of field " << this->internalField().name() << " in file " << this->internalField().objectPath() << exit(FatalError); } this->readValueEntry(dict, IOobjectOption::MUST_READ); this->refValue() = Zero; this->refGrad() = Zero; this->valueFraction() = 0.0; } Foam::turbulentIntensityKineticEnergyInletFvPatchScalarField:: turbulentIntensityKineticEnergyInletFvPatchScalarField ( const turbulentIntensityKineticEnergyInletFvPatchScalarField& ptf ) : inletOutletFvPatchScalarField(ptf), intensity_(ptf.intensity_), UName_(ptf.UName_) {} Foam::turbulentIntensityKineticEnergyInletFvPatchScalarField:: turbulentIntensityKineticEnergyInletFvPatchScalarField ( const turbulentIntensityKineticEnergyInletFvPatchScalarField& ptf, const DimensionedField& iF ) : inletOutletFvPatchScalarField(ptf, iF), intensity_(ptf.intensity_), UName_(ptf.UName_) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void Foam::turbulentIntensityKineticEnergyInletFvPatchScalarField:: updateCoeffs() { if (updated()) { return; } const auto& Up = patch().lookupPatchField(UName_); const auto& phip = patch().lookupPatchField(this->phiName_); this->refValue() = 1.5*sqr(intensity_)*magSqr(Up); this->valueFraction() = neg(phip); inletOutletFvPatchScalarField::updateCoeffs(); } void Foam::turbulentIntensityKineticEnergyInletFvPatchScalarField::write ( Ostream& os ) const { fvPatchField::write(os); os.writeEntry("intensity", intensity_); os.writeEntryIfDifferent("U", "U", UName_); os.writeEntryIfDifferent("phi", "phi", this->phiName_); fvPatchField::writeValueEntry(os); } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { makePatchTypeField ( fvPatchScalarField, turbulentIntensityKineticEnergyInletFvPatchScalarField ); } // ************************************************************************* //