Salome HOME
1aa870f4b9b6a2c8d8e1419dba060813440478d8
[modules/med.git] / doc / tut / mergefields / simpledemo / simpledemo.py
1 # Copyright (C) 2012-2020  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 MEDLoader import *
21
22 it,dt = (-1,-1)
23 mesh = MEDLoader.ReadUMeshFromFile("field1.med","DomainMesh_1",0)
24 f1 = MEDLoader.ReadField(ON_CELLS,"field1.med","DomainMesh_1",0,"field1",it,dt)
25 f1.setMesh(mesh)
26
27 mesh = MEDLoader.ReadUMeshFromFile("field2.med","DomainMesh_2",0)
28 f2 = MEDLoader.ReadField(ON_CELLS,"field2.med","DomainMesh_2",0,"field2",it,dt)
29 f2.setMesh(mesh)
30
31 mesh = MEDLoader.ReadUMeshFromFile("field3.med","DomainMesh_3",0)
32 f3 = MEDLoader.ReadField(ON_CELLS,"field3.med","DomainMesh_3",0,"field3",it,dt)
33 f3.setMesh(mesh)
34
35 #mesh = MEDLoader.ReadUMeshFromFile("field4.med","DomainMesh_4",0)
36 #f4 = MEDLoader.ReadField(ON_CELLS,"field4.med","DomainMesh_4",0,"field4",it,dt)
37 #f4.setMesh(mesh)
38
39 fmerge=MEDCouplingFieldDouble.MergeFields([f1,f2,f3])
40 fmerge.setName("merge")
41
42 MEDLoader.WriteField("merge.med",fmerge,True)
43