]> SALOME platform Git repositories - tools/medcoupling.git/blob - doc/MEDMEM/FIELDgeneral.cxx
Salome HOME
Merge from V6_main 01/04/2013
[tools/medcoupling.git] / doc / MEDMEM / FIELDgeneral.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 using namespace std;
24 #include "MEDMEM_Mesh.hxx"
25 #include "MEDMEM_Field.hxx"
26
27 using namespace MEDMEM;
28 using namespace MED_EN ;
29
30 int main (int argc, char ** argv) {
31
32   const string MedFile = "pointe.med" ;
33   const string MeshName = "maa1" ;
34   const string FieldName = "fieldcelldoublevector" ;
35
36   /* read MESH */
37   MESH * myMesh = new MESH(MED_DRIVER,MedFile,MeshName) ;
38   //  myMesh->read() ;
39
40   /* read FIELD */
41   // we need a support :
42   const SUPPORT * mySupport = myMesh->getSupportOnAll(MED_CELL);
43   FIELD<double> myField(mySupport,MED_DRIVER,MedFile,FieldName) ;
44   //  myField.read() ;
45
46   /* what in Field ? */
47   // How many components
48   int NumberOfCompoennts = myField.getNumberOfComponents() ;
49
50   const string * ComponentsNames = myField.getComponentsNames();
51   const string * ComponentsDescriptions = myField.getComponentsDescriptions();
52   const string * ComponentsUnits = myField.getMEDComponentsUnits();
53
54   for(int i=0;i<NumberOfCompoennts; i++) {
55     cout << "Component " << i << " :" <<endl ;
56     cout << "  - name        : " << ComponentsNames[i] << endl ;
57     cout << "  - description : " << ComponentsDescriptions[i] << endl ;
58     cout << "  - unit        : " << ComponentsUnits[i] << endl ;
59   }
60
61   // Which iteration :
62   int IterationNumber = myField.getIterationNumber() ; // negative mean undefined
63   int OrderNumber = myField.getOrderNumber() ;
64   // internal iteration at this time iteration, negative mean undefined
65   double Time = myField.getTime() ;
66
67   cout << "Iteration " << IterationNumber << " at time " << Time <<
68     " (and order number " << OrderNumber << ")" << endl ;
69
70   // How many Value :
71   int NumberOfValue = mySupport->getNumberOfElements(MED_ALL_ELEMENTS);
72   // Value
73   const double * Value = myField.getValue();
74   for(int i=0; i<NumberOfValue; i++) {
75     for(int j=0; j<NumberOfCompoennts; j++)
76       cout << Value[i*NumberOfCompoennts+j] << " " ;
77     cout << endl ;
78   }
79
80   myMesh->removeReference();
81
82   return 0 ;
83 }