/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2019 Zeljko Tukovic, FSB Zagreb. ------------------------------------------------------------------------------- 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 "freeSurfacePressureFvPatchScalarField.H" #include "addToRunTimeSelectionTable.H" #include "fvPatchFieldMapper.H" #include "volFields.H" #include "gravityMeshObject.H" #include "turbulentTransportModel.H" #include "interfaceTrackingFvMesh.H" #include "singlePhaseTransportModel.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::freeSurfacePressureFvPatchScalarField:: freeSurfacePressureFvPatchScalarField ( const fvPatch& p, const DimensionedField& iF ) : fixedValueFvPatchScalarField(p, iF), pa_(p.size(), Zero) {} Foam::freeSurfacePressureFvPatchScalarField:: freeSurfacePressureFvPatchScalarField ( const fvPatch& p, const DimensionedField& iF, const dictionary& dict ) : fixedValueFvPatchScalarField(p, iF, dict, false), pa_("pa", dict, p.size()) { if (dict.found("value")) { fvPatchScalarField::operator= ( scalarField("value", dict, p.size()) ); } else { fvPatchField::operator=(pa_); } } Foam::freeSurfacePressureFvPatchScalarField:: freeSurfacePressureFvPatchScalarField ( const freeSurfacePressureFvPatchScalarField& ptf, const fvPatch& p, const DimensionedField& iF, const fvPatchFieldMapper& mapper ) : fixedValueFvPatchScalarField(ptf, p, iF, mapper), pa_(ptf.pa_, mapper) {} Foam::freeSurfacePressureFvPatchScalarField:: freeSurfacePressureFvPatchScalarField ( const freeSurfacePressureFvPatchScalarField& ptf ) : fixedValueFvPatchScalarField(ptf), pa_(ptf.pa_) {} Foam::freeSurfacePressureFvPatchScalarField:: freeSurfacePressureFvPatchScalarField ( const freeSurfacePressureFvPatchScalarField& ptf, const DimensionedField& iF ) : fixedValueFvPatchScalarField(ptf, iF), pa_(ptf.pa_) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void Foam::freeSurfacePressureFvPatchScalarField::autoMap ( const fvPatchFieldMapper& m ) { fixedValueFvPatchScalarField::autoMap(m); pa_.autoMap(m); } void Foam::freeSurfacePressureFvPatchScalarField::rmap ( const fvPatchScalarField& ptf, const labelList& addr ) { fixedValueFvPatchScalarField::rmap(ptf, addr); const freeSurfacePressureFvPatchScalarField& tiptf = refCast(ptf); pa_.rmap(tiptf.pa_, addr); } void Foam::freeSurfacePressureFvPatchScalarField::updateCoeffs() { if (updated()) { return; } const fvMesh& mesh = patch().boundaryMesh().mesh(); interfaceTrackingFvMesh& itm = refCast ( const_cast ( mesh.lookupObject("fvSolution") ) ); operator== ( pa_ + itm.freeSurfacePressureJump() ); fixedValueFvPatchScalarField::updateCoeffs(); } void Foam::freeSurfacePressureFvPatchScalarField::write(Ostream& os) const { fvPatchScalarField::write(os); pa_.writeEntry("pa", os); writeEntry("value", os); } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { makePatchTypeField ( fvPatchScalarField, freeSurfacePressureFvPatchScalarField ); } // ************************************************************************* //