Changeset 25375
- Timestamp:
- 08/11/20 17:43:14 (5 years ago)
- Location:
- issm/trunk-jpl/test/NightlyRun
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test237.py
r24588 r25375 27 27 # creating Present day and lgm temperatures 28 28 # Same temperature over the all region: 29 tmonth = np.ones(12) * (238.15 + 20.) 29 curve=np.sin(np.linspace(0, np.pi, 12)) 30 tmonth = np.ones(12) * (238.15 + 20.) + 20.*curve 30 31 md.smb.temperatures_presentday = np.zeros((md.mesh.numberofvertices, 12)) 31 32 md.smb.temperatures_lgm = np.zeros((md.mesh.numberofvertices, 12)) … … 63 64 md.smb.Tdiff[1, iint] = (float(iint)) * 20 64 65 md.smb.sealev[1, iint] = (float(iint)) * 20 66 67 md.smb.issetpddfac=1. 68 md.smb.pddfac_snow=2. 69 md.smb.pddfac_ice=2. 65 70 66 71 md.extrude(3, 1.) -
issm/trunk-jpl/test/NightlyRun/test239.py
r24584 r25375 25 25 # creating Present day temperatures 26 26 # Same temperature over the all region: 27 tmonth = np.ones(12) * (238.15 + 20.) 27 curve=np.sin(np.linspace(0, np.pi, 12)) 28 tmonth = np.ones(12) * (238.15 + 20.) + 20.*curve 28 29 md.smb.temperatures_presentday = np.zeros((md.mesh.numberofvertices, 12)) 29 30 for imonth in range(0, 12): … … 45 46 md.settings.output_frequency = 1 46 47 md.timestepping.final_time = 2 48 49 md.smb.issetpddfac = 1. 50 md.smb.pddfac_snow = 3. 51 md.smb.pddfac_ice = 3. 47 52 48 53 md = setflowequation(md, 'SSA', 'all')
Note:
See TracChangeset
for help on using the changeset viewer.