/*---------------------------------------------------------------------------*\ ========= | \\ / 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 tetPointFieldDecomposer Description Tetrahedral point field decomposer. SourceFiles tetPointFieldDecomposer.C tetPointFieldDecomposerDecomposeFields.C \*---------------------------------------------------------------------------*/ #ifndef tetPointFieldDecomposer_H #define tetPointFieldDecomposer_H #include "tetPolyMesh.H" #include "tetPointMesh.H" #include "elementMesh.H" #include "tetPolyPatch.H" #include "PointPatchFieldMapperPatchRef.H" #include "tetPolyPatchFields.H" #include "elementPatchFields.H" #include "GeometricField.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class tetPointFieldDecomposer Declaration \*---------------------------------------------------------------------------*/ class tetPointFieldDecomposer { public: //- Patch field decomposer class class tetPolyPatchFieldDecomposer : public PointPatchFieldMapperPatchRef { // Private data //- Size before mapping label sizeBeforeMapping_; //- Reference to direct addressing const labelList& directAddressing_; // Demand-driven data //- Addressing mutable labelList* directPatchAddressingPtr_; // Private Member Functions //- Disallow default bitwise copy construct tetPolyPatchFieldDecomposer ( const tetPolyPatchFieldDecomposer& ); //- Disallow default bitwise assignment void operator=(const tetPolyPatchFieldDecomposer&); // Member functions to calculate demand driven data //- Calculate addressing void calcPatchAddressing() const; public: // Constructors //- Construct given addressing tetPolyPatchFieldDecomposer ( const tetPolyPatch& sourcePatch, const tetPolyPatch& targetPatch, const labelList& directAddr ) : PointPatchFieldMapperPatchRef ( sourcePatch, targetPatch ), sizeBeforeMapping_(sourcePatch.size()), directAddressing_(directAddr), directPatchAddressingPtr_(NULL) {} // Destructor virtual ~tetPolyPatchFieldDecomposer() {} // Member functions virtual label size() const { return directAddressing().size(); } virtual label sizeBeforeMapping() const { return sizeBeforeMapping_; } virtual bool direct() const { return true; } virtual const unallocLabelList& directAddressing() const { if (!directPatchAddressingPtr_) { calcPatchAddressing(); } return *directPatchAddressingPtr_; } }; private: // Private data //- Reference to original mesh const tetPolyMesh& originalMesh_; //- Reference to processor mesh const tetPolyMesh& processorMesh_; //- Reference to point addressing const labelList& pointAddressing_; //- Reference to face addressing const labelList& faceAddressing_; //- Reference to cell addressing const labelList& cellAddressing_; //- Reference to boundary addressing const labelList& boundaryAddressing_; //- List of patch field decomposers List patchFieldDecompPtrs_; // Demand-driven data //- Addressing mutable labelList* directAddressingPtr_; // Private Member Functions //- Disallow default bitwise copy construct tetPointFieldDecomposer ( const tetPointFieldDecomposer& ); //- Disallow default bitwise assignment void operator=(const tetPointFieldDecomposer&); // Member functions for demand driven data //- Return addressing const labelList& directAddressing() const; //- Calculate addressing void calcAddressing() const; public: // Constructors //- Construct from components tetPointFieldDecomposer ( const tetPolyMesh& originalMesh, const tetPolyMesh& processorMesh, const labelList& pointAddressing, const labelList& faceAddressing, const labelList& cellAddressing, const labelList& boundaryAddressing ); // Destructor ~tetPointFieldDecomposer(); // Member Functions //- Decompose point field template tmp > decomposeField ( const GeometricField& ) const; //- Decompose element field template tmp > decomposeField ( const GeometricField& ) const; template void decomposeFields(const PtrList& fields) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository # include "tetPointFieldDecomposerDecomposeFields.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //