/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | foam-extend: Open Source CFD \\ / O peration | Version: 3.2 \\ / A nd | Web: http://www.foam-extend.org \\/ M anipulation | For copyright notice see file Copyright ------------------------------------------------------------------------------- License This file is part of foam-extend. foam-extend 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. foam-extend 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 foam-extend. If not, see . Class Foam::mixedFixedValueSlipFvPatchField Description A mixed boundary type that blends between fixedValue and slip, as opposed to the standard mixed condition that blends between fixedValue and fixedGradient; required to implement maxwellSlipU condition. SourceFiles mixedFixedValueSlipFvPatchField.C \*---------------------------------------------------------------------------*/ #ifndef mixedFixedValueSlipFvPatchField_H #define mixedFixedValueSlipFvPatchField_H #include "transformFvPatchField.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class mixedFixedValueSlipFvPatch Declaration \*---------------------------------------------------------------------------*/ template class mixedFixedValueSlipFvPatchField : public transformFvPatchField { // Private data //- Value field used for boundary condition Field refValue_; //- Fraction (0-1) of value used for boundary condition scalarField valueFraction_; public: //- Runtime type information TypeName("mixedFixedValueSlip"); // Constructors //- Construct from patch and internal field mixedFixedValueSlipFvPatchField ( const fvPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary mixedFixedValueSlipFvPatchField ( const fvPatch&, const DimensionedField&, const dictionary& ); //- Construct by mapping given mixedFixedValueSlipFvPatchField //- onto a new patch mixedFixedValueSlipFvPatchField ( const mixedFixedValueSlipFvPatchField&, const fvPatch&, const DimensionedField&, const fvPatchFieldMapper& ); //- Construct as copy mixedFixedValueSlipFvPatchField ( const mixedFixedValueSlipFvPatchField& ); //- Construct and return a clone virtual tmp > clone() const { return tmp > ( new mixedFixedValueSlipFvPatchField(*this) ); } //- Construct as copy setting internal field reference mixedFixedValueSlipFvPatchField ( const mixedFixedValueSlipFvPatchField&, const DimensionedField& ); //- Construct and return a clone setting internal field reference virtual tmp > clone ( const DimensionedField& iF ) const { return tmp > ( new mixedFixedValueSlipFvPatchField(*this, iF) ); } // Member functions // 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 fvPatchField&, const labelList& ); // Return defining fields virtual Field& refValue() { return refValue_; } virtual const Field& refValue() const { return refValue_; } virtual scalarField& valueFraction() { return valueFraction_; } virtual const scalarField& valueFraction() const { return valueFraction_; } // Evaluation functions //- Return gradient at boundary virtual tmp > snGrad() const; //- Evaluate the patch field virtual void evaluate ( const Pstream::commsTypes commsType=Pstream::blocking ); //- Return face-gradient transform diagonal virtual tmp > snGradTransformDiag() const; //- Write virtual void write(Ostream&) const; // Member operators virtual void operator=(const UList&) {} virtual void operator=(const fvPatchField&) {} virtual void operator+=(const fvPatchField&) {} virtual void operator-=(const fvPatchField&) {} virtual void operator*=(const fvPatchField&) {} virtual void operator/=(const fvPatchField&) {} virtual void operator+=(const Field&) {} virtual void operator-=(const Field&) {} virtual void operator*=(const Field&) {} virtual void operator/=(const Field&) {} virtual void operator=(const Type&) {} virtual void operator+=(const Type&) {} virtual void operator-=(const Type&) {} virtual void operator*=(const scalar) {} virtual void operator/=(const scalar) {} }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository # include "mixedFixedValueSlipFvPatchField.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //