/*---------------------------------------------------------------------------*\ ========= | \\ / 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 newDirectionMixedFvPatchField Description Doubly mixed fixed value-fixed gradient boundary condition separated into a normal and a tangential component given a direction vector. The mixture is controlled by two separate valueFraction coefficients in the normal and tangential direction. SourceFiles newDirectionMixedFvPatchField.C \*---------------------------------------------------------------------------*/ #ifndef newDirectionMixedFvPatchField_H #define newDirectionMixedFvPatchField_H #include "fvPatchField.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class directionMixedFvPatch Declaration \*---------------------------------------------------------------------------*/ template class newDirectionMixedFvPatchField : public fvPatchField { // Private data //- Value field Field refValue_; //- Gradient field Field refGrad_; //- Normal direction vectorField nHat_; //- Fraction (0-1) of value used for normal component scalarField normalValueFraction_; //- Fraction (0-1) of value used for tangential component scalarField tangentialValueFraction_; // Private Member Functions //- Check and normalize nHat void checkNHat(); public: //- Runtime type information TypeName("newDirectionMixed"); // Constructors //- Construct from patch and internal field newDirectionMixedFvPatchField ( const fvPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary newDirectionMixedFvPatchField ( const fvPatch&, const DimensionedField&, const dictionary& ); //- Construct by mapping given newDirectionMixedFvPatchField onto // a new patch newDirectionMixedFvPatchField ( const newDirectionMixedFvPatchField&, const fvPatch&, const DimensionedField&, const fvPatchFieldMapper& ); //- Construct and return a clone virtual tmp > clone() const { return tmp > ( new newDirectionMixedFvPatchField(*this) ); } //- Construct as copy setting internal field reference newDirectionMixedFvPatchField ( const newDirectionMixedFvPatchField&, const DimensionedField& ); //- Construct and return a clone setting internal field reference virtual tmp > clone ( const DimensionedField& iF ) const { return tmp > ( new newDirectionMixedFvPatchField(*this, iF) ); } // Member functions // Access //- Return true if this patch field fixes a value. // Needed to check if a level has to be specified while solving // Poissons equations. virtual bool fixesValue() const { return true; } // 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 Field& refGrad() { return refGrad_; } virtual const Field& refGrad() const { return refGrad_; } virtual vectorField& nHat() { return nHat_; } virtual const vectorField& nHat() const { return nHat_; } virtual scalarField& normalValueFraction() { return normalValueFraction_; } virtual const scalarField& normalValueFraction() const { return normalValueFraction_; } virtual scalarField& tangentialValueFraction() { return tangentialValueFraction_; } virtual const scalarField& tangentialValueFraction() const { return tangentialValueFraction_; } // Evaluation functions //- Return gradient at boundary virtual tmp > snGrad() const; //- Evaluate the patch field virtual void evaluate(); //- Return the matrix diagonal coefficients corresponding to the // evaluation of the value of this patchField with given weights virtual tmp > valueInternalCoeffs ( const tmp& ) const; //- Return the matrix source coefficients corresponding to the // evaluation of the value of this patchField with given weights virtual tmp > valueBoundaryCoeffs ( const tmp& ) const; //- Return the matrix diagonal coefficients corresponding to the // evaluation of the gradient of this patchField virtual tmp > gradientInternalCoeffs() const; //- Return the matrix source coefficients corresponding to the // evaluation of the gradient of this patchField virtual tmp > gradientBoundaryCoeffs() const; //- Write virtual void write(Ostream&) const; // Member operators 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 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 "newDirectionMixedFvPatchField.C" #else # ifdef xlC # pragma implementation("newDirectionMixedFvPatchField.C") # endif #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //