/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2012-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::uniformJumpFvPatchField Group grpCoupledBoundaryConditions Description This boundary condition provides a jump condition, using the \c cyclic condition as a base. The jump is specified as a time-varying uniform value across the patch. Usage \table Property | Description | Required | Default patchType | underlying patch type should be \c cyclic | yes | jumpTable | jump value | yes | \endtable Example of the boundary condition specification: \verbatim { type uniformJump; patchType cyclic; jumpTable constant 10; } \endverbatim The above example shows the use of a fixed jump of '10'. Note The uniformValue entry is a Function1 type, able to describe time varying functions. The example above gives the usage for supplying a constant value. The underlying \c patchType should be set to \c cyclic See also Foam::fixedJumpFvPatchField Foam::Function1Types SourceFiles uniformJumpFvPatchField.C \*---------------------------------------------------------------------------*/ #ifndef uniformJumpFvPatchField_H #define uniformJumpFvPatchField_H #include "fixedJumpFvPatchField.H" #include "Function1.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class uniformJumpFvPatchField Declaration \*---------------------------------------------------------------------------*/ template class uniformJumpFvPatchField : public fixedJumpFvPatchField { protected: // Protected data //- The "jump" table autoPtr> jumpTable_; public: //- Runtime type information TypeName("uniformJump"); // Constructors //- Construct from patch and internal field uniformJumpFvPatchField ( const fvPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary uniformJumpFvPatchField ( const fvPatch&, const DimensionedField&, const dictionary&, const bool needValue = true ); //- Construct by mapping given uniformJumpFvPatchField onto a // new patch uniformJumpFvPatchField ( const uniformJumpFvPatchField&, const fvPatch&, const DimensionedField&, const fvPatchFieldMapper& ); //- Construct as copy uniformJumpFvPatchField ( const uniformJumpFvPatchField& ); //- Construct as copy setting internal field reference uniformJumpFvPatchField ( const uniformJumpFvPatchField&, 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 //- Update the coefficients virtual void updateCoeffs(); //- Write virtual void write(Ostream& os) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository #include "uniformJumpFvPatchField.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //