]> SALOME platform Git repositories - tools/paravisaddons_common.git/blob - src/SpatialPfl/TestCase.py
Salome HOME
[EDF22802] : Rosette filter improvement
[tools/paravisaddons_common.git] / src / SpatialPfl / TestCase.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 MEDLoader import *
21
22 fname="hydrau_test1.med"
23 meshName="mesh"
24 arr=DataArrayDouble([0,1,2,3,4,5])
25 m=MEDCouplingCMesh()
26 m.setCoords(arr,arr)
27 m=m.buildUnstructured()
28 m.setName(meshName)
29 m.simplexize(0)
30 WriteMesh(fname,m,True)
31 #
32 f=MEDCouplingFieldDouble(ON_NODES)
33 f.setMesh(m)
34 f.setName("Field")
35 arr=m.getCoords().magnitude()
36 f.setArray(arr)
37 for i in range(10):
38     arr+=0.1
39     f.setTime(float(i),i,0)
40     WriteFieldUsingAlreadyWrittenMesh(fname,f)
41     pass
42