]> SALOME platform Git repositories - tools/paravisaddons_common.git/blob - src/ElectromagnetismStreamTraceur/scripts/generate.py
Salome HOME
initial commit from paravisaddons
[tools/paravisaddons_common.git] / src / ElectromagnetismStreamTraceur / scripts / generate.py
1 # Copyright (C) 2021  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
20 from medcoupling import *
21
22 arr = DataArrayDouble([0,1,2,3,4,5,6,7,8,9,10])
23 m = MEDCouplingCMesh()
24 m.setCoords(arr,arr,arr)
25 m = m.buildUnstructured()
26 #m.simplexize(0)
27 m.changeSpaceDimension(3,0.)
28 m.setName("mesh")
29 f = MEDCouplingFieldDouble(ON_CELLS)
30 f.setMesh(m)
31 f.setName("field")
32 arrf = DataArrayDouble(10*10*10,3)
33 arrf[:,0] = 1 ; arrf[:,1] = 0 ; arrf[:,2] = 0
34 f.setArray( arrf )
35 f.getArray().setInfoOnComponents(["X","Y","Z"])
36 f.checkConsistencyLight()
37 f.write("test.med")
38 f2 = f.deepCopy()
39 arrf2 = DataArrayDouble(10*10*10,3)
40 arrf2[:,0] = 0 ; arrf2[:,1] = 1 ; arrf2[:,2] = 0
41 f2.setArray( arrf2 )
42 f2.setName("field2")
43 WriteFieldUsingAlreadyWrittenMesh("test.med",f2)