Changeset 23039


Ignore:
Timestamp:
08/01/18 14:40:07 (7 years ago)
Author:
caronlam
Message:

mask fix and missing new variable declaration

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

Legend:

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

    r22981 r23039  
    5555md.mask.groundedice_levelset=-np.ones((md.mesh.numberofvertices))
    5656
     57#make sure that the elements that have loads are fully grounded:
     58pos=np.nonzero(md.slr.deltathickness)[0]
     59md.mask.groundedice_levelset[md.mesh.elements[pos,:]-1]=1;
     60
    5761#make sure wherever there is an ice load, that the mask is set to ice:
    58 pos=np.nonzero(md.slr.deltathickness)[0]
    5962icemask[md.mesh.elements[pos,:]-1]=-1
     63md.mask.ice_levelset=icemask
    6064
     65md.slr.ocean_area_scaling=0
    6166
    6267#geometry
     
    7176md.materials.rheology_B=paterson(md.initialization.temperature)
    7277md.materials.rheology_n=3*np.ones((md.mesh.numberofelements))
     78
     79#New stuff
     80md.slr.spcthickness = np.nan((md.mesh.numberofvertices,));
     81md.slr.Ngia = np.zeros((md.mesh.numberofvertices,))
     82md.slr.Ugia = np.zeros((md.mesh.numberofvertices,))
    7383
    7484#Miscellaneous
  • issm/trunk-jpl/test/NightlyRun/test2003.py

    r23022 r23039  
    5858
    5959#make sure that the elements that have loads are fully grounded:
    60 pos=np.where(md.slr.deltathickness);
    61 md.mask.groundedice_levelset[md.mesh.elements[pos,:]]=1;
     60pos=np.nonzero(md.slr.deltathickness)[0]
     61md.mask.groundedice_levelset[md.mesh.elements[pos,:]-1]=1;
    6262
    63 #make sure wherever there is an ice load, that the mask is set to ice: 
    64 pos = np.where(md.slr.deltathickness)
    65 md.mask.ice_levelset[md.mesh.elements[pos,:]] = -1
     63#make sure wherever there is an ice load, that the mask is set to ice:
     64icemask[md.mesh.elements[pos,:]-1]=-1
     65md.mask.ice_levelset=icemask
    6666# }}}
    6767
     
    8080md.materials.rheology_B = paterson(md.initialization.temperature)
    8181md.materials.rheology_n = 3 * np.ones((md.mesh.numberofelements,))
     82
     83#New stuff
     84md.slr.spcthickness = np.nan((md.mesh.numberofvertices,));
     85md.slr.Ngia = np.zeros((md.mesh.numberofvertices,))
     86md.slr.Ugia = np.zeros((md.mesh.numberofvertices,))
    8287
    8388#Miscellaneous
  • issm/trunk-jpl/test/NightlyRun/test2010.py

    r23023 r23039  
    5858
    5959#make sure that the elements that have loads are fully grounded:
    60 pos=np.where(md.slr.deltathickness);
    61 md.mask.groundedice_levelset[md.mesh.elements[pos,:]]=1;
     60pos=np.nonzero(md.slr.deltathickness)[0]
     61md.mask.groundedice_levelset[md.mesh.elements[pos,:]-1]=1;
    6262
    63 #make sure wherever there is an ice load, that the mask is set to ice:
    64 #md.mask.ice_levelset = np.ones((md.mesh.numberofvertices,))
    65 pos = np.where(md.slr.deltathickness)
    66 md.mask.ice_levelset[md.mesh.elements[pos,:]] = -1
     63#make sure wherever there is an ice load, that the mask is set to ice:
     64icemask[md.mesh.elements[pos,:]-1]=-1
     65md.mask.ice_levelset=icemask
    6766# }}}
    6867#geometry {{{
     
    8685md.slr.geodetic = 1
    8786# }}}
     87
     88#New stuff
     89md.slr.spcthickness = np.nan((md.mesh.numberofvertices,));
     90md.slr.Ngia = np.zeros((md.mesh.numberofvertices,))
     91md.slr.Ugia = np.zeros((md.mesh.numberofvertices,))
    8892
    8993#eustatic + rigid + elastic run:
Note: See TracChangeset for help on using the changeset viewer.