/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- 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 "flowRateTiltedInletVelocityFvPatchVectorField.H" #include "volFields.H" #include "addToRunTimeSelectionTable.H" #include "fvPatchFieldMapper.H" #include "surfaceFields.H" #include "unitConversion.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::flowRateTiltedInletVelocityFvPatchVectorField:: flowRateTiltedInletVelocityFvPatchVectorField ( const fvPatch& p, const DimensionedField& iF ) : fixedValueFvPatchField(p, iF), flowRate_(), volumetric_(false), rhoName_("rho"), rhoInlet_(0.0), angle_(0.0), axis_(vector(0,0,0)) {} Foam::flowRateTiltedInletVelocityFvPatchVectorField:: flowRateTiltedInletVelocityFvPatchVectorField ( const flowRateTiltedInletVelocityFvPatchVectorField& ptf, const fvPatch& p, const DimensionedField& iF, const fvPatchFieldMapper& mapper ) : fixedValueFvPatchField(ptf, p, iF, mapper), flowRate_(ptf.flowRate_().clone().ptr()), volumetric_(ptf.volumetric_), rhoName_(ptf.rhoName_), rhoInlet_(ptf.rhoInlet_), angle_(ptf.angle_), axis_(ptf.axis_) {} Foam::flowRateTiltedInletVelocityFvPatchVectorField:: flowRateTiltedInletVelocityFvPatchVectorField ( const fvPatch& p, const DimensionedField& iF, const dictionary& dict ) : fixedValueFvPatchField(p, iF), rhoInlet_(dict.lookupOrDefault("rhoInlet", -VGREAT)) { if (dict.found("volumetricFlowRate")) { volumetric_ = true; flowRate_ = DataEntry::New("volumetricFlowRate", dict); rhoName_ = "rho"; } else if (dict.found("massFlowRate")) { volumetric_ = false; flowRate_ = DataEntry::New("massFlowRate", dict); rhoName_ = word(dict.lookupOrDefault("rho", "rho")); } else { FatalIOErrorIn ( "flowRateTiltedInletVelocityFvPatchVectorField::" "flowRateTiltedInletVelocityFvPatchVectorField" "(const fvPatch&, const DimensionedField&," " const dictionary&)", dict ) << "Please supply either 'volumetricFlowRate' or" << " 'massFlowRate' and 'rho'" << exit(FatalIOError); } angle_ = degToRad(readScalar(dict.lookup("angle"))); vector axis(dict.lookup("axis")); axis_ = axis / mag(axis); // Value field require if mass based if (dict.found("value")) { fvPatchField::operator= ( vectorField("value", dict, p.size()) ); } else { evaluate(Pstream::blocking); } } Foam::flowRateTiltedInletVelocityFvPatchVectorField:: flowRateTiltedInletVelocityFvPatchVectorField ( const flowRateTiltedInletVelocityFvPatchVectorField& ptf ) : fixedValueFvPatchField(ptf), flowRate_(ptf.flowRate_().clone().ptr()), volumetric_(ptf.volumetric_), rhoName_(ptf.rhoName_), rhoInlet_(ptf.rhoInlet_), angle_(ptf.angle_), axis_(ptf.axis_) {} Foam::flowRateTiltedInletVelocityFvPatchVectorField:: flowRateTiltedInletVelocityFvPatchVectorField ( const flowRateTiltedInletVelocityFvPatchVectorField& ptf, const DimensionedField& iF ) : fixedValueFvPatchField(ptf, iF), flowRate_(ptf.flowRate_().clone().ptr()), volumetric_(ptf.volumetric_), rhoName_(ptf.rhoName_), rhoInlet_(ptf.rhoInlet_), angle_(ptf.angle_), axis_(ptf.axis_) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void Foam::flowRateTiltedInletVelocityFvPatchVectorField::updateCoeffs() { if (updated()) { return; } const scalar t = db().time().timeOutputValue(); // a simpler way of doing this would be nice const scalar avgU = flowRate_->value(t)/gSum(patch().magSf()); vectorField n(-patch().nf()); scalarField B(Foam::asin(n & axis_)); scalarField tau(Foam::cos(B)*(Foam::tan(B+angle_) - Foam::tan(B))); vectorField nt((n + tau * axis_)/(1.0 + tau * (axis_ & n))); if (volumetric_ || rhoName_ == "none") { // volumetric flow-rate or density not given operator==(nt*avgU); } else { // mass flow-rate if (db().foundObject(rhoName_)) { const fvPatchField& rhop = patch().lookupPatchField(rhoName_); operator==(nt*avgU/rhop); } else { // Use constant density if (rhoInlet_ < 0) { FatalErrorIn ( "flowRateTiltedInletVelocityFvPatchVectorField::updateCoeffs()" ) << "Did not find registered density field " << rhoName_ << " and no constant density 'rhoInlet' specified" << exit(FatalError); } operator==(nt*avgU/rhoInlet_); } } fixedValueFvPatchVectorField::updateCoeffs(); } void Foam::flowRateTiltedInletVelocityFvPatchVectorField::write(Ostream& os) const { fvPatchField::write(os); flowRate_->writeData(os); if (!volumetric_) { writeEntryIfDifferent(os, "rho", "rho", rhoName_); writeEntryIfDifferent(os, "rhoInlet", -VGREAT, rhoInlet_); } writeEntry("value", os); } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { makePatchTypeField ( fvPatchVectorField, flowRateTiltedInletVelocityFvPatchVectorField ); } // ************************************************************************* //