/*---------------------------------------------------------------------------*\ ========= | \\ / 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 "pressureInletOutletParSlipVelocityFvPatchVectorField.H" #include "addToRunTimeSelectionTable.H" #include "fvPatchFieldMapper.H" #include "volFields.H" #include "surfaceFields.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::pressureInletOutletParSlipVelocityFvPatchVectorField:: pressureInletOutletParSlipVelocityFvPatchVectorField ( const fvPatch& p, const DimensionedField& iF ) : mixedFvPatchVectorField(p, iF), phiName_("phi"), rhoName_("rho") { refValue() = *this; refGrad() = Zero; valueFraction() = 0.0; } Foam::pressureInletOutletParSlipVelocityFvPatchVectorField:: pressureInletOutletParSlipVelocityFvPatchVectorField ( const pressureInletOutletParSlipVelocityFvPatchVectorField& ptf, const fvPatch& p, const DimensionedField& iF, const fvPatchFieldMapper& mapper ) : mixedFvPatchVectorField(ptf, p, iF, mapper), phiName_(ptf.phiName_), rhoName_(ptf.rhoName_) {} Foam::pressureInletOutletParSlipVelocityFvPatchVectorField:: pressureInletOutletParSlipVelocityFvPatchVectorField ( const fvPatch& p, const DimensionedField& iF, const dictionary& dict ) : mixedFvPatchVectorField(p, iF), phiName_(dict.getOrDefault("phi", "phi")), rhoName_(dict.getOrDefault("rho", "rho")) { fvPatchFieldBase::readDict(dict); this->readValueEntry(dict, IOobjectOption::MUST_READ); refValue() = *this; refGrad() = Zero; valueFraction() = 0.0; } Foam::pressureInletOutletParSlipVelocityFvPatchVectorField:: pressureInletOutletParSlipVelocityFvPatchVectorField ( const pressureInletOutletParSlipVelocityFvPatchVectorField& pivpvf ) : mixedFvPatchVectorField(pivpvf), phiName_(pivpvf.phiName_), rhoName_(pivpvf.rhoName_) {} Foam::pressureInletOutletParSlipVelocityFvPatchVectorField:: pressureInletOutletParSlipVelocityFvPatchVectorField ( const pressureInletOutletParSlipVelocityFvPatchVectorField& pivpvf, const DimensionedField& iF ) : mixedFvPatchVectorField(pivpvf, iF), phiName_(pivpvf.phiName_), rhoName_(pivpvf.rhoName_) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void Foam::pressureInletOutletParSlipVelocityFvPatchVectorField::updateCoeffs() { if (updated()) { return; } const auto& phip = patch().lookupPatchField(phiName_); tmp n = patch().nf(); const Field& magSf = patch().magSf(); // Get the tangential component from the internalField (zero-gradient) vectorField Ut(patchInternalField()); Ut -= n()*(Ut & n()); if (phip.internalField().dimensions() == dimVolume/dimTime) { refValue() = Ut + n*phip/magSf; } else if (phip.internalField().dimensions() == dimMass/dimTime) { const auto& rhop = patch().lookupPatchField(rhoName_); refValue() = Ut + n*phip/(rhop*magSf); } else { FatalErrorInFunction << "dimensions of phi are not correct" << nl << " on patch " << this->patch().name() << " of field " << this->internalField().name() << " in file " << this->internalField().objectPath() << exit(FatalError); } valueFraction() = neg(phip); mixedFvPatchVectorField::updateCoeffs(); } void Foam::pressureInletOutletParSlipVelocityFvPatchVectorField::write ( Ostream& os ) const { fvPatchField::write(os); os.writeEntryIfDifferent("phi", "phi", phiName_); os.writeEntryIfDifferent("rho", "rho", rhoName_); fvPatchField::writeValueEntry(os); } // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * // void Foam::pressureInletOutletParSlipVelocityFvPatchVectorField::operator= ( const fvPatchField& pvf ) { fvPatchField::operator=(pvf); } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { makePatchTypeField ( fvPatchVectorField, pressureInletOutletParSlipVelocityFvPatchVectorField ); } // ************************************************************************* //