Changeset 20500 for issm/trunk/test/NightlyRun/test237.m
- Timestamp:
- 04/12/16 21:32:01 (9 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:ignore
-
old new 1 build-js 2 build-esmf 3 build-gcm 1 4 build-fw 2 5 build-ad
-
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 19104,19106-19126,19128-19134,19136-19170,19172-19299,19302,19306-19405,19407-19604,19606-19668,19670-20496
- Property svn:ignore
-
issm/trunk/test
- Property svn:mergeinfo changed
-
issm/trunk/test/NightlyRun/test237.m
r19105 r20500 7 7 8 8 % Use of ispdd methods 9 md.surfaceforcings = SMBpdd(); 10 md.surfaceforcings.isdelta18o=0; 11 md.surfaceforcings.ismungsm=1; 12 13 if md.surfaceforcings.isdelta18o==0 & md.surfaceforcings.ismungsm==0 14 md.surfaceforcings.precipitation=zeros(md.mesh.numberofvertices,1); 15 md.surfaceforcings.monthlytemperatures=273*ones(md.mesh.numberofvertices,1); 16 end 17 18 19 % Add temperature, precipitation and delta18o needed to measure the surface mass balance 20 % % creating delta18o 21 % load '../Data/delta18o.data' 22 % md.surfaceforcings.delta18o=delta18o; 23 % % creating delta18oSurface 24 % md.surfaceforcings.delta18o_surface(1,1:(length(delta18o))) = 0; 25 % md.surfaceforcings.delta18o_surface(2,:) = delta18o(2,:); 26 27 % creating Present day and lgm temperatures 28 % Same temperature over the all region: 29 tmonth(1:12)=238.15+20.; 30 for imonth=0:11 31 md.surfaceforcings.temperatures_presentday(1:md.mesh.numberofvertices,imonth+1)=tmonth(imonth+1); 32 md.surfaceforcings.temperatures_lgm(1:md.mesh.numberofvertices,imonth+1)=tmonth(imonth+1)-20.; 33 % Time for the last line: 34 md.surfaceforcings.temperatures_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12); 35 md.surfaceforcings.temperatures_lgm(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12); 36 end 37 38 % creating initialization and spc temperatures initialization and spc 39 md.thermal.spctemperature=mean(md.surfaceforcings.temperatures_lgm(1:md.mesh.numberofvertices,1:12),2); %-10*ones(md.mesh.numberofvertices,1); 40 md.thermal.spctemperature=repmat(md.thermal.spctemperature,1,md.timestepping.final_time/md.timestepping.time_step); 41 itemp=0:md.timestepping.time_step:md.timestepping.final_time-md.timestepping.time_step; 42 md.thermal.spctemperature(md.mesh.numberofvertices+1,:)=itemp; 43 44 md.initialization.temperature=md.surfaceforcings.temperatures_lgm(1:md.mesh.numberofvertices,1); %*ones(md.mesh.numberofvertices,1); 45 46 % creating precipitation 47 for imonth=0:11 48 md.surfaceforcings.precipitations_presentday(1:md.mesh.numberofvertices,imonth+1)=-0.4*10^(-6)*md.mesh.y+0.5; 49 md.surfaceforcings.precipitations_lgm(1:md.mesh.numberofvertices,imonth+1)=-0.4*10^(-6)*md.mesh.y+0.5; 50 % Time for the last line: 51 md.surfaceforcings.precipitations_presentday(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12); 52 md.surfaceforcings.precipitations_lgm(md.mesh.numberofvertices+1,imonth+1)=((imonth+1)/12); 53 end 54 55 md.surfaceforcings.Pfac(1,1:md.timestepping.final_time)=0.5; 56 md.surfaceforcings.Tdiff(1,1:md.timestepping.final_time)=0.5; 57 md.surfaceforcings.sealev(1,1:md.timestepping.final_time)=0.5; 58 % Year of each data point 59 md.surfaceforcings.Pfac(2,1:md.timestepping.final_time)=1:1:md.timestepping.final_time; 60 md.surfaceforcings.Tdiff(2,1:md.timestepping.final_time)=1:1:md.timestepping.final_time; 61 md.surfaceforcings.sealev(2,1:md.timestepping.final_time)=1:1:md.timestepping.final_time; 9 md.smb = SMBpdd(); 10 md.smb.isdelta18o=0; 11 md.smb.ismungsm=1; 62 12 63 13 % time steps and resolution … … 66 16 md.timestepping.final_time=60; 67 17 18 % creating Present day and lgm temperatures 19 % Same temperature over the all region: 20 tmonth(1:12)=238.15+20.; 21 for imonth=0:11 22 md.smb.temperatures_presentday(1:md.mesh.numberofvertices,imonth+1)=tmonth(imonth+1); 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 end 28 29 % creating initialization and spc temperatures initialization and spc 30 md.thermal.spctemperature=mean(md.smb.temperatures_lgm(1:md.mesh.numberofvertices,1:12),2); %-10*ones(md.mesh.numberofvertices,1); 31 md.thermal.spctemperature=repmat(md.thermal.spctemperature,1,md.timestepping.final_time/md.timestepping.time_step); 32 itemp=0:md.timestepping.time_step:md.timestepping.final_time-md.timestepping.time_step; 33 md.thermal.spctemperature(md.mesh.numberofvertices+1,:)=itemp; 34 35 md.initialization.temperature=md.smb.temperatures_lgm(1:md.mesh.numberofvertices,1); %*ones(md.mesh.numberofvertices,1); 36 md.smb = initialize(md.smb,md); 37 38 % creating precipitation 39 for imonth=0:11 40 md.smb.precipitations_presentday(1:md.mesh.numberofvertices,imonth+1)=-0.4*10^(-6)*md.mesh.y+0.5; 41 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 end 46 47 for iint=1:(md.timestepping.final_time/md.timestepping.time_step)+1 48 md.smb.Pfac(1,iint)=0.15*iint; 49 md.smb.Tdiff(1,iint)=0.15*iint; 50 md.smb.sealev(1,iint)=0.15*iint; 51 % Year of each data point 52 md.smb.Pfac(2,iint)=(iint-1)*20; 53 md.smb.Tdiff(2,iint)=(iint-1)*20; 54 md.smb.sealev(2,iint)=(iint-1)*20; 55 end 56 68 57 % 69 md.transient.requested_outputs={'default','S urfaceforcingsMonthlytemperatures'};58 md.transient.requested_outputs={'default','SmbMonthlytemperatures'}; 70 59 md=extrude(md,3,1); 71 60 … … 75 64 76 65 %Fields and tolerances to track changes 77 field_names ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','BasalforcingsGroundediceMeltingRate1', 78 'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','BasalforcingsGroundediceMeltingRate2', 79 'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','BasalforcingsGroundediceMeltingRate3' };66 field_names ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','BasalforcingsGroundediceMeltingRate1','SmbMonthlytemperatures1','SmbMassBalance1',... 67 'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','BasalforcingsGroundediceMeltingRate2','SmbMonthlytemperatures2','SmbMassBalance2',... 68 'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','BasalforcingsGroundediceMeltingRate3','SmbMonthlytemperatures3','SmbMassBalance3'}; 80 69 field_tolerances={... 81 1e-13,1e-13,1e-13,1e-13,1e-13,1e-8,1e-8,1e-8,1e-13,1e-8, ...82 1e-13,1e-13,1e-13,1e-13,1e-13,1e-8,1e-8,1e-8,1e-13,1e- 8,...83 1e-13,1e-13,1e-08,1e-13,1e-13,1e-8,1e-8,1e-8,1e-13, 1e-8};70 1e-13,1e-13,1e-13,1e-13,1e-13,1e-8,1e-8,1e-8,1e-13,1e-8,1e-13,1e-13,... 71 1e-13,1e-13,1e-13,1e-13,1e-13,1e-8,1e-8,1e-8,1e-13,1e-7,1e-13,1e-13,... 72 1e-13,1e-13,1e-08,1e-13,1e-13,1e-8,1e-8,1e-8,1e-13,5e-7,1e-13,1e-13}; 84 73 field_values={... 85 74 (md.results.TransientSolution(1).Vx),... … … 93 82 (md.results.TransientSolution(1).Temperature),... 94 83 (md.results.TransientSolution(1).BasalforcingsGroundediceMeltingRate),... 95 (md.results.TransientSolution(1).S urfaceforcingsMonthlytemperatures),...96 (md.results.TransientSolution(1).S urfaceforcingsMassBalance),...84 (md.results.TransientSolution(1).SmbMonthlytemperatures),... 85 (md.results.TransientSolution(1).SmbMassBalance),... 97 86 (md.results.TransientSolution(2).Vx),... 98 87 (md.results.TransientSolution(2).Vy),... … … 105 94 (md.results.TransientSolution(2).Temperature),... 106 95 (md.results.TransientSolution(2).BasalforcingsGroundediceMeltingRate),... 107 (md.results.TransientSolution(2).S urfaceforcingsMonthlytemperatures),...108 (md.results.TransientSolution(2).S urfaceforcingsMassBalance),...96 (md.results.TransientSolution(2).SmbMonthlytemperatures),... 97 (md.results.TransientSolution(2).SmbMassBalance),... 109 98 (md.results.TransientSolution(3).Vx),... 110 99 (md.results.TransientSolution(3).Vy),... … … 117 106 (md.results.TransientSolution(3).Temperature),... 118 107 (md.results.TransientSolution(3).BasalforcingsGroundediceMeltingRate),... 119 (md.results.TransientSolution(3).S urfaceforcingsMonthlytemperatures),...120 (md.results.TransientSolution(3).S urfaceforcingsMassBalance),...108 (md.results.TransientSolution(3).SmbMonthlytemperatures),... 109 (md.results.TransientSolution(3).SmbMassBalance),... 121 110 };
Note:
See TracChangeset
for help on using the changeset viewer.