Changeset 21176
- Timestamp:
- 08/31/16 20:57:40 (9 years ago)
- Location:
- issm/trunk-jpl/test/Par
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/Par/79North.py
r21170 r21176 15 15 vx = numpy.array(archread('../Data/79North.arch','vx')); 16 16 vy = numpy.array(archread('../Data/79North.arch','vy')); 17 index = numpy.array(archread('../Data/79North.arch','index')) ;17 index = numpy.array(archread('../Data/79North.arch','index')).astype(int); 18 18 surface = numpy.array(archread('../Data/79North.arch','surface')); 19 19 thickness = numpy.array(archread('../Data/79North.arch','thickness')); -
issm/trunk-jpl/test/Par/Pig.py
r21170 r21176 15 15 vx_obs = numpy.array(archread('../Data/Pig.arch','vx_obs')) 16 16 vy_obs = numpy.array(archread('../Data/Pig.arch','vy_obs')) 17 index = numpy.array(archread('../Data/Pig.arch','index')) 17 index = numpy.array(archread('../Data/Pig.arch','index')).astype(int) 18 18 surface = numpy.array(archread('../Data/Pig.arch','surface')) 19 19 thickness = numpy.array(archread('../Data/Pig.arch','thickness')) -
issm/trunk-jpl/test/Par/SquareSheetShelf.py
r21170 r21176 29 29 vx = numpy.array(archread('../Data/SquareSheetShelf.arch','vx')); 30 30 vy = numpy.array(archread('../Data/SquareSheetShelf.arch','vy')); 31 index = numpy.array(archread('../Data/SquareSheetShelf.arch','index')) ;31 index = numpy.array(archread('../Data/SquareSheetShelf.arch','index')).astype(int); 32 32 33 33 [md.initialization.vx] = InterpFromMeshToMesh2d(index,x,y,vx,md.mesh.x,md.mesh.y)
Note:
See TracChangeset
for help on using the changeset viewer.