/*---------------------------------------------------------------------------*\ ========= | \\ / 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::fvFieldDecomposer Description Finite Volume volume and surface field decomposer. SourceFiles fvFieldDecomposer.C fvFieldDecomposerDecomposeFields.C \*---------------------------------------------------------------------------*/ #ifndef fvFieldDecomposer_H #define fvFieldDecomposer_H #include "fvMesh.H" #include "fvPatchFieldMapper.H" #include "surfaceFields.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { class IOobjectList; /*---------------------------------------------------------------------------*\ Class fvFieldDecomposer Declaration \*---------------------------------------------------------------------------*/ class fvFieldDecomposer { public: //- Patch field decomposer class class patchFieldDecomposer : public fvPatchFieldMapper { // Private data label sizeBeforeMapping_; labelList directAddressing_; public: // Constructors //- Construct given addressing patchFieldDecomposer ( const label sizeBeforeMapping, const unallocLabelList& addressingSlice, const label addressingOffset ); // Member functions label size() const { return directAddressing_.size(); } virtual label sizeBeforeMapping() const { return sizeBeforeMapping_; } bool direct() const { return true; } const unallocLabelList& directAddressing() const { return directAddressing_; } }; //- Processor patch field decomposer class class processorVolPatchFieldDecomposer : public fvPatchFieldMapper { // Private data label sizeBeforeMapping_; labelListList addressing_; scalarListList weights_; public: //- Construct given addressing processorVolPatchFieldDecomposer ( const fvMesh& mesh, const unallocLabelList& addressingSlice ); // Member functions label size() const { return addressing_.size(); } virtual label sizeBeforeMapping() const { return sizeBeforeMapping_; } bool direct() const { return false; } const labelListList& addressing() const { return addressing_; } const scalarListList& weights() const { return weights_; } }; //- Processor patch field decomposer class class processorSurfacePatchFieldDecomposer : public fvPatchFieldMapper { label sizeBeforeMapping_; labelListList addressing_; scalarListList weights_; public: //- Construct given addressing processorSurfacePatchFieldDecomposer ( label sizeBeforeMapping, const unallocLabelList& addressingSlice ); // Member functions label size() const { return addressing_.size(); } virtual label sizeBeforeMapping() const { return sizeBeforeMapping_; } bool direct() const { return false; } const labelListList& addressing() const { return addressing_; } const scalarListList& weights() const { return weights_; } }; private: // Private data //- Reference to complete mesh const fvMesh& completeMesh_; //- Reference to processor mesh const fvMesh& procMesh_; //- 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 patchFieldDecomposerPtrs_; List processorVolPatchFieldDecomposerPtrs_; List processorSurfacePatchFieldDecomposerPtrs_; // Private Member Functions //- Disallow default bitwise copy construct fvFieldDecomposer(const fvFieldDecomposer&); //- Disallow default bitwise assignment void operator=(const fvFieldDecomposer&); public: // Constructors //- Construct from components fvFieldDecomposer ( const fvMesh& completeMesh, const fvMesh& procMesh, const labelList& faceAddressing, const labelList& cellAddressing, const labelList& boundaryAddressing ); // Destructor ~fvFieldDecomposer(); // Member Functions //- Decompose volume field template tmp > decomposeField ( const GeometricField& field ) const; //- Decompose surface field template tmp > decomposeField ( const GeometricField& field ) const; template void decomposeFields(const PtrList& fields) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository # include "fvFieldDecomposerDecomposeFields.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //