Changeset 19628
- Timestamp:
- 10/13/15 14:32:31 (9 years ago)
- Location:
- issm/trunk-jpl/examples/Greenland
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/examples/Greenland/Greenland.par
r19163 r19628 40 40 41 41 disp(' Interpolating surface mass balance'); 42 md.s urfaceforcings.mass_balance=InterpFromGridToMesh(x1,y1,smb,md.mesh.x,md.mesh.y,0);43 md.s urfaceforcings.mass_balance=md.surfaceforcings.mass_balance*md.materials.rho_water/md.materials.rho_ice;42 md.smb.mass_balance=InterpFromGridToMesh(x1,y1,smb,md.mesh.x,md.mesh.y,0); 43 md.smb.mass_balance=md.smb.mass_balance*md.materials.rho_water/md.materials.rho_ice; 44 44 45 45 disp(' Construct basal friction parameters'); -
issm/trunk-jpl/examples/Greenland/runme.m
r19612 r19628 92 92 smb = smb*md.materials.rho_freshwater/md.materials.rho_ice; 93 93 smb = [smb smb smb-1.0]; 94 md.s urfaceforcings.mass_balance = [smb;1 10 20];94 md.smb.mass_balance = [smb;1 10 20]; 95 95 96 96 %Set transient options, run for 20 years, saving every timestep … … 102 102 md.inversion.iscontrol=0; 103 103 md.transient.requested_outputs={'IceVolume','TotalSmb', ... 104 'S urfaceforcingsMassBalance'};104 'SmbMassBalance'}; 105 105 md.verbose=verbose('solution',true,'module',true,'convergence',true); 106 106 … … 124 124 %Plot surface mass balance 125 125 surfmb=[]; for i=1:100; surfmb=[surfmb ... 126 md.results.TransientSolution(i).S urfaceforcingsMassBalance]; end126 md.results.TransientSolution(i).SmbMassBalance]; end 127 127 subplot(3,1,1); plot([0.2:0.2:20],mean(surfmb)); title('Mean Surface mass balance'); 128 128 … … 181 181 smb_mo = InterpFromMeshToMesh2d(index,x1(:),y1(:),smbmean(:),xi,yi); 182 182 smb = smb_mo*12/1000*md.materials.rho_freshwater/md.materials.rho_ice; 183 md.s urfaceforcings.mass_balance = [smb;1 ];183 md.smb.mass_balance = [smb;1 ]; 184 184 185 185 %Set transient options, run for 20 years, saving every timestep … … 191 191 md.inversion.iscontrol=0; 192 192 md.transient.requested_outputs={'IceVolume','TotalSmb', ... 193 'S urfaceforcingsMassBalance'};193 'SmbMassBalance'}; 194 194 md.verbose=verbose('solution',true,'module',true); 195 195 … … 272 272 end 273 273 end 274 md.s urfaceforcings.mass_balance = ...274 md.smb.mass_balance = ... 275 275 [smb*12/1000*md.materials.rho_freshwater/md.materials.rho_ice; ... 276 276 [1/24:1/12:length(years_of_simulation)]]; … … 284 284 md.inversion.iscontrol=0; 285 285 md.transient.requested_outputs={'IceVolume','TotalSmb', ... 286 'S urfaceforcingsMassBalance'};286 'SmbMassBalance'}; 287 287 md.verbose=verbose('solution',true,'module',true); 288 288
Note:
See TracChangeset
for help on using the changeset viewer.