Changeset 24584
- Timestamp:
- 02/25/20 16:35:52 (5 years ago)
- Location:
- issm/trunk-jpl/test/NightlyRun
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/Makefile
r14667 r24584 1 1 clean: 2 rm -rf *.tar.gz *.bin *.errlog *.outlog *.outbin *.petsc *.queue *.toolkits *.run valgrind.log* *.bat *.lock qmu* 2 rm -rf *.tar.gz *.bin *.errlog *.outlog *.outbin *.petsc *.queue *.toolkits *.run valgrind.log* *.bat *.lock qmu* dakota_tabular.dat -
issm/trunk-jpl/test/NightlyRun/test236.m
r24298 r24584 28 28 md.smb.temperatures_presentday(1:md.mesh.numberofvertices,imonth+1)=tmonth(imonth+1); 29 29 md.smb.temperatures_lgm(1:md.mesh.numberofvertices,imonth+1)=tmonth(imonth+1)-20.; 30 % Time for the last line:31 md.smb.temperatures_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);32 md.smb.temperatures_lgm(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);33 30 end 34 31 … … 47 44 md.smb.precipitations_presentday(1:md.mesh.numberofvertices,imonth+1)=-0.4*10^(-6)*md.mesh.y+0.5; 48 45 md.smb.precipitations_lgm(1:md.mesh.numberofvertices,imonth+1)=-0.4*10^(-6)*md.mesh.y+0.5; 49 % Time for the last line:50 md.smb.precipitations_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);51 md.smb.precipitations_lgm(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);52 46 end 53 47 -
issm/trunk-jpl/test/NightlyRun/test236.py
r24298 r24584 35 35 md.smb.temperatures_presentday[0:md.mesh.numberofvertices, imonth] = tmonth[imonth] 36 36 md.smb.temperatures_lgm[0:md.mesh.numberofvertices, imonth] = tmonth[imonth] - 20. 37 # Time for the last line:38 md.smb.temperatures_presentday[md.mesh.numberofvertices, imonth] = ((float(imonth) + 1.) / 12.)39 md.smb.temperatures_lgm[md.mesh.numberofvertices, imonth] = ((float(imonth) + 1.) / 12.)40 37 41 38 # creating initialization and spc temperatures initialization and spc … … 53 50 for imonth in range(0, 12): 54 51 md.smb.precipitations_presentday[0:md.mesh.numberofvertices, imonth] = -0.4 * 10**(-6) * md.mesh.y + 0.5 55 md.smb.precipitations_presentday[md.mesh.numberofvertices, imonth] = ((float(imonth) + 1.) / 12.)56 52 md.smb.precipitations_lgm[0:md.mesh.numberofvertices, imonth] = -0.4 * 10**(-6) * md.mesh.y + 0.5 57 md.smb.precipitations_lgm[md.mesh.numberofvertices, imonth] = ((float(imonth) + 1.) / 12.)58 53 59 54 # Interpolation factors -
issm/trunk-jpl/test/NightlyRun/test237.m
r24298 r24584 22 22 md.smb.temperatures_presentday(1:md.mesh.numberofvertices,imonth+1)=tmonth(imonth+1); 23 23 md.smb.temperatures_lgm(1:md.mesh.numberofvertices,imonth+1)=tmonth(imonth+1)-20.; 24 % Time for the last line:25 md.smb.temperatures_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);26 md.smb.temperatures_lgm(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);27 24 end 28 25 … … 40 37 md.smb.precipitations_presentday(1:md.mesh.numberofvertices,imonth+1)=-0.4*10^(-6)*md.mesh.y+0.5; 41 38 md.smb.precipitations_lgm(1:md.mesh.numberofvertices,imonth+1)=-0.4*10^(-6)*md.mesh.y+0.5; 42 % Time for the last line:43 md.smb.precipitations_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);44 md.smb.precipitations_lgm(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);45 39 end 46 40 -
issm/trunk-jpl/test/NightlyRun/test237.py
r24298 r24584 33 33 md.smb.temperatures_presentday[0:md.mesh.numberofvertices, imonth] = tmonth[imonth] 34 34 md.smb.temperatures_lgm[0:md.mesh.numberofvertices, imonth] = tmonth[imonth] - 20. 35 # Time for the last line:36 md.smb.temperatures_presentday[md.mesh.numberofvertices, imonth] = ((float(imonth) + 1.) / 12.)37 md.smb.temperatures_lgm[md.mesh.numberofvertices, imonth] = ((float(imonth) + 1.) / 12.)38 35 39 36 # creating initialization and spc temperatures initialization and spc … … 51 48 for imonth in range(0, 12): 52 49 md.smb.precipitations_presentday[0:md.mesh.numberofvertices, imonth] = -0.4 * 10**(-6) * md.mesh.y + 0.5 53 md.smb.precipitations_presentday[md.mesh.numberofvertices, imonth] = ((float(imonth) + 1.) / 12.)54 50 md.smb.precipitations_lgm[0:md.mesh.numberofvertices, imonth] = -0.4 * 10**(-6) * md.mesh.y + 0.5 55 md.smb.precipitations_lgm[md.mesh.numberofvertices, imonth] = ((float(imonth) + 1.) / 12.)56 51 57 52 fsize = int(md.timestepping.final_time / md.timestepping.time_step) + 2 -
issm/trunk-jpl/test/NightlyRun/test238.m
r24298 r24584 22 22 for imonth=0:11 23 23 md.smb.temperatures_presentday(1:md.mesh.numberofvertices,imonth+1)=tmonth(imonth+1); 24 % Time for the last line:25 md.smb.temperatures_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);26 24 end 27 25 … … 34 32 for imonth=0:11 35 33 md.smb.precipitations_presentday(1:md.mesh.numberofvertices,imonth+1)=-0.4*10^(-6)*md.mesh.y+0.5; 36 % Time for the last line:37 md.smb.precipitations_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);38 34 end 39 35 md.smb = initialize(md.smb,md); -
issm/trunk-jpl/test/NightlyRun/test238.py
r24298 r24584 29 29 for imonth in range(0, 12): 30 30 md.smb.temperatures_presentday[0:md.mesh.numberofvertices, imonth] = tmonth[imonth] 31 # Time for the last line:32 md.smb.temperatures_presentday[md.mesh.numberofvertices, imonth] = ((float(imonth) + 1.) / 12.)33 31 34 32 # creating initialization and spc temperatures initialization and spc … … 42 40 for imonth in range(0, 12): 43 41 md.smb.precipitations_presentday[0:md.mesh.numberofvertices, imonth] = -0.4 * 10**(-6) * md.mesh.y + 0.5 44 md.smb.precipitations_presentday[md.mesh.numberofvertices, imonth] = (float(imonth) / 12.)45 42 46 43 # time steps and resolution -
issm/trunk-jpl/test/NightlyRun/test239.m
r24298 r24584 22 22 for imonth=0:11 23 23 md.smb.temperatures_presentday(1:md.mesh.numberofvertices,imonth+1)=tmonth(imonth+1); 24 % Time for the last line:25 md.smb.temperatures_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);26 24 end 27 25 … … 35 33 for imonth=0:11 36 34 md.smb.precipitations_presentday(1:md.mesh.numberofvertices,imonth+1)=-0.4*10^(-6)*md.mesh.y+0.5; 37 % Time for the last line:38 md.smb.precipitations_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);39 35 end 40 36 md.smb = initialize(md.smb,md); -
issm/trunk-jpl/test/NightlyRun/test239.py
r24298 r24584 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] 31 # Time for the last line:32 md.smb.temperatures_presentday[md.mesh.numberofvertices, imonth] = (float(imonth) / 12.)33 31 34 32 # creating initialization and spc temperatures initialization and spc … … 39 37 40 38 # creating precipitation 41 md.smb.precipitations_presentday = np.zeros((md.mesh.numberofvertices + 1, 12))39 md.smb.precipitations_presentday = np.zeros((md.mesh.numberofvertices, 12)) 42 40 for imonth in range(0, 12): 43 41 md.smb.precipitations_presentday[0:md.mesh.numberofvertices, imonth] = -0.4 * 10**(-6) * md.mesh.y + 0.5 44 md.smb.precipitations_presentday[md.mesh.numberofvertices, imonth] = ((float(imonth) + 1.) / 12.)45 42 46 43 # time steps and resolution -
issm/trunk-jpl/test/NightlyRun/test240.m
r24298 r24584 22 22 for imonth=0:11 23 23 md.smb.temperatures_presentday(1:md.mesh.numberofvertices,imonth+1)=tmonth(imonth+1); 24 % Time for the last line:25 md.smb.temperatures_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);26 24 end 27 25 md.smb = initialize(md.smb,md); … … 35 33 for imonth=0:11 36 34 md.smb.precipitations_presentday(1:md.mesh.numberofvertices,imonth+1)=-0.4*10^(-6)*md.mesh.y+0.5; 37 % Time for the last line:38 md.smb.precipitations_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);39 35 end 40 36 -
issm/trunk-jpl/test/NightlyRun/test240.py
r24298 r24584 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] 31 # Time for the last line:32 md.smb.temperatures_presentday[md.mesh.numberofvertices, imonth] = (float(imonth) / 12.)33 31 34 32 # creating initialization and spc temperatures initialization and spc … … 39 37 40 38 # creating precipitation 41 md.smb.precipitations_presentday = np.zeros((md.mesh.numberofvertices + 1, 12))39 md.smb.precipitations_presentday = np.zeros((md.mesh.numberofvertices, 12)) 42 40 for imonth in range(0, 12): 43 41 md.smb.precipitations_presentday[0:md.mesh.numberofvertices, imonth] = -0.4 * 10**(-6) * md.mesh.y + 0.5 44 md.smb.precipitations_presentday[md.mesh.numberofvertices, imonth] = ((float(imonth) + 1.) / 12.)45 42 46 43 # time steps and resolution -
issm/trunk-jpl/test/NightlyRun/test247.m
r24568 r24584 20 20 for imonth=0:11 21 21 md.smb.temperatures_presentday(1:md.mesh.numberofvertices,imonth+1)=tmonth(imonth+1); 22 % Time for the last line:23 md.smb.temperatures_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);24 22 end 25 23 md.smb = initialize(md.smb,md); … … 33 31 for imonth=0:11 34 32 md.smb.precipitations_presentday(1:md.mesh.numberofvertices,imonth+1)=-0.4*10^(-6)*md.mesh.y+0.5; 35 % Time for the last line:36 md.smb.precipitations_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12);37 33 end 38 34
Note:
See TracChangeset
for help on using the changeset viewer.