/*---------------------------------------------------------------------------*\ ========= | \\ / 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::uniformJumpAMIFvPatchField Group grpCoupledBoundaryConditions Description This boundary condition provides a jump condition, using the \c cyclicAMI condition as a base. The jump is specified as a time-varying uniform value across the patch. Usage \table Property | Description | Required | Default value patchType | underlying patch type should be \c cyclicAMI| yes | jumpTable | jump value | yes | \endtable Example of the boundary condition specification: \verbatim { type uniformJumpAMI; patchType cyclicAMI; 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::jumpCyclicAMIFvPatchField Foam::Function1Types SourceFiles uniformJumpAMIFvPatchField.C \*---------------------------------------------------------------------------*/ #ifndef uniformJumpAMIFvPatchField_H #define uniformJumpAMIFvPatchField_H #include "fixedJumpAMIFvPatchField.H" #include "Function1.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class uniformJumpAMIFvPatchField Declaration \*---------------------------------------------------------------------------*/ template class uniformJumpAMIFvPatchField : public fixedJumpAMIFvPatchField { protected: // Protected data //- "jump" table autoPtr> jumpTable_; public: //- Runtime type information TypeName("uniformJumpAMI"); // Constructors //- Construct from patch and internal field uniformJumpAMIFvPatchField ( const fvPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary uniformJumpAMIFvPatchField ( const fvPatch&, const DimensionedField&, const dictionary& ); //- Construct by mapping given uniformJumpAMIFvPatchField onto a // new patch uniformJumpAMIFvPatchField ( const uniformJumpAMIFvPatchField&, const fvPatch&, const DimensionedField&, const fvPatchFieldMapper& ); //- Construct as copy uniformJumpAMIFvPatchField ( const uniformJumpAMIFvPatchField& ); //- Construct as copy setting internal field reference uniformJumpAMIFvPatchField ( const uniformJumpAMIFvPatchField&, 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&) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository #include "uniformJumpAMIFvPatchField.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //