Ignore:
Timestamp:
05/15/20 20:21:51 (5 years ago)
Author:
Mathieu Morlighem
Message:

CHG: renaming groundedice_levelset -> ocean_levelset (negative if ocean present, positive outside

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test2002.py

    r24758 r24862  
    5555#make sure that the ice level set is all inclusive:
    5656md.mask.land_levelset = np.zeros((md.mesh.numberofvertices))
    57 md.mask.groundedice_levelset = -np.ones((md.mesh.numberofvertices))
     57md.mask.ocean_levelset = -np.ones((md.mesh.numberofvertices))
    5858
    5959#make sure that the elements that have loads are fully grounded:
    6060pos = np.nonzero(md.slr.deltathickness)[0]
    61 md.mask.groundedice_levelset[md.mesh.elements[pos, :] - 1] = 1
     61md.mask.ocean_levelset[md.mesh.elements[pos, :] - 1] = 1
    6262
    6363#make sure wherever there is an ice load, that the mask is set to ice:
Note: See TracChangeset for help on using the changeset viewer.