Changeset 24043
- Timestamp:
- 06/24/19 05:17:17 (6 years ago)
- Location:
- issm/trunk-jpl/test/NightlyRun
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test806.m
r23652 r24043 5 5 md=setflowequation(md,'SSA','all'); 6 6 md.cluster=generic('name',oshostname(),'np',3); 7 8 %Do not kill ice bergs as all is floating 9 md.levelset.kill_icebergs=0; 7 10 8 11 x = md.mesh.x; -
issm/trunk-jpl/test/NightlyRun/test806.py
r23793 r24043 22 22 alpha = 2. / 3. 23 23 md.mask.ice_levelset = np.float_((x - alpha * Lx) > 0) - np.float_((x - alpha * Lx) < 0) 24 25 #Do not kill ice bergs as all is floating 26 md.levelset.kill_icebergs=0 24 27 25 28 md.timestepping.time_step = 10 -
issm/trunk-jpl/test/NightlyRun/test807.m
r23652 r24043 12 12 alpha = 2./3.; 13 13 md.mask.ice_levelset = ((x - alpha*Lx)>0) - ((x - alpha*Lx)<0); 14 15 %Do not kill ice bergs as all is floating 16 md.levelset.kill_icebergs=0; 14 17 15 18 md.timestepping.time_step=10; -
issm/trunk-jpl/test/NightlyRun/test807.py
r23793 r24043 22 22 alpha = 2. / 3. 23 23 md.mask.ice_levelset = np.float_((x - alpha * Lx) > 0) - np.float_((x - alpha * Lx) < 0) 24 25 #Do not kill ice bergs as all is floating 26 md.levelset.kill_icebergs=0 24 27 25 28 md.timestepping.time_step = 10 -
issm/trunk-jpl/test/NightlyRun/test808.m
r23652 r24043 12 12 alpha = 2./3.; 13 13 md.mask.ice_levelset = -1+2*(md.mesh.y>9e5); 14 15 %Do not kill ice bergs as all is floating 16 md.levelset.kill_icebergs=0; 14 17 15 18 md.timestepping.time_step=1; -
issm/trunk-jpl/test/NightlyRun/test808.py
r23793 r24043 15 15 md = setflowequation(md, 'SSA', 'all') 16 16 md.cluster = generic('name', gethostname(), 'np', 3) 17 18 #Do not kill ice bergs as all is floating 19 md.levelset.kill_icebergs=0 17 20 18 21 x = md.mesh.x
Note:
See TracChangeset
for help on using the changeset viewer.