Changeset 11053
- Timestamp:
- 12/13/11 15:48:20 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/workshop/17_SeaRISE/runme.m ¶
r11048 r11053 1 steps=[1 ];1 steps=[1:5]; 2 2 3 3 %Hard coded parameters 4 4 cluster=generic('name',oshostname,'np',2); 5 %What directory is you nc file in? 6 modeldatapath=['./']; 7 5 modeldatapath=['/Users/issm/Desktop/issm/workshop/14_JKS/Greenland5km_v1.2']; 8 6 9 7 %Run Steps 8 %Mesh{{{1 10 9 if sum(find(steps==1)) 11 10 … … 22 21 23 22 ncdata=[modeldatapath '/Greenland_5km_dev1.2.nc']; 23 %Use ncdisp('file') to see an ncdump 24 x1=double(ncread(ncdata,'x1')); 25 y1=double(ncread(ncdata,'y1')); 24 26 25 %Get x1 and y1 from ncdata26 %Use ncdisp('file') to see an ncdump27 velx=double(ncread(ncdata,'surfvelx')); 28 vely=double(ncread(ncdata,'surfvely')); 27 29 30 md.inversion.vx_obs=InterpFromGridToMesh(x1,y1,velx',md.mesh.x,md.mesh.y,0); 31 md.inversion.vy_obs=InterpFromGridToMesh(x1,y1,vely',md.mesh.x,md.mesh.y,0); 32 md.inversion.vel_obs=sqrt(md.inversion.vx_obs.^2+md.inversion.vy_obs.^2); 28 33 29 30 31 %Get velx and vely from ncdata 32 33 34 35 36 37 %Interpolate grid to mesh velx and vely into md.inversion vx_obs, vy_obs, and 38 %calculate vel_obs 39 40 41 42 43 %Read thickness and Interpolate into md.geometry.thickness 44 45 46 34 thickness=double(ncread(ncdata,'thk')); 35 md.geometry.thickness=InterpFromGridToMesh(x1,y1,thickness',... 36 md.mesh.x,md.mesh.y,0); 47 37 48 38 disp(' Mesh adaptation'); … … 54 44 name='./Models/Greenland.Mesh_generation'; 55 45 save(name,'md'); 56 end 46 end% }}} 47 %Parameterization{{{1 57 48 if sum(find(steps==2)) 58 59 %Set up your Parameter file. Start by copying your Jks.par60 49 61 50 md=loadmodel('./Models/Greenland.Mesh_generation'); … … 66 55 name='./Models/Greenland.Parameterization'; 67 56 save(name,'md'); 68 end 57 end%}}} 58 %Control_drag{{{1 69 59 if sum(find(steps==3)) 70 60 … … 79 69 md.inversion.gradient_scaling(:)=100; 80 70 81 82 %Set up inversion control parameters 83 84 85 86 87 88 71 md.inversion.cost_functions=[]; 72 md.inversion.cost_functions(1:floor(md.inversion.nsteps),1)=103; 73 md.inversion.cost_functions=[103*ones(md.inversion.nsteps,1) ... 74 501*ones(md.inversion.nsteps,1)]; 75 md.inversion.cost_functions_coefficients=ones(md.mesh.numberofvertices,2); 76 md.inversion.cost_functions_coefficients(:,2)=8*10^-15; 77 md.inversion.control_parameters={'FrictionCoefficient'}; 78 md.inversion.min_parameters=1*ones(md.mesh.numberofvertices,1); 79 md.inversion.max_parameters=200*ones(md.mesh.numberofvertices,1); 89 80 90 81 md=setcluster(md,cluster); … … 93 84 md=solve(md,DiagnosticSolutionEnum); 94 85 95 %Save results in md.friction.coefficient, md.initialization.vx and md.initialization.vy 96 %before save 97 98 99 86 md.friction.coefficient=md.results.DiagnosticSolution.FrictionCoefficient; 87 md.initialization.vx=md.results.DiagnosticSolution.Vx; 88 md.initialization.vy=md.results.DiagnosticSolution.Vy; 100 89 101 90 name='./Models/Greenland.Control_drag'; 102 91 save(name,'md'); 103 end 92 end%}}} 93 %Transient{{{1 104 94 if sum(find(steps==4)) 105 95 … … 113 103 y1=double(ncread(ncdata,'y1')); 114 104 115 116 %Get the surface mass balance from your nc file (Hint, your par file 117 %can help). Interpolate and then Make sure you convert to m ice/year. 118 119 120 121 %Set up forcing (forcing time in final row) 122 123 105 smb=double(ncread(ncdata,'smb')); 106 smb=InterpFromGridToMesh(x1,y1,smb',md.mesh.x,md.mesh.y,0)*... 107 1000/md.materials.rho_ice; 108 smb=[smb smb smb-1.0]; 109 md.surfaceforcings.mass_balance=[smb; [1 10 20]]; 124 110 125 111 md.thermal.spctemperature=[md.initialization.temperature;1]; 126 112 127 %Step of 0.2, for 20 years, output every year 128 129 130 113 md.timestepping.time_step=0.2; 114 md.timestepping.final_time=20; 115 md.settings.output_frequency=1; 131 116 132 117 md.inversion.iscontrol=0; … … 140 125 name='./Models/Greenland.Transient'; 141 126 save(name,'md'); 142 end% 127 end% }}} 128 %Plot{{{1 143 129 if sum(find(steps==5)) 144 130 … … 165 151 166 152 %Plot velocity 167 168 153 vel=[]; for i=1:100; vel=[vel md.results.TransientSolution(i).Vel]; end 154 subplot(3,1,2); plot([0.2:0.2:20],mean(vel)); title('Mean Velocity'); 169 155 170 156 %Plot Volume 171 172 173 174 end% 157 volume=[]; for i=1:100; volume=[volume md.results.TransientSolution(i).IceVolume]; end 158 subplot(3,1,3); plot([0.2:0.2:20],volume); title('Ice Volume'); 159 xlabel('years') 160 end% }}}
Note:
See TracChangeset
for help on using the changeset viewer.