/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2013-2016 OpenFOAM Foundation ------------------------------------------------------------------------------- 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 . Class Foam::prghPressureFvPatchScalarField Group grpGenericBoundaryConditions Description This boundary condition provides static pressure condition for p_rgh, calculated as: \f[ p_rgh = p - \rho g (h - hRef) \f] where \vartable p_rgh | Pseudo hydrostatic pressure [Pa] p | Static pressure [Pa] h | Height in the opposite direction to gravity hRef | Reference height in the opposite direction to gravity \rho | density g | acceleration due to gravity [m/s^2] \endtable Usage \table Property | Description | Required | Default value rho | rho field name | no | rho p | static pressure | yes | \endtable Example of the boundary condition specification: \verbatim { type prghPressure; rho rho; p uniform 0; value uniform 0; // optional initial value } \endverbatim See also Foam::fixedValueFvPatchScalarField SourceFiles prghPressureFvPatchScalarField.C \*---------------------------------------------------------------------------*/ #ifndef prghPressureFvPatchScalarField_H #define prghPressureFvPatchScalarField_H #include "fixedValueFvPatchFields.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class prghPressureFvPatchScalarField Declaration \*---------------------------------------------------------------------------*/ class prghPressureFvPatchScalarField : public fixedValueFvPatchScalarField { protected: // Protected data //- Name of phase-fraction field word rhoName_; //- Static pressure scalarField p_; public: //- Runtime type information TypeName("prghPressure"); // Constructors //- Construct from patch and internal field prghPressureFvPatchScalarField ( const fvPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary prghPressureFvPatchScalarField ( const fvPatch&, const DimensionedField&, const dictionary& ); //- Construct by mapping given // prghPressureFvPatchScalarField onto a new patch prghPressureFvPatchScalarField ( const prghPressureFvPatchScalarField&, const fvPatch&, const DimensionedField&, const fvPatchFieldMapper& ); //- Construct as copy prghPressureFvPatchScalarField ( const prghPressureFvPatchScalarField& ); //- Construct as copy setting internal field reference prghPressureFvPatchScalarField ( const prghPressureFvPatchScalarField&, const DimensionedField& ); //- Return a clone virtual tmp> clone() const { return fvPatchField::Clone(*this); } //- Clone with an internal field reference virtual tmp> clone ( const DimensionedField& iF ) const { return fvPatchField::Clone(*this, iF); } // Member functions // Access //- Return the static pressure const scalarField& p() const { return p_; } //- Return reference to the static pressure to allow adjustment scalarField& p() { return p_; } // Mapping functions //- Map (and resize as needed) from self given a mapping object virtual void autoMap ( const fvPatchFieldMapper& ); //- Reverse map the given fvPatchField onto this fvPatchField virtual void rmap ( const fvPatchScalarField&, const labelList& ); // Evaluation functions //- Update the coefficients associated with the patch field virtual void updateCoeffs(); //- Write virtual void write(Ostream&) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //