Salome HOME
6d6191c30171616089d96b3bbb9150d4463fdc88
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingCartesianAMRMesh.hxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay
20
21 #ifndef __MEDCOUPLINGCARTESIANAMRMESH_HXX__
22 #define __MEDCOUPLINGCARTESIANAMRMESH_HXX__
23
24 #include "MEDCoupling.hxx"
25 #include "MEDCouplingTimeLabel.hxx"
26 #include "MEDCouplingRefCountObject.hxx"
27 #include "MEDCouplingAutoRefCountObjectPtr.hxx"
28
29 #include "BoxSplittingOptions.hxx"
30 #include "InterpKernelException.hxx"
31
32 namespace ParaMEDMEM
33 {
34   class MEDCouplingIMesh;
35   class MEDCouplingUMesh;
36   class DataArrayInt;
37   class DataArrayByte;
38   class DataArrayDouble;
39   class MEDCoupling1SGTUMesh;
40   class MEDCouplingCartesianAMRMesh;
41   class MEDCouplingCartesianAMRMeshGen;
42
43   /// @cond INTERNAL
44
45   /*!
46    * This class does not inherit from TimeLabel so only const method should exist.
47    */
48   class MEDCouplingCartesianAMRPatchGen : public RefCountObject
49   {
50   public:
51     MEDCOUPLING_EXPORT int getNumberOfCellsRecursiveWithOverlap() const;
52     MEDCOUPLING_EXPORT int getNumberOfCellsRecursiveWithoutOverlap() const;
53     MEDCOUPLING_EXPORT int getMaxNumberOfLevelsRelativeToThis() const;
54     MEDCOUPLING_EXPORT const MEDCouplingCartesianAMRMeshGen *getMesh() const { return _mesh; }
55   protected:
56     MEDCouplingCartesianAMRPatchGen(MEDCouplingCartesianAMRMeshGen *mesh);
57     const MEDCouplingCartesianAMRMeshGen *getMeshSafe() const;
58     MEDCouplingCartesianAMRMeshGen *getMeshSafe();
59   private:
60     std::vector<const BigMemoryObject *> getDirectChildren() const;
61   protected:
62     MEDCouplingAutoRefCountObjectPtr<MEDCouplingCartesianAMRMeshGen> _mesh;
63   };
64
65   /*!
66    * This class does not inherit from TimeLabel so only const method should exist.
67    */
68   class MEDCouplingCartesianAMRPatch : public MEDCouplingCartesianAMRPatchGen
69   {
70   public:
71     MEDCouplingCartesianAMRPatch(MEDCouplingCartesianAMRMeshGen *mesh, const std::vector< std::pair<int,int> >& bottomLeftTopRight);
72     // direct forward to _mesh
73     MEDCOUPLING_EXPORT void addPatch(const std::vector< std::pair<int,int> >& bottomLeftTopRight, const std::vector<int>& factors);
74     // end of direct forward to _mesh
75     MEDCOUPLING_EXPORT int getNumberOfOverlapedCellsForFather() const;
76     MEDCOUPLING_EXPORT bool isInMyNeighborhood(const MEDCouplingCartesianAMRPatch *other, int ghostLev) const;
77     // basic set/get
78     MEDCOUPLING_EXPORT const std::vector< std::pair<int,int> >& getBLTRRange() const { return _bl_tr; }
79   private:
80     std::size_t getHeapMemorySizeWithoutChildren() const;
81   private:
82     //! bottom left/top right cell range relative to \a _father
83     std::vector< std::pair<int,int> > _bl_tr;
84   };
85
86   /*!
87    * This class does not inherit from TimeLabel so only const method should exist.
88    */
89   class MEDCouplingCartesianAMRPatchGF : public MEDCouplingCartesianAMRPatchGen
90   {
91   public:
92     MEDCouplingCartesianAMRPatchGF(MEDCouplingCartesianAMRMesh *mesh);
93   private:
94     std::size_t getHeapMemorySizeWithoutChildren() const;
95   };
96
97   class MEDCouplingDataForGodFather : public RefCountObject
98   {
99     friend class MEDCouplingCartesianAMRMesh;
100   public:
101     MEDCOUPLING_EXPORT virtual void alloc() = 0;
102     MEDCOUPLING_EXPORT virtual void dealloc() = 0;
103   protected:
104     MEDCouplingDataForGodFather(MEDCouplingCartesianAMRMesh *gf);
105     void checkGodFatherFrozen() const;
106   protected:
107     virtual bool changeGodFather(MEDCouplingCartesianAMRMesh *gf);
108   protected:
109     MEDCouplingCartesianAMRMesh *_gf;
110     TimeLabelConstOverseer _tlc;
111   };
112   /// @endcond
113
114   /*!
115    * This class is the base class dedicated to AMR using Adaptative Hierarchical Overlapped image Grid.
116    * This class does \b NOT inherit from MEDCouplingMesh because this class overlaps image grid structured meshes to perform adaptative mesh refinement.
117    * But this class aggregates MEDCouplingMesh instances !
118    */
119   class MEDCouplingCartesianAMRMeshGen : public RefCountObject, public TimeLabel
120   {
121   public:
122     MEDCOUPLING_EXPORT int getSpaceDimension() const;
123     MEDCOUPLING_EXPORT const std::vector<int>& getFactors() const { return _factors; }
124     MEDCOUPLING_EXPORT void setFactors(const std::vector<int>& newFactors);
125     MEDCOUPLING_EXPORT int getMaxNumberOfLevelsRelativeToThis() const;
126     MEDCOUPLING_EXPORT int getNumberOfCellsAtCurrentLevel() const;
127     MEDCOUPLING_EXPORT int getNumberOfCellsRecursiveWithOverlap() const;
128     MEDCOUPLING_EXPORT int getNumberOfCellsRecursiveWithoutOverlap() const;
129     MEDCOUPLING_EXPORT const MEDCouplingIMesh *getImageMesh() const { return _mesh; }
130     //
131     MEDCOUPLING_EXPORT const MEDCouplingCartesianAMRMeshGen *getFather() const;
132     MEDCOUPLING_EXPORT const MEDCouplingCartesianAMRMeshGen *getGodFather() const;
133     MEDCOUPLING_EXPORT int getAbsoluteLevel() const;
134     MEDCOUPLING_EXPORT std::vector<MEDCouplingCartesianAMRPatchGen *> retrieveGridsAt(int absoluteLev) const;
135     MEDCOUPLING_EXPORT void detachFromFather();
136     MEDCOUPLING_EXPORT void addPatch(const std::vector< std::pair<int,int> >& bottomLeftTopRight, const std::vector<int>& factors);
137     MEDCOUPLING_EXPORT void createPatchesFromCriterion(const INTERP_KERNEL::BoxSplittingOptions& bso, const std::vector<bool>& criterion, const std::vector<int>& factors);
138     MEDCOUPLING_EXPORT void createPatchesFromCriterion(const INTERP_KERNEL::BoxSplittingOptions& bso, const DataArrayByte *criterion, const std::vector<int>& factors);
139     MEDCOUPLING_EXPORT void removeAllPatches();
140     MEDCOUPLING_EXPORT void removePatch(int patchId);
141     MEDCOUPLING_EXPORT int getNumberOfPatches() const;
142     MEDCOUPLING_EXPORT const MEDCouplingCartesianAMRPatch *getPatch(int patchId) const;
143     MEDCOUPLING_EXPORT bool isPatchInNeighborhoodOf(int patchId1, int patchId2, int ghostLev) const;
144     MEDCOUPLING_EXPORT DataArrayDouble *createCellFieldOnPatch(int patchId, const DataArrayDouble *cellFieldOnThis) const;
145     MEDCOUPLING_EXPORT void fillCellFieldOnPatch(int patchId, const DataArrayDouble *cellFieldOnThis, DataArrayDouble *cellFieldOnPatch) const;
146     MEDCOUPLING_EXPORT void fillCellFieldOnPatchGhost(int patchId, const DataArrayDouble *cellFieldOnThis, DataArrayDouble *cellFieldOnPatch, int ghostLev) const;
147     MEDCOUPLING_EXPORT void fillCellFieldOnPatchGhostAdv(int patchId, const DataArrayDouble *cellFieldOnThis, int ghostLev, const std::vector<const DataArrayDouble *>& arrsOnPatches) const;
148     MEDCOUPLING_EXPORT void fillCellFieldOnPatchOnlyGhostAdv(int patchId, int ghostLev, const std::vector<const DataArrayDouble *>& arrsOnPatches) const;
149     MEDCOUPLING_EXPORT void fillCellFieldComingFromPatch(int patchId, const DataArrayDouble *cellFieldOnPatch, DataArrayDouble *cellFieldOnThis) const;
150     MEDCOUPLING_EXPORT void fillCellFieldComingFromPatchGhost(int patchId, const DataArrayDouble *cellFieldOnPatch, DataArrayDouble *cellFieldOnThis, int ghostLev) const;
151     MEDCOUPLING_EXPORT DataArrayInt *findPatchesInTheNeighborhoodOf(int patchId, int ghostLev) const;
152     //
153     MEDCOUPLING_EXPORT MEDCouplingUMesh *buildUnstructured() const;
154     MEDCOUPLING_EXPORT MEDCoupling1SGTUMesh *buildMeshFromPatchEnvelop() const;
155     MEDCOUPLING_EXPORT MEDCoupling1SGTUMesh *buildMeshOfDirectChildrenOnly() const;
156   protected:
157     MEDCouplingCartesianAMRMeshGen(const std::string& meshName, int spaceDim, const int *nodeStrctStart, const int *nodeStrctStop,
158                                    const double *originStart, const double *originStop, const double *dxyzStart, const double *dxyzStop);
159     MEDCouplingCartesianAMRMeshGen(MEDCouplingCartesianAMRMeshGen *father, MEDCouplingIMesh *mesh);
160     void checkPatchId(int patchId) const;
161     void checkFactorsAndIfNotSetAssign(const std::vector<int>& factors);
162     void retrieveGridsAtInternal(int lev, std::vector< MEDCouplingAutoRefCountObjectPtr<MEDCouplingCartesianAMRPatchGen> >& grids) const;
163     static void ApplyFactorsOnCompactFrmt(std::vector< std::pair<int,int> >& partBeforeFact, const std::vector<int>& factors);
164     static void ApplyGhostOnCompactFrmt(std::vector< std::pair<int,int> >& partBeforeFact, int ghostSize);
165     static void ApplyAllGhostOnCompactFrmt(std::vector< std::pair<int,int> >& partBeforeFact, int ghostSize);
166   protected:
167     MEDCOUPLING_EXPORT std::size_t getHeapMemorySizeWithoutChildren() const;
168     MEDCOUPLING_EXPORT std::vector<const BigMemoryObject *> getDirectChildren() const;
169     MEDCOUPLING_EXPORT void updateTime() const;
170   private:
171     MEDCouplingCartesianAMRMeshGen *_father;
172     MEDCouplingAutoRefCountObjectPtr<MEDCouplingIMesh> _mesh;
173     std::vector< MEDCouplingAutoRefCountObjectPtr<MEDCouplingCartesianAMRPatch> > _patches;
174     std::vector<int> _factors;
175   };
176
177   class MEDCouplingCartesianAMRMeshSub : public MEDCouplingCartesianAMRMeshGen
178   {
179   public:
180     MEDCouplingCartesianAMRMeshSub(MEDCouplingCartesianAMRMeshGen *father, MEDCouplingIMesh *mesh);
181   };
182
183   class MEDCouplingCartesianAMRMesh : public MEDCouplingCartesianAMRMeshGen
184   {
185   public:
186     MEDCOUPLING_EXPORT static MEDCouplingCartesianAMRMesh *New(const std::string& meshName, int spaceDim, const int *nodeStrctStart, const int *nodeStrctStop,
187                                                                const double *originStart, const double *originStop, const double *dxyzStart, const double *dxyzStop);
188     MEDCOUPLING_EXPORT const MEDCouplingDataForGodFather *getDataConst() const { return _data; }
189     MEDCOUPLING_EXPORT MEDCouplingDataForGodFather *getData() { return _data; }
190     MEDCOUPLING_EXPORT void setData(MEDCouplingDataForGodFather *data);
191     MEDCOUPLING_EXPORT void allocData() const;
192     MEDCOUPLING_EXPORT void deallocData() const;
193   private:
194     MEDCouplingCartesianAMRMesh(const std::string& meshName, int spaceDim, const int *nodeStrctStart, const int *nodeStrctStop,
195                                 const double *originStart, const double *originStop, const double *dxyzStart, const double *dxyzStop);
196     MEDCOUPLING_EXPORT std::vector<const BigMemoryObject *> getDirectChildren() const;
197     void checkData() const;
198     ~MEDCouplingCartesianAMRMesh();
199   private:
200     mutable MEDCouplingAutoRefCountObjectPtr<MEDCouplingDataForGodFather> _data;
201   };
202 }
203
204 #endif
205