/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 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::fixedFluxExtrapolatedPressureFvPatchScalarField Group grpInletBoundaryConditions grpWallBoundaryConditions Description This boundary condition sets the pressure gradient to the provided value such that the flux on the boundary is that specified by the velocity boundary condition. Example of the boundary condition specification: \verbatim { type fixedFluxExtrapolatedPressure; } \endverbatim See also Foam::fixedGradientFvPatchField SourceFiles fixedFluxExtrapolatedPressureFvPatchScalarField.C \*---------------------------------------------------------------------------*/ #ifndef fixedFluxExtrapolatedPressureFvPatchScalarField_H #define fixedFluxExtrapolatedPressureFvPatchScalarField_H #include "fixedFluxPressureFvPatchScalarField.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class fixedFluxExtrapolatedPressureFvPatchScalarField Declaration \*---------------------------------------------------------------------------*/ class fixedFluxExtrapolatedPressureFvPatchScalarField : public fixedFluxPressureFvPatchScalarField { public: //- Runtime type information TypeName("fixedFluxExtrapolatedPressure"); // Constructors //- Construct from patch and internal field fixedFluxExtrapolatedPressureFvPatchScalarField ( const fvPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary fixedFluxExtrapolatedPressureFvPatchScalarField ( const fvPatch&, const DimensionedField&, const dictionary& ); //- Construct by mapping given // fixedFluxExtrapolatedPressureFvPatchScalarField onto a new patch fixedFluxExtrapolatedPressureFvPatchScalarField ( const fixedFluxExtrapolatedPressureFvPatchScalarField&, const fvPatch&, const DimensionedField&, const fvPatchFieldMapper& ); //- Construct as copy fixedFluxExtrapolatedPressureFvPatchScalarField ( const fixedFluxExtrapolatedPressureFvPatchScalarField& ); //- Construct as copy setting internal field reference fixedFluxExtrapolatedPressureFvPatchScalarField ( const fixedFluxExtrapolatedPressureFvPatchScalarField&, 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); } }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //