Salome HOME
Target MEDReader
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingStructuredMesh.cxx
1 // Copyright (C) 2007-2013  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.
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 (CEA/DEN)
20
21 #include "MEDCouplingStructuredMesh.hxx"
22 #include "MEDCouplingFieldDouble.hxx"
23 #include "MEDCouplingMemArray.hxx"
24 #include "MEDCoupling1GTUMesh.hxx"
25 #include "MEDCouplingUMesh.hxx"
26
27 #include <numeric>
28
29 using namespace ParaMEDMEM;
30
31 MEDCouplingStructuredMesh::MEDCouplingStructuredMesh()
32 {
33 }
34
35 MEDCouplingStructuredMesh::MEDCouplingStructuredMesh(const MEDCouplingStructuredMesh& other, bool deepCopy):MEDCouplingMesh(other)
36 {
37 }
38
39 MEDCouplingStructuredMesh::~MEDCouplingStructuredMesh()
40 {
41 }
42
43 std::size_t MEDCouplingStructuredMesh::getHeapMemorySize() const
44 {
45   return MEDCouplingMesh::getHeapMemorySize();
46 }
47
48 void MEDCouplingStructuredMesh::copyTinyStringsFrom(const MEDCouplingMesh *other) throw(INTERP_KERNEL::Exception)
49 {
50   MEDCouplingMesh::copyTinyStringsFrom(other);
51 }
52
53 bool MEDCouplingStructuredMesh::isEqualIfNotWhy(const MEDCouplingMesh *other, double prec, std::string& reason) const throw(INTERP_KERNEL::Exception)
54 {
55   return MEDCouplingMesh::isEqualIfNotWhy(other,prec,reason);
56 }
57
58 INTERP_KERNEL::NormalizedCellType MEDCouplingStructuredMesh::getTypeOfCell(int cellId) const
59 {
60   return GetGeoTypeGivenMeshDimension(getMeshDimension());
61 }
62
63 INTERP_KERNEL::NormalizedCellType MEDCouplingStructuredMesh::GetGeoTypeGivenMeshDimension(int meshDim) throw(INTERP_KERNEL::Exception)
64 {
65   switch(meshDim)
66     {
67     case 3:
68       return INTERP_KERNEL::NORM_HEXA8;
69     case 2:
70       return INTERP_KERNEL::NORM_QUAD4;
71     case 1:
72       return INTERP_KERNEL::NORM_SEG2;
73     default:
74       throw INTERP_KERNEL::Exception("Unexpected dimension for MEDCouplingStructuredMesh::GetGeoTypeGivenMeshDimension !");
75     }
76 }
77
78 std::set<INTERP_KERNEL::NormalizedCellType> MEDCouplingStructuredMesh::getAllGeoTypes() const
79 {
80   std::set<INTERP_KERNEL::NormalizedCellType> ret2;
81   ret2.insert(getTypeOfCell(0));
82   return ret2;
83 }
84
85 int MEDCouplingStructuredMesh::getNumberOfCellsWithType(INTERP_KERNEL::NormalizedCellType type) const
86 {
87   int ret=getNumberOfCells();
88   if(type==getTypeOfCell(0))
89     return ret;
90   const INTERP_KERNEL::CellModel& cm=INTERP_KERNEL::CellModel::GetCellModel(getTypeOfCell(0));
91   std::ostringstream oss; oss << "MEDCouplingStructuredMesh::getNumberOfCellsWithType : no specified type ! Type available is " << cm.getRepr() << " !";
92   throw INTERP_KERNEL::Exception(oss.str().c_str());
93 }
94
95 DataArrayInt *MEDCouplingStructuredMesh::giveCellsWithType(INTERP_KERNEL::NormalizedCellType type) const throw(INTERP_KERNEL::Exception)
96 {
97   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> ret=DataArrayInt::New();
98   if(getTypeOfCell(0)==type)
99     {
100       ret->alloc(getNumberOfCells(),1);
101       ret->iota(0);
102     }
103   else
104     ret->alloc(0,1);
105   return ret.retn();
106 }
107
108 DataArrayInt *MEDCouplingStructuredMesh::computeNbOfNodesPerCell() const throw(INTERP_KERNEL::Exception)
109 {
110   int nbCells=getNumberOfCells();
111   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> ret=DataArrayInt::New();
112   ret->alloc(nbCells,1);
113   const INTERP_KERNEL::CellModel& cm=INTERP_KERNEL::CellModel::GetCellModel(getTypeOfCell(0));
114   ret->fillWithValue((int)cm.getNumberOfNodes());
115   return ret.retn();
116 }
117
118 DataArrayInt *MEDCouplingStructuredMesh::computeNbOfFacesPerCell() const throw(INTERP_KERNEL::Exception)
119 {
120   int nbCells=getNumberOfCells();
121   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> ret=DataArrayInt::New();
122   ret->alloc(nbCells,1);
123   const INTERP_KERNEL::CellModel& cm=INTERP_KERNEL::CellModel::GetCellModel(getTypeOfCell(0));
124   ret->fillWithValue((int)cm.getNumberOfSons());
125   return ret.retn();
126 }
127
128 void MEDCouplingStructuredMesh::getNodeIdsOfCell(int cellId, std::vector<int>& conn) const
129 {
130   int meshDim=getMeshDimension();
131   int tmpCell[3],tmpNode[3];
132   getSplitCellValues(tmpCell);
133   getSplitNodeValues(tmpNode);
134   int tmp2[3];
135   GetPosFromId(cellId,meshDim,tmpCell,tmp2);
136   switch(meshDim)
137     {
138     case 1:
139       conn.push_back(tmp2[0]); conn.push_back(tmp2[0]+1);
140       break;
141     case 2:
142       conn.push_back(tmp2[1]*tmpCell[1]+tmp2[0]); conn.push_back(tmp2[1]*tmpCell[1]+tmp2[0]+1);
143       conn.push_back((tmp2[1]+1)*(tmpCell[1]+1)+tmp2[0]+1); conn.push_back((tmp2[1]+1)*(tmpCell[1]+1)+tmp2[0]);
144       break;
145     case 3:
146       conn.push_back(tmp2[1]*tmpCell[1]+tmp2[0]+tmp2[2]*tmpNode[2]); conn.push_back(tmp2[1]*tmpCell[1]+tmp2[0]+1+tmp2[2]*tmpNode[2]);
147       conn.push_back((tmp2[1]+1)*tmpNode[1]+tmp2[0]+1+tmp2[2]*tmpNode[2]); conn.push_back((tmp2[1]+1)*tmpNode[1]+tmp2[0]+tmp2[2]*tmpNode[2]);
148       conn.push_back(tmp2[1]*tmpCell[1]+tmp2[0]+(tmp2[2]+1)*tmpNode[2]); conn.push_back(tmp2[1]*tmpCell[1]+tmp2[0]+1+(tmp2[2]+1)*tmpNode[2]);
149       conn.push_back((tmp2[1]+1)*tmpNode[1]+tmp2[0]+1+(tmp2[2]+1)*tmpNode[2]); conn.push_back((tmp2[1]+1)*tmpNode[1]+tmp2[0]+(tmp2[2]+1)*tmpNode[2]);
150       break;
151     default:
152       throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::getNodeIdsOfCell : big problem spacedim must be in 1,2 or 3 !");
153     };
154 }
155
156 /*!
157  * See MEDCouplingUMesh::getDistributionOfTypes for more information
158  */
159 std::vector<int> MEDCouplingStructuredMesh::getDistributionOfTypes() const throw(INTERP_KERNEL::Exception)
160 {
161   //only one type of cell
162   std::vector<int> ret(3);
163   ret[0]=getTypeOfCell(0);
164   ret[1]=getNumberOfCells();
165   ret[2]=-1; //ret[3*k+2]==-1 because it has no sense here
166   return ret;
167 }
168
169 /*!
170  * This method tries to minimize at most the number of deep copy.
171  * So if \a idsPerType is not empty it can be returned directly (without copy, but with ref count incremented) in return.
172  * 
173  * See MEDCouplingUMesh::checkTypeConsistencyAndContig for more information
174  */
175 DataArrayInt *MEDCouplingStructuredMesh::checkTypeConsistencyAndContig(const std::vector<int>& code, const std::vector<const DataArrayInt *>& idsPerType) const throw(INTERP_KERNEL::Exception)
176 {
177   int nbOfCells=getNumberOfCells();
178   if(code.size()!=3)
179     throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::checkTypeConsistencyAndContig : invalid input code should be exactly of size 3 !");
180   if(code[0]!=(int)getTypeOfCell(0))
181     {
182       std::ostringstream oss; oss << "MEDCouplingStructuredMesh::checkTypeConsistencyAndContig : Mismatch of geometric type ! Asking for " << code[0] << " whereas the geometric type is \a this is " << getTypeOfCell(0) << " !";
183       throw INTERP_KERNEL::Exception(oss.str().c_str());
184     }
185   if(code[2]==-1)
186     {
187       if(code[1]==nbOfCells)
188         return 0;
189       else
190         {
191           std::ostringstream oss; oss << "MEDCouplingStructuredMesh::checkTypeConsistencyAndContig : mismatch between the number of cells in this (" << nbOfCells << ") and the number of non profile (" << code[1] << ") !";
192           throw INTERP_KERNEL::Exception(oss.str().c_str());
193         }
194     }
195   if(code[2]!=0)
196     throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::checkTypeConsistencyAndContig : single geo type mesh ! 0 or -1 is expected at pos #2 of input code !");
197   if(idsPerType.size()!=1)
198     throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::checkTypeConsistencyAndContig : input code points to DataArrayInt #0 whereas the size of idsPerType is not equal to 1 !");
199   const DataArrayInt *pfl=idsPerType[0];
200   if(!pfl)
201     throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::checkTypeConsistencyAndContig : the input code points to a NULL DataArrayInt at rank 0 !");
202   if(pfl->getNumberOfComponents()!=1)
203     throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::checkTypeConsistencyAndContig : input profile should have exactly one component !");
204   pfl->checkAllIdsInRange(0,nbOfCells);
205   pfl->incrRef();
206   return const_cast<DataArrayInt *>(pfl);
207 }
208
209 /*!
210  * This method is the opposite of MEDCouplingUMesh::checkTypeConsistencyAndContig method. Given a list of cells in \a profile it returns a list of sub-profiles sorted by geo type.
211  * The result is put in the array \a idsPerType. In the returned parameter \a code, foreach i \a code[3*i+2] refers (if different from -1) to a location into the \a idsPerType.
212  * This method has 1 input \a profile and 3 outputs \a code \a idsInPflPerType and \a idsPerType.
213  * 
214  * \param [out] code is a vector of size 3*n where n is the number of different geometric type in \a this \b reduced to the profile \a profile. \a code has exactly the same semantic than in MEDCouplingUMesh::checkTypeConsistencyAndContig method.
215  * \param [out] idsInPflPerType is a vector of size of different geometric type in the subpart defined by \a profile of \a this ( equal to \a code.size()/3). For each i,
216  *              \a idsInPflPerType[i] stores the tuple ids in \a profile that correspond to the geometric type code[3*i+0]
217  * \param [out] idsPerType is a vector of size of different sub profiles needed to be defined to represent the profile \a profile for a given geometric type.
218  *              This vector can be empty in case of all geometric type cells are fully covered in ascending in the given input \a profile.
219  * 
220  * \warning for performance reasons no deep copy will be performed, if \a profile can been used as this in output parameters \a idsInPflPerType and \a idsPerType.
221  *
222  * \throw if \a profile has not exactly one component. It throws too, if \a profile contains some values not in [0,getNumberOfCells()) or if \a this is not fully defined
223  *
224  *  \b Example1: <br>
225  *          - Before \a this has 3 cells \a profile contains [0,1,2]
226  *          - After \a code contains [NORM_...,nbCells,-1], \a idsInPflPerType [[0,1,2]] and \a idsPerType is empty <br>
227  * 
228  *  \b Example2: <br>
229  *          - Before \a this has 3 cells \a profile contains [1,2]
230  *          - After \a code contains [NORM_...,nbCells,0], \a idsInPflPerType [[0,1]] and \a idsPerType is [[1,2]] <br>
231
232  */
233 void MEDCouplingStructuredMesh::splitProfilePerType(const DataArrayInt *profile, std::vector<int>& code, std::vector<DataArrayInt *>& idsInPflPerType, std::vector<DataArrayInt *>& idsPerType) const throw(INTERP_KERNEL::Exception)
234 {
235   if(!profile)
236     throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::splitProfilePerType : input profile is NULL !");
237   if(profile->getNumberOfComponents()!=1)
238     throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::splitProfilePerType : input profile should have exactly one component !");
239   int nbTuples=profile->getNumberOfTuples();
240   int nbOfCells=getNumberOfCells();
241   code.resize(3); idsInPflPerType.resize(1);
242   code[0]=(int)getTypeOfCell(0); code[1]=nbOfCells;
243   idsInPflPerType.resize(1);
244   if(profile->isIdentity() && nbTuples==nbOfCells)
245     {
246       code[2]=-1;
247       idsInPflPerType[0]=const_cast<DataArrayInt *>(profile); idsInPflPerType[0]->incrRef();
248       idsPerType.clear(); 
249     }
250   code[2]=0;
251   profile->checkAllIdsInRange(0,nbOfCells);
252   idsPerType.resize(1);
253   idsPerType[0]=const_cast<DataArrayInt *>(profile); idsPerType[0]->incrRef();
254   idsInPflPerType[0]=DataArrayInt::Range(0,nbTuples,1);
255 }
256
257 /*!
258  * Creates a new unstructured mesh (MEDCoupling1SGTUMesh) from \a this structured one.
259  *  \return MEDCouplingUMesh * - a new instance of MEDCouplingUMesh. The caller is to
260  * delete this array using decrRef() as it is no more needed. 
261  *  \throw If \a this->getMeshDimension() is not among [1,2,3].
262  */
263 MEDCoupling1SGTUMesh *MEDCouplingStructuredMesh::build1SGTUnstructured() const throw(INTERP_KERNEL::Exception)
264 {
265   int meshDim=getMeshDimension(); 
266   if(meshDim<0 || meshDim>3)
267     throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::build1SGTUnstructured : meshdim must be in [1,2,3] !");
268   MEDCouplingAutoRefCountObjectPtr<DataArrayDouble> coords(getCoordinatesAndOwner());
269   int ns[3];
270   getNodeGridStructure(ns);
271   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> conn(Build1GTNodalConnectivity(ns,ns+meshDim));
272   MEDCouplingAutoRefCountObjectPtr<MEDCoupling1SGTUMesh> ret(MEDCoupling1SGTUMesh::New(getName().c_str(),GetGeoTypeGivenMeshDimension(meshDim)));
273   ret->setNodalConnectivity(conn); ret->setCoords(coords);
274   return ret.retn();
275 }
276
277 /*!
278  * Creates a new unstructured mesh (MEDCouplingUMesh) from \a this structured one.
279  *  \return MEDCouplingUMesh * - a new instance of MEDCouplingUMesh. The caller is to
280  * delete this array using decrRef() as it is no more needed. 
281  *  \throw If \a this->getMeshDimension() is not among [1,2,3].
282  */
283 MEDCouplingUMesh *MEDCouplingStructuredMesh::buildUnstructured() const throw(INTERP_KERNEL::Exception)
284 {
285   return build1SGTUnstructured()->buildUnstructured();
286 }
287
288 /*!
289  * Creates a new MEDCouplingUMesh containing a part of cells of \a this mesh.
290  * The cells to include to the
291  * result mesh are specified by an array of cell ids.
292  *  \param [in] start - an array of cell ids to include to the result mesh.
293  *  \param [in] end - specifies the end of the array \a start, so that
294  *              the last value of \a start is \a end[ -1 ].
295  *  \return MEDCouplingMesh * - a new instance of MEDCouplingUMesh. The caller is to
296  *         delete this mesh using decrRef() as it is no more needed. 
297  */
298 MEDCouplingMesh *MEDCouplingStructuredMesh::buildPart(const int *start, const int *end) const
299 {
300   MEDCouplingUMesh *um=buildUnstructured();
301   MEDCouplingMesh *ret=um->buildPart(start,end);
302   um->decrRef();
303   return ret;
304 }
305
306 MEDCouplingMesh *MEDCouplingStructuredMesh::buildPartAndReduceNodes(const int *start, const int *end, DataArrayInt*& arr) const
307 {
308   std::vector<int> cgs(getCellGridStructure());
309   std::vector< std::pair<int,int> > cellPartFormat,nodePartFormat;
310   if(IsPartStructured(start,end,cgs,cellPartFormat))
311     {
312       MEDCouplingAutoRefCountObjectPtr<MEDCouplingStructuredMesh> ret(buildStructuredSubPart(cellPartFormat));
313       nodePartFormat=cellPartFormat;
314       for(std::vector< std::pair<int,int> >::iterator it=nodePartFormat.begin();it!=nodePartFormat.end();it++)
315         (*it).second++;
316       MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp1(BuildExplicitIdsFrom(getNodeGridStructure(),nodePartFormat));
317       MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp2(DataArrayInt::New()); tmp2->alloc(getNumberOfNodes(),1);
318       tmp2->fillWithValue(-1);
319       MEDCouplingAutoRefCountObjectPtr<DataArrayInt> tmp3(DataArrayInt::New()); tmp3->alloc(tmp1->getNumberOfTuples(),1); tmp3->iota(0);
320       tmp2->setPartOfValues3(tmp3,tmp1->begin(),tmp1->end(),0,1,1);
321       arr=tmp2.retn();
322       return ret.retn();
323     }
324   else
325     {
326       MEDCouplingUMesh *um=buildUnstructured();
327       MEDCouplingMesh *ret=um->buildPartAndReduceNodes(start,end,arr);
328       um->decrRef();
329       return ret;
330     }
331 }
332
333 DataArrayInt *MEDCouplingStructuredMesh::simplexize(int policy) throw(INTERP_KERNEL::Exception)
334 {
335   throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::simplexize : not available for Cartesian mesh !");
336 }
337
338 /*!
339  * Returns a new MEDCouplingFieldDouble holding normal vectors to cells of \a this
340  * 2D mesh. The computed vectors have 3 components and are normalized.
341  *  \return MEDCouplingFieldDouble * - a new instance of MEDCouplingFieldDouble on
342  *          cells and one time. The caller is to delete this field using decrRef() as
343  *          it is no more needed.
344  *  \throw If \a this->getMeshDimension() != 2.
345  */
346 MEDCouplingFieldDouble *MEDCouplingStructuredMesh::buildOrthogonalField() const
347 {
348   if(getMeshDimension()!=2)
349     throw INTERP_KERNEL::Exception("Expected a MEDCouplingStructuredMesh with meshDim == 2 !");
350   MEDCouplingFieldDouble *ret=MEDCouplingFieldDouble::New(ON_CELLS,NO_TIME);
351   DataArrayDouble *array=DataArrayDouble::New();
352   int nbOfCells=getNumberOfCells();
353   array->alloc(nbOfCells,3);
354   double *vals=array->getPointer();
355   for(int i=0;i<nbOfCells;i++)
356     { vals[3*i]=0.; vals[3*i+1]=0.; vals[3*i+2]=1.; }
357   ret->setArray(array);
358   array->decrRef();
359   ret->setMesh(this);
360   return ret;
361 }
362
363 /*!
364  * \return DataArrayInt * - newly allocated instance of nodal connectivity compatible for MEDCoupling1SGTMesh instance
365  */
366 DataArrayInt *MEDCouplingStructuredMesh::Build1GTNodalConnectivity(const int *nodeStBg, const int *nodeStEnd) throw(INTERP_KERNEL::Exception)
367 {
368   std::size_t dim=std::distance(nodeStBg,nodeStEnd);
369   switch(dim)
370     {
371     case 1:
372       return Build1GTNodalConnectivity1D(nodeStBg);
373     case 2:
374       return Build1GTNodalConnectivity2D(nodeStBg);
375     case 3:
376       return Build1GTNodalConnectivity3D(nodeStBg);
377     default:
378       throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::Build1GTNodalConnectivity : only dimension in [1,2,3] supported !");
379     }
380 }
381
382 DataArrayInt *MEDCouplingStructuredMesh::Build1GTNodalConnectivity1D(const int *nodeStBg) throw(INTERP_KERNEL::Exception)
383 {
384   int nbOfCells(*nodeStBg-1);
385   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> conn(DataArrayInt::New());
386   conn->alloc(2*nbOfCells,1);
387   int *cp=conn->getPointer();
388   for(int i=0;i<nbOfCells;i++)
389     {
390       cp[2*i+0]=i;
391       cp[2*i+1]=i+1;
392     }
393   return conn.retn();
394 }
395
396 DataArrayInt *MEDCouplingStructuredMesh::Build1GTNodalConnectivity2D(const int *nodeStBg) throw(INTERP_KERNEL::Exception)
397 {
398   int n1=nodeStBg[0]-1;
399   int n2=nodeStBg[1]-1;
400   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> conn(DataArrayInt::New());
401   conn->alloc(4*n1*n2,1);
402   int *cp=conn->getPointer();
403   int pos=0;
404   for(int j=0;j<n2;j++)
405     for(int i=0;i<n1;i++,pos++)
406       {
407         cp[4*pos+0]=i+1+j*(n1+1);
408         cp[4*pos+1]=i+j*(n1+1);
409         cp[4*pos+2]=i+(j+1)*(n1+1);
410         cp[4*pos+3]=i+1+(j+1)*(n1+1);
411     }
412   return conn.retn();
413 }
414
415 DataArrayInt *MEDCouplingStructuredMesh::Build1GTNodalConnectivity3D(const int *nodeStBg) throw(INTERP_KERNEL::Exception)
416 {
417   int n1=nodeStBg[0]-1;
418   int n2=nodeStBg[1]-1;
419   int n3=nodeStBg[2]-1;
420   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> conn(DataArrayInt::New());
421   conn->alloc(8*n1*n2*n3,1);
422   int *cp=conn->getPointer();
423   int pos=0;
424   for(int k=0;k<n3;k++)
425     for(int j=0;j<n2;j++)
426       for(int i=0;i<n1;i++,pos++)
427         {
428           int tmp=(n1+1)*(n2+1);
429           cp[8*pos+0]=i+1+j*(n1+1)+k*tmp;
430           cp[8*pos+1]=i+j*(n1+1)+k*tmp;
431           cp[8*pos+2]=i+(j+1)*(n1+1)+k*tmp;
432           cp[8*pos+3]=i+1+(j+1)*(n1+1)+k*tmp;
433           cp[8*pos+4]=i+1+j*(n1+1)+(k+1)*tmp;
434           cp[8*pos+5]=i+j*(n1+1)+(k+1)*tmp;
435           cp[8*pos+6]=i+(j+1)*(n1+1)+(k+1)*tmp;
436           cp[8*pos+7]=i+1+(j+1)*(n1+1)+(k+1)*tmp;
437         }
438   return conn.retn();
439 }
440
441 /*!
442  * Returns a cell id by its (i,j,k) index. The cell is located between the i-th and
443  * ( i + 1 )-th nodes along X axis etc.
444  *  \param [in] i - a index of node coordinates array along X axis.
445  *  \param [in] j - a index of node coordinates array along Y axis.
446  *  \param [in] k - a index of node coordinates array along Z axis.
447  *  \return int - a cell id in \a this mesh.
448  */
449 int MEDCouplingStructuredMesh::getCellIdFromPos(int i, int j, int k) const
450 {
451   int tmp[3]={i,j,k};
452   int tmp2[3];
453   int meshDim=getMeshDimension();
454   getSplitCellValues(tmp2);
455   std::transform(tmp,tmp+meshDim,tmp2,tmp,std::multiplies<int>());
456   return std::accumulate(tmp,tmp+meshDim,0);
457 }
458
459 /*!
460  * Returns a node id by its (i,j,k) index.
461  *  \param [in] i - a index of node coordinates array along X axis.
462  *  \param [in] j - a index of node coordinates array along Y axis.
463  *  \param [in] k - a index of node coordinates array along Z axis.
464  *  \return int - a node id in \a this mesh.
465  */
466 int MEDCouplingStructuredMesh::getNodeIdFromPos(int i, int j, int k) const
467 {
468   int tmp[3]={i,j,k};
469   int tmp2[3];
470   int meshDim=getMeshDimension();
471   getSplitNodeValues(tmp2);
472   std::transform(tmp,tmp+meshDim,tmp2,tmp,std::multiplies<int>());
473   return std::accumulate(tmp,tmp+meshDim,0);
474 }
475
476 void MEDCouplingStructuredMesh::GetPosFromId(int nodeId, int meshDim, const int *split, int *res)
477 {
478   int work=nodeId;
479   for(int i=meshDim-1;i>=0;i--)
480     {
481       int pos=work/split[i];
482       work=work%split[i];
483       res[i]=pos;
484     }
485 }
486
487 std::vector<int> MEDCouplingStructuredMesh::getCellGridStructure() const throw(INTERP_KERNEL::Exception)
488 {
489   std::vector<int> ret(getNodeGridStructure());
490   std::transform(ret.begin(),ret.end(),ret.begin(),std::bind2nd(std::plus<int>(),-1));
491   return ret;
492 }
493
494 /*!
495  * This method states if given part ids [ \a startIds, \a stopIds) and a structure \a st returns if it can be considered as a structured dataset.
496  * If true is returned \a partCompactFormat will contain the information to build the corresponding part.
497  *
498  * \sa MEDCouplingStructuredMesh::BuildExplicitIdsFrom
499  */
500 bool MEDCouplingStructuredMesh::IsPartStructured(const int *startIds, const int *stopIds, const std::vector<int>& st, std::vector< std::pair<int,int> >& partCompactFormat) throw(INTERP_KERNEL::Exception)
501 {
502   int dim((int)st.size());
503   partCompactFormat.resize(dim);
504   if(dim<1 || dim>3)
505     throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::isPartStructured : input structure must be of dimension in [1,2,3] !");
506   std::vector<int> tmp2(dim),tmp(dim),tmp3(dim),tmp4(dim); tmp2[0]=1;
507   for(int i=1;i<dim;i++)
508     tmp2[i]=tmp2[i-1]*st[i-1];
509   std::size_t sz(std::distance(startIds,stopIds));
510   if(sz==0)
511     throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::IsPartStructured : empty input !");
512   GetPosFromId(*startIds,dim,&tmp2[0],&tmp[0]);
513   partCompactFormat.resize(dim);
514   for(int i=0;i<dim;i++)
515     partCompactFormat[i].first=tmp[i];
516   if(tmp[dim-1]<0 || tmp[dim-1]>=st[dim-1])
517     throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::IsPartStructured : first id in input is not in valid range !");
518   if(sz==1)
519     {
520       for(int i=0;i<dim;i++)
521         partCompactFormat[i].second=tmp[i]+1;
522       return true;
523     }
524   GetPosFromId(startIds[sz-1],dim,&tmp2[0],&tmp3[0]);
525   int szExp(1);
526   for(int i=0;i<dim;i++)
527     {
528       if(tmp3[i]<0 || tmp3[i]>=st[i])
529         throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::IsPartStructured : last id in input is not in valid range !");
530       partCompactFormat[i].second=tmp3[i]+1;
531       tmp4[i]=partCompactFormat[i].second-partCompactFormat[i].first;
532       if(tmp4[i]<=0)
533         return false;
534       szExp*=tmp4[i];
535     }
536   if(szExp!=(int)sz)
537     return false;
538   const int *w(startIds);
539   switch(dim)
540     {
541     case 3:
542       {
543         for(int i=0;i<tmp4[2];i++)
544           {
545             int a=tmp2[2]*(partCompactFormat[2].first+i);
546             for(int j=0;j<tmp4[1];j++)
547               {
548                 int b=tmp2[1]*(partCompactFormat[1].first+j);
549                 for(int k=0;k<tmp4[0];k++,w++)
550                   {
551                     if(partCompactFormat[0].first+k+b+a!=*w)
552                       return false;
553                   }
554               }
555           }
556         return true;
557       }
558     case 2:
559       {
560         for(int j=0;j<tmp4[1];j++)
561           {
562             int b=tmp2[1]*(partCompactFormat[1].first+j);
563             for(int k=0;k<tmp4[0];k++,w++)
564               {
565                 if(partCompactFormat[0].first+k+b!=*w)
566                   return false;
567               }
568           }
569         return true;
570       }
571     case 1:
572       {
573         for(int k=0;k<tmp4[0];k++,w++)
574           {
575             if(partCompactFormat[0].first+k!=*w)
576               return false;
577           }
578         return true;
579       }
580     default:
581       throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::IsPartStructured : internal error !");
582     }
583 }
584
585 /*!
586  * This method builds the explicit entity array from the structure in \a st and the range in \a partCompactFormat.
587  *If the range contains invalid values regarding sructure an exception will be thrown.
588  *
589  * \return DataArrayInt * - a new object.
590  * \sa MEDCouplingStructuredMesh::IsPartStructured
591  */
592 DataArrayInt *MEDCouplingStructuredMesh::BuildExplicitIdsFrom(const std::vector<int>& st, const std::vector< std::pair<int,int> >& partCompactFormat) throw(INTERP_KERNEL::Exception)
593 {
594   if(st.size()!=partCompactFormat.size())
595     throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::BuildExplicitIdsFrom : input arrays must have the same size !");
596   int nbOfItems(1);
597   std::vector<int> dims(st.size());
598   for(std::size_t i=0;i<st.size();i++)
599     {
600       if(partCompactFormat[i].first<0 || partCompactFormat[i].first>st[i])
601         throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::BuildExplicitIdsFrom : invalid input range 1 !");
602       if(partCompactFormat[i].second<0 || partCompactFormat[i].second>st[i])
603         throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::BuildExplicitIdsFrom : invalid input range 2 !");
604       if(partCompactFormat[i].second<=partCompactFormat[i].first)
605         throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::BuildExplicitIdsFrom : invalid input range 3 !");
606       dims[i]=partCompactFormat[i].second-partCompactFormat[i].first;
607       nbOfItems*=dims[i];
608     }
609   MEDCouplingAutoRefCountObjectPtr<DataArrayInt> ret(DataArrayInt::New());
610   ret->alloc(nbOfItems,1);
611   int *pt(ret->getPointer());
612   switch(st.size())
613     {
614     case 3:
615       {
616         for(int i=0;i<dims[2];i++)
617           {
618             int a=(partCompactFormat[2].first+i)*st[0]*st[1];
619             for(int j=0;j<dims[1];j++)
620               {
621                 int b=(partCompactFormat[1].first+j)*st[0];
622                 for(int k=0;k<dims[0];k++,pt++)
623                   *pt=partCompactFormat[0].first+k+b+a;
624               }
625           }
626         break;
627       }
628     case 2:
629       {
630         for(int j=0;j<dims[1];j++)
631           {
632             int b=(partCompactFormat[1].first+j)*st[0];
633             for(int k=0;k<dims[0];k++,pt++)
634               *pt=partCompactFormat[0].first+k+b;
635           }
636         break;
637       }
638     case 1:
639       {
640         for(int k=0;k<dims[0];k++,pt++)
641           *pt=partCompactFormat[0].first+k;
642         break;
643       }
644     default:
645       throw INTERP_KERNEL::Exception("MEDCouplingStructuredMesh::BuildExplicitIdsFrom : Dimension supported are 1,2 or 3 !");
646     }
647   return ret.retn();
648 }