Changeset 24043


Ignore:
Timestamp:
06/24/19 05:17:17 (6 years ago)
Author:
Mathieu Morlighem
Message:

CHG: deactivate kill berg since we only have one ice shelf w/o grounded part

Location:
issm/trunk-jpl/test/NightlyRun
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test806.m

    r23652 r24043  
    55md=setflowequation(md,'SSA','all');
    66md.cluster=generic('name',oshostname(),'np',3);
     7
     8%Do not kill ice bergs as all is floating
     9md.levelset.kill_icebergs=0;
    710
    811x = md.mesh.x;
  • issm/trunk-jpl/test/NightlyRun/test806.py

    r23793 r24043  
    2222alpha = 2. / 3.
    2323md.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
     26md.levelset.kill_icebergs=0
    2427
    2528md.timestepping.time_step = 10
  • issm/trunk-jpl/test/NightlyRun/test807.m

    r23652 r24043  
    1212alpha = 2./3.;
    1313md.mask.ice_levelset = ((x - alpha*Lx)>0) - ((x - alpha*Lx)<0);
     14
     15%Do not kill ice bergs as all is floating
     16md.levelset.kill_icebergs=0;
    1417
    1518md.timestepping.time_step=10;
  • issm/trunk-jpl/test/NightlyRun/test807.py

    r23793 r24043  
    2222alpha = 2. / 3.
    2323md.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
     26md.levelset.kill_icebergs=0
    2427
    2528md.timestepping.time_step = 10
  • issm/trunk-jpl/test/NightlyRun/test808.m

    r23652 r24043  
    1212alpha = 2./3.;
    1313md.mask.ice_levelset = -1+2*(md.mesh.y>9e5);
     14
     15%Do not kill ice bergs as all is floating
     16md.levelset.kill_icebergs=0;
    1417
    1518md.timestepping.time_step=1;
  • issm/trunk-jpl/test/NightlyRun/test808.py

    r23793 r24043  
    1515md = setflowequation(md, 'SSA', 'all')
    1616md.cluster = generic('name', gethostname(), 'np', 3)
     17
     18#Do not kill ice bergs as all is floating
     19md.levelset.kill_icebergs=0
    1720
    1821x = md.mesh.x
Note: See TracChangeset for help on using the changeset viewer.