/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- 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::pointPatchField Description Abstract base class for point-mesh patch fields. The base-field does not store values as they are part of the "internal field". There are derived classes to store constraint values e.g. fixedValuePointPatchField derived from the generic valuePointPatchField which ensures the values in the "internal field" are reset to the fixed-values by applying the stored values. SourceFiles pointPatchField.C pointPatchFieldNew.C \*---------------------------------------------------------------------------*/ #ifndef pointPatchField_H #define pointPatchField_H #include "pointPatch.H" #include "DimensionedField.H" #include "autoPtr.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { // Forward declaration of classes class objectRegistry; class dictionary; class pointPatchFieldMapper; class pointMesh; // Forward declaration of friend functions and operators template class pointPatchField; template class calculatedPointPatchField; template Ostream& operator<< ( Ostream&, const pointPatchField& ); /*---------------------------------------------------------------------------*\ Class pointPatchField Declaration \*---------------------------------------------------------------------------*/ template class pointPatchField { // Private data //- Reference to patch const pointPatch& patch_; //- Reference to internal field const DimensionedField& internalField_; //- Update index used so that updateCoeffs is called only once during // the construction of the matrix bool updated_; //- Optional patch type, used to allow specified boundary conditions // to be applied to constraint patches by providing the constraint // patch type as 'patchType' word patchType_; public: typedef pointPatch Patch; typedef calculatedPointPatchField Calculated; //- Runtime type information TypeName("pointPatchField"); //- Debug switch to disallow the use of genericPointPatchField static int disallowGenericPointPatchField; // Declare run-time constructor selection tables declareRunTimeSelectionTable ( autoPtr, pointPatchField, pointPatch, ( const pointPatch& p, const DimensionedField& iF ), (p, iF) ); declareRunTimeSelectionTable ( autoPtr, pointPatchField, patchMapper, ( const pointPatchField& ptf, const pointPatch& p, const DimensionedField& iF, const pointPatchFieldMapper& m ), (dynamic_cast(ptf), p, iF, m) ); declareRunTimeSelectionTable ( autoPtr, pointPatchField, dictionary, ( const pointPatch& p, const DimensionedField& iF, const dictionary& dict ), (p, iF, dict) ); // Constructors //- Construct from patch and internal field pointPatchField ( const pointPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary pointPatchField ( const pointPatch&, const DimensionedField&, const dictionary& ); //- Construct by mapping given patchField onto a new patch pointPatchField ( const pointPatchField&, const pointPatch&, const DimensionedField&, const pointPatchFieldMapper& ); //- Construct as copy pointPatchField(const pointPatchField&); //- Construct and return a clone virtual autoPtr> clone() const = 0; //- Construct as copy setting internal field reference pointPatchField ( const pointPatchField&, const DimensionedField& ); //- Construct and return a clone setting internal field reference virtual autoPtr> clone ( const DimensionedField& iF ) const = 0; // Selectors //- Return a pointer to a new patchField created on freestore given // patch and internal field // (does not set the patch field values) static autoPtr> New ( const word&, const pointPatch&, const DimensionedField& ); //- Return a pointer to a new patchField created on freestore given // patch and internal field // (does not set the patch field values). // Allows override of constraint type static autoPtr> New ( const word&, const word& actualPatchType, const pointPatch&, const DimensionedField& ); //- Return a pointer to a new patchField created on freestore from // a given pointPatchField mapped onto a new patch static autoPtr> New ( const pointPatchField&, const pointPatch&, const DimensionedField&, const pointPatchFieldMapper& ); //- Return a pointer to a new patchField created on freestore // from dictionary static autoPtr> New ( const pointPatch&, const DimensionedField&, const dictionary& ); //- Return a pointer to a new calculatedPointPatchField created on // freestore without setting patchField values template static autoPtr> NewCalculatedType ( const pointPatchField& ); //- Destructor virtual ~pointPatchField() {} // Member functions // Access //- Return local objectRegistry const objectRegistry& db() const; //- Return size label size() const { return patch().size(); } //- Return patch const pointPatch& patch() const { return patch_; } //- Return dimensioned internal field reference const DimensionedField& internalField() const { return internalField_; } //- Return internal field reference const Field& primitiveField() const { return internalField_; } //- Optional patch type const word& patchType() const { return patchType_; } //- Optional patch type word& patchType() { return patchType_; } //- Return true if this patch field fixes a value virtual bool fixesValue() const { return false; } //- Return true if this patch field is coupled virtual bool coupled() const { return false; } //- Return true if the boundary condition has already been updated bool updated() const { return updated_; } //- Return field created from appropriate internal field values tmp> patchInternalField() const; //- Return field created from appropriate internal field values // given internal field reference template tmp> patchInternalField ( const Field& iF ) const; //- Return field created from selected internal field values // given internal field reference template tmp> patchInternalField ( const Field& iF, const labelList& meshPoints ) const; //- Given the internal field and a patch field, // add the patch field to the internal field template void addToInternalField ( Field& iF, const Field& pF ) const; //- Given the internal field and a patch field, // add selected elements of the patch field to the internal field template void addToInternalField ( Field& iF, const Field& pF, const labelList& points ) const; //- Given the internal field and a patch field, // set the patch field in the internal field template void setInInternalField ( Field& iF, const Field& pF, const labelList& meshPoints ) const; //- Given the internal field and a patch field, // set the patch field in the internal field template void setInInternalField ( Field& iF, const Field& pF ) const; //- Return the type of the calculated form of pointPatchField static const word& calculatedType(); //- Return the constraint type this pointPatchField implements. virtual const word& constraintType() const { return word::null; } // Mapping functions //- Map (and resize as needed) from self given a mapping object virtual void autoMap ( const pointPatchFieldMapper& ) {} //- Reverse map the given pointPatchField onto this pointPatchField virtual void rmap ( const pointPatchField&, const labelList& ) {} // Evaluation functions //- Update the coefficients associated with the patch field // Sets Updated to true virtual void updateCoeffs() { updated_ = true; } //- Initialise evaluation of the patch field (do nothing) virtual void initEvaluate ( const Pstream::commsTypes commsType = Pstream::commsTypes::blocking ) {} //- Evaluate the patch field virtual void evaluate ( const Pstream::commsTypes commsType = Pstream::commsTypes::blocking ); // I-O //- Write virtual void write(Ostream&) const; // Member operators virtual void operator=(const pointPatchField&){} virtual void operator+=(const pointPatchField&){} virtual void operator-=(const pointPatchField&){} virtual void operator*=(const pointPatchField&){} virtual void operator/=(const pointPatchField&){} 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){} // Force an assignment irrespective of form of patch // By generic these do nothing unless the patch actually has boundary // values virtual void operator==(const pointPatchField&){} virtual void operator==(const Field&){} virtual void operator==(const Type&){} // Ostream operator friend Ostream& operator<< ( Ostream&, const pointPatchField& ); }; // This function is added as a hack to enable simple backward compatibility // with versions using referenceLevel in GeometricField template const pointPatchField& operator+ ( const pointPatchField& ppf, const Type& ) { return ppf; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #include "pointPatchFieldFunctions.H" #ifdef NoRepository #include "pointPatchField.C" #include "calculatedPointPatchField.H" #endif #define addToPointPatchFieldRunTimeSelection(PatchTypeField, typePatchTypeField) \ addToRunTimeSelectionTable \ ( \ PatchTypeField, \ typePatchTypeField, \ pointPatch \ ); \ addToRunTimeSelectionTable \ ( \ PatchTypeField, \ typePatchTypeField, \ patchMapper \ ); \ addToRunTimeSelectionTable \ ( \ PatchTypeField, \ typePatchTypeField, \ dictionary \ ); // for non-templated patch fields #define makePointPatchTypeField(PatchTypeField,typePatchTypeField) \ defineTypeNameAndDebug(typePatchTypeField, 0); \ addToPointPatchFieldRunTimeSelection(PatchTypeField, typePatchTypeField) // for templated patch fields #define makeTemplatePointPatchTypeField(PatchTypeField, typePatchTypeField) \ defineNamedTemplateTypeNameAndDebug(typePatchTypeField, 0); \ addToPointPatchFieldRunTimeSelection(PatchTypeField, typePatchTypeField) #define makePointPatchFields(type) \ makeTemplatePointPatchTypeField \ ( \ pointPatchScalarField, \ type##PointPatchScalarField \ ); \ makeTemplatePointPatchTypeField \ ( \ pointPatchVectorField, \ type##PointPatchVectorField \ ); \ makeTemplatePointPatchTypeField \ ( \ pointPatchSphericalTensorField, \ type##PointPatchSphericalTensorField \ ); \ makeTemplatePointPatchTypeField \ ( \ pointPatchSymmTensorField, \ type##PointPatchSymmTensorField \ ); \ makeTemplatePointPatchTypeField \ ( \ pointPatchTensorField, \ type##PointPatchTensorField \ ); #define makePointPatchFieldsTypeName(type) \ defineNamedTemplateTypeNameAndDebug(type##PointPatchScalarField, 0); \ defineNamedTemplateTypeNameAndDebug(type##PointPatchVectorField, 0); \ defineNamedTemplateTypeNameAndDebug \ ( \ type##PointPatchSphericalTensorField, 0 \ ); \ defineNamedTemplateTypeNameAndDebug(type##PointPatchSymmTensorField, 0); \ defineNamedTemplateTypeNameAndDebug(type##PointPatchTensorField, 0) #define makePointPatchFieldTypedefs(type) \ typedef type##PointPatchField type##PointPatchScalarField; \ typedef type##PointPatchField type##PointPatchVectorField; \ typedef type##PointPatchField \ type##PointPatchSphericalTensorField; \ typedef type##PointPatchField type##PointPatchSymmTensorField;\ typedef type##PointPatchField type##PointPatchTensorField; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //