Changeset 24585
- Timestamp:
- 02/25/20 20:38:20 (5 years ago)
- Location:
- issm/trunk-jpl/test/NightlyRun
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test237.py
r24584 r24585 28 28 # Same temperature over the all region: 29 29 tmonth = 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))30 md.smb.temperatures_presentday = np.zeros((md.mesh.numberofvertices, 12)) 31 md.smb.temperatures_lgm = np.zeros((md.mesh.numberofvertices, 12)) 32 32 for imonth in range(0, 12): 33 33 md.smb.temperatures_presentday[0:md.mesh.numberofvertices, imonth] = tmonth[imonth] -
issm/trunk-jpl/test/NightlyRun/test238.py
r24584 r24585 26 26 # Same temperature over the all region: 27 27 tmonth = np.ones(12) * (238.15 + 20.) 28 md.smb.temperatures_presentday = np.zeros((md.mesh.numberofvertices + 1, 12))28 md.smb.temperatures_presentday = np.zeros((md.mesh.numberofvertices, 12)) 29 29 for imonth in range(0, 12): 30 30 md.smb.temperatures_presentday[0:md.mesh.numberofvertices, imonth] = tmonth[imonth]
Note:
See TracChangeset
for help on using the changeset viewer.