]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Addition of time inside MEDCouplingMesh class 2.
authorageay <ageay>
Tue, 15 Feb 2011 16:22:10 +0000 (16:22 +0000)
committerageay <ageay>
Tue, 15 Feb 2011 16:22:10 +0000 (16:22 +0000)
src/MEDCoupling/MEDCouplingCMesh.cxx
src/MEDCoupling/MEDCouplingExtrudedMesh.cxx
src/MEDCoupling/MEDCouplingUMesh.cxx

index 07e8e3768fce3f8a480558a4b1d9b912835fd5cb..86acf1bcf0abe129a81d50513bca77d09b7831f1 100644 (file)
@@ -362,6 +362,10 @@ std::string MEDCouplingCMesh::simpleRepr() const
   std::ostringstream ret;
   ret << "Cartesian mesh with name : \"" << getName() << "\"\n";
   ret << "Description of mesh : \"" << getDescription() << "\"\n";
+  int tmpp1,tmpp2;
+  double tt=getTime(tmpp1,tmpp2);
+  ret << "Time attached to the mesh (unit) : " << tt << " (" << getTimeUnit() << ")\n";
+  ret << "Iteration : " << tmpp1  << " Order : " << tmpp2 << "\n";
   ret << "Mesh and SpaceDimension dimension : " << getSpaceDimension() << "\n\nArrays :\n________\n\n";
   if(_x_array)
     {
index b212ebbb21a0a879315accec7e67824aec748d64..0f0c418b244c389ff415923221c7ab070fb641e2 100644 (file)
@@ -258,6 +258,10 @@ std::string MEDCouplingExtrudedMesh::simpleRepr() const
   std::ostringstream ret;
   ret << "3D Extruded mesh from a 2D Surf Mesh with name : \"" << getName() << "\"\n";
   ret << "Description of mesh : \"" << getDescription() << "\"\n";
+  int tmpp1,tmpp2;
+  double tt=getTime(tmpp1,tmpp2);
+  ret << "Time attached to the mesh (unit) : " << tt << " (" << getTimeUnit() << ")\n";
+  ret << "Iteration : " << tmpp1  << " Order : " << tmpp2 << "\n";
   ret << "Cell id where 1D mesh has been deduced : " << _cell_2D_id << "\n";
   ret << "Number of cells : " << getNumberOfCells() << "(" << _mesh2D->getNumberOfCells() << "x" << _mesh1D->getNumberOfCells() << ")\n";
   ret << "1D Mesh info : _____________________\n\n\n";
@@ -271,6 +275,10 @@ std::string MEDCouplingExtrudedMesh::advancedRepr() const
   std::ostringstream ret;
   ret << "3D Extruded mesh from a 2D Surf Mesh with name : \"" << getName() << "\"\n";
   ret << "Description of mesh : \"" << getDescription() << "\"\n";
+  int tmpp1,tmpp2;
+  double tt=getTime(tmpp1,tmpp2);
+  ret << "Time attached to the mesh (unit) : " << tt << " (" << getTimeUnit() << ")\n";
+  ret << "Iteration : " << tmpp1  << " Order : " << tmpp2 << "\n";
   ret << "Cell id where 1D mesh has been deduced : " << _cell_2D_id << "\n";
   ret << "Number of cells : " << getNumberOfCells() << "(" << _mesh2D->getNumberOfCells() << "x" << _mesh1D->getNumberOfCells() << ")\n";
   ret << "1D Mesh info : _____________________\n\n\n";
index 8f3ad75e8be423f5bbe4737cfc0009f1d9255a92..3739c8b27237ee0df103a07e314d480293c6a23c 100644 (file)
@@ -1476,6 +1476,10 @@ std::string MEDCouplingUMesh::simpleRepr() const
   std::ostringstream ret;
   ret << "Unstructured mesh with name : \"" << getName() << "\"\n";
   ret << "Description of mesh : \"" << getDescription() << "\"\n";
+  int tmpp1,tmpp2;
+  double tt=getTime(tmpp1,tmpp2);
+  ret << "Time attached to the mesh (unit) : " << tt << " (" << getTimeUnit() << ")\n";
+  ret << "Iteration : " << tmpp1  << " Order : " << tmpp2 << "\n";
   ret << "Mesh dimension : " << _mesh_dim << "\nSpace dimension : ";
   if(_coords!=0)
     {