/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011 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::genericPointPatchField Description A generic version of calculatedPointPatchField, useful as a fallback for handling unknown patch types. SourceFiles genericPointPatchField.C \*---------------------------------------------------------------------------*/ #ifndef genericPointPatchField_H #define genericPointPatchField_H #include "calculatedPointPatchField.H" #include "HashPtrTable.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class genericPointPatchField Declaration \*---------------------------------------------------------------------------*/ template class genericPointPatchField : public calculatedPointPatchField { // Private data word actualTypeName_; dictionary dict_; HashPtrTable scalarFields_; HashPtrTable vectorFields_; HashPtrTable sphericalTensorFields_; HashPtrTable symmTensorFields_; HashPtrTable tensorFields_; public: //- Runtime type information TypeName("generic"); // Constructors //- Construct from patch and internal field genericPointPatchField ( const pointPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary genericPointPatchField ( const pointPatch&, const DimensionedField&, const dictionary& ); //- Construct by mapping given patchField onto a new patch genericPointPatchField ( const genericPointPatchField&, const pointPatch&, const DimensionedField&, const pointPatchFieldMapper& ); //- Construct and return a clone virtual autoPtr > clone() const { return autoPtr > ( new genericPointPatchField ( *this ) ); } //- Construct as copy setting internal field reference genericPointPatchField ( const genericPointPatchField&, const DimensionedField& ); //- Construct and return a clone setting internal field reference virtual autoPtr > clone ( const DimensionedField& iF ) const { return autoPtr > ( new genericPointPatchField ( *this, iF ) ); } // Member functions // 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& ); //- Write virtual void write(Ostream&) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository # include "genericPointPatchField.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //