Salome HOME
Merge from BR_V5_DEV 16Feb09
[modules/med.git] / doc / MEDMEM / FIELDgeneral.cxx
1 //  Copyright (C) 2007-2008  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 using namespace std;
23 #include "MEDMEM_Mesh.hxx"
24 #include "MEDMEM_Field.hxx"
25
26 using namespace MEDMEM;
27 using namespace MED_EN ;
28
29 int main (int argc, char ** argv) {
30
31   const string MedFile = "pointe.med" ;
32   const string MeshName = "maa1" ;
33   const string FieldName = "fieldcelldoublevector" ;
34
35   /* read MESH */
36   MESH * myMesh = new MESH(MED_DRIVER,MedFile,MeshName) ;
37   //  myMesh->read() ;
38
39   /* read FIELD */
40   // we need a support :
41   SUPPORT * mySupport = new SUPPORT(myMesh,"Support on all Cells",MED_CELL);
42   FIELD<double> myField(mySupport,MED_DRIVER,MedFile,FieldName) ;
43   //  myField.read() ;
44
45   /* what in Field ? */
46   // How many components
47   int NumberOfCompoennts = myField.getNumberOfComponents() ;
48
49   const string * ComponentsNames = myField.getComponentsNames();
50   const string * ComponentsDescriptions = myField.getComponentsDescriptions();
51   const string * ComponentsUnits = myField.getMEDComponentsUnits();
52
53   for(int i=0;i<NumberOfCompoennts; i++) {
54     cout << "Component " << i << " :" <<endl ;
55     cout << "  - name        : " << ComponentsNames[i] << endl ;
56     cout << "  - description : " << ComponentsDescriptions[i] << endl ;
57     cout << "  - unit        : " << ComponentsUnits[i] << endl ;
58   }
59
60   // Which iteration :
61   int IterationNumber = myField.getIterationNumber() ; // negative mean undefined
62   int OrderNumber = myField.getOrderNumber() ;
63   // internal iteration at this time iteration, negative mean undefined
64   double Time = myField.getTime() ;
65
66   cout << "Iteration " << IterationNumber << " at time " << Time <<
67     " (and order number " << OrderNumber << ")" << endl ;
68
69   // How many Value :
70   int NumberOfValue = mySupport->getNumberOfElements(MED_ALL_ELEMENTS);
71   // Value
72   const double * Value = myField.getValue();
73   for(int i=0; i<NumberOfValue; i++) {
74     for(int j=0; j<NumberOfCompoennts; j++)
75       cout << Value[i*NumberOfCompoennts+j] << " " ;
76     cout << endl ;
77   }
78
79   delete mySupport;
80   delete myMesh;
81
82   return 0 ;
83 }