Changeset 24585


Ignore:
Timestamp:
02/25/20 20:38:20 (5 years ago)
Author:
seroussi
Message:

BUG: no more time

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

Legend:

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

    r24584 r24585  
    2828# Same temperature over the all region:
    2929tmonth = np.ones(12) * (238.15 + 20.)
    30 md.smb.temperatures_presentday = np.zeros((md.mesh.numberofvertices + 1, 12))
    31 md.smb.temperatures_lgm = np.zeros((md.mesh.numberofvertices + 1, 12))
     30md.smb.temperatures_presentday = np.zeros((md.mesh.numberofvertices, 12))
     31md.smb.temperatures_lgm = np.zeros((md.mesh.numberofvertices, 12))
    3232for imonth in range(0, 12):
    3333    md.smb.temperatures_presentday[0:md.mesh.numberofvertices, imonth] = tmonth[imonth]
  • issm/trunk-jpl/test/NightlyRun/test238.py

    r24584 r24585  
    2626# Same temperature over the all region:
    2727tmonth = np.ones(12) * (238.15 + 20.)
    28 md.smb.temperatures_presentday = np.zeros((md.mesh.numberofvertices + 1, 12))
     28md.smb.temperatures_presentday = np.zeros((md.mesh.numberofvertices, 12))
    2929for imonth in range(0, 12):
    3030    md.smb.temperatures_presentday[0:md.mesh.numberofvertices, imonth] = tmonth[imonth]
Note: See TracChangeset for help on using the changeset viewer.