Changeset 19043
- Timestamp:
- 01/27/15 05:10:08 (10 years ago)
- Location:
- issm/trunk-jpl/examples
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/examples/ISMIP/CheatyRunme.m ¶
r18823 r19043 10 10 %Run Steps 11 11 12 % {{{Mesh Generation #112 %Mesh Generation #1 13 13 if any(steps==1) 14 14 … … 31 31 save ./Models/ISMIP.Mesh_generation md; 32 32 end 33 % }}} 34 35 % {{{ Masks #2 33 34 %Masks #2 36 35 if any(steps==2) 37 36 … … 51 50 save ./Models/ISMIP.SetMask md; 52 51 end 53 % }}} 54 55 % {{{ Parameterization #3 52 53 %Parameterization #3 56 54 if any(steps==3) 57 55 … … 69 67 save ./Models/ISMIP.Parameterization md; 70 68 end 71 % }}} 72 73 % {{{ Extrusion #4 69 70 %Extrusion #4 74 71 if any(steps==4) 75 72 … … 89 86 save ./Models/ISMIP.Extrusion md; 90 87 end 91 % }}} 92 93 % {{{ Set the flow computing method #5 88 89 %Set the flow computing method #5 94 90 if any(steps==5) 95 91 … … 106 102 save ./Models/ISMIP.SetFlow md; 107 103 end 108 % }}} 109 110 % {{{ Set Boundary Conditions #6 104 105 %Set Boundary Conditions #6 111 106 if any(steps==6) 112 107 … … 161 156 save ./Models/ISMIP.BoundaryCondition md; 162 157 end 163 % }}} 164 165 % {{{ Solving #7 158 159 %Solving #7 166 160 if any(steps==7) 167 161 % load the preceding step #help loadmodel … … 188 182 plotmodel(md,'data',md.results.StressbalanceSolution.Vel) 189 183 end 190 % }}} 191 192 % {{{ Solving #8 184 185 %Solving #8 193 186 if any(steps==8) 194 187 % load the preceding step #help loadmodel … … 227 220 plotmodel(md,'data',md.results.TransientSolution(20).Vel) 228 221 end 229 % }}} -
TabularUnified issm/trunk-jpl/examples/ISMIP/runme.m ¶
r18203 r19043 10 10 %Run Steps 11 11 12 % {{{Mesh Generation #112 %Mesh Generation #1 13 13 if any(steps==1) 14 14 … … 27 27 28 28 end 29 % }}} 30 31 % {{{ Masks #2 29 30 %Masks #2 32 31 if any(steps==2) 33 32 … … 47 46 48 47 end 49 % }}} 50 51 % {{{ Parameterization #3 48 49 %Parameterization #3 52 50 if any(steps==3) 53 51 … … 65 63 66 64 end 67 % }}} 68 69 % {{{ Extrusion #4 65 66 %Extrusion #4 70 67 if any(steps==4) 71 68 … … 85 82 86 83 end 87 % }}} 88 89 % {{{ Set the flow computing method #5 90 84 85 %Set the flow computing method #5 91 86 if any(steps==5) 92 87 … … 103 98 104 99 end 105 % }}} 106 107 % {{{ Set Boundary Conditions #6 100 101 %Set Boundary Conditions #6 108 102 if any(steps==6) 109 103 … … 157 151 158 152 end 159 % }}} 160 161 % {{{ Solving #7 153 154 %Solving #7 162 155 if any(steps==7) 163 156 % load the preceding step #help loadmodel … … 183 176 %-> 184 177 end 185 % }}} 186 187 % {{{ Solving #8 178 179 %Solving #8 188 180 if any(steps==8) 189 181 % load the preceding step #help loadmodel … … 222 214 223 215 end 224 % }}} -
TabularUnified issm/trunk-jpl/examples/Pig/Pig.par ¶
r18205 r19043 7 7 md.mesh.hemisphere='s'; 8 8 9 % {{{NetCdf Loading9 %NetCdf Loading 10 10 disp(' Loading SeaRISE data from NetCDF'); 11 11 ncdata='../Data/Antarctica_5km_withshelves_v0.75.nc'; … … 47 47 y2=(ymax-ny*spacing)+(0:1:ny)'*spacing; 48 48 y2=double(y2); 49 % }}} 50 % {{{Geometry49 50 %Geometry 51 51 disp(' Interpolating surface and ice base'); 52 52 md.geometry.base = InterpFromGridToMesh(x1,y1,topg,md.mesh.x,md.mesh.y,0); … … 73 73 md.geometry.thickness(pos0)=1; 74 74 md.geometry.surface=md.geometry.thickness+md.geometry.base; 75 % }}} 76 % {{{Initialization parameters75 76 %Initialization parameters 77 77 disp(' Interpolating temperatures'); 78 78 md.initialization.temperature=InterpFromGridToMesh(x1,y1,temp,md.mesh.x,md.mesh.y,0)+273.15+Temp_change; … … 93 93 md.initialization.pressure=md.materials.rho_ice*md.constants.g*md.geometry.thickness; 94 94 95 % }}}96 97 95 disp(' Construct ice rheological properties'); 98 96 md.materials.rheology_n=3*ones(md.mesh.numberofelements,1); 99 97 md.materials.rheology_B=paterson(md.initialization.temperature); 100 98 101 % {{{Forcings99 %Forcings 102 100 disp(' Interpolating surface mass balance'); 103 101 md.surfaceforcings.mass_balance=InterpFromGridToMesh(x1,y1,smb,md.mesh.x,md.mesh.y,0); … … 108 106 md.basalforcings.geothermalflux=InterpFromGridToMesh(x1,y1,gflux,md.mesh.x,md.mesh.y,0); 109 107 clear gflux; 110 % }}}111 108 112 % {{{Friction and inversion set up109 %Friction and inversion set up 113 110 disp(' Construct basal friction parameters'); 114 111 md.friction.coefficient=friction_coefficient*ones(md.mesh.numberofvertices,1); … … 124 121 md.inversion.vy_obs=vy_obs; 125 122 md.inversion.vel_obs=vel_obs; 126 % }}}127 128 123 129 124 disp(' Set boundary conditions'); … … 133 128 md.thermal.spctemperature = [md.initialization.temperature;1]; %impose observed temperature on surface 134 129 md.masstransport.spcthickness = NaN*ones(md.mesh.numberofvertices,1); 135 -
TabularUnified issm/trunk-jpl/examples/Pig/PigRegion.m ¶
r18202 r19043 1 % {{{Getting the velocity in PIG vicinity for the ExpDraw1 %Getting the velocity in PIG vicinity for the ExpDraw 2 2 3 3 % Load Velocities … … 51 51 vel_obs=sqrt(vx_obs.^2.+vy_obs.^2.); 52 52 imagesc(xred,yred,vel_obs) 53 54 %}}} -
TabularUnified issm/trunk-jpl/examples/Pig/runme.m ¶
r18269 r19043 4 4 %Run Steps 5 5 6 % {{{Mesh Generation #16 %Mesh Generation #1 7 7 if any(steps==1) 8 8 … … 73 73 save ./Models/PIG.Mesh_generation md; 74 74 end 75 % }}} 76 77 % {{{ Masks #2 75 76 %Masks #2 78 77 if any(steps==2) 79 78 … … 104 103 save ./Models/PIG.SetMask md; 105 104 end 106 % }}} 107 108 % {{{ Parameterization #3 105 106 %Parameterization #3 109 107 if any(steps==3) 110 108 … … 118 116 save ./Models/PIG.Parameterization md; 119 117 end 120 % }}} 121 122 % {{{ Control Method #4 118 119 %Control Method #4 123 120 if any(steps==4) 124 121 … … 163 160 save ./Models/PIG.Control_drag md; 164 161 end 165 % }}} 166 167 % {{{ Plot #5 162 163 %Plot #5 168 164 if any(steps==5) 169 165 … … 182 178 'colorbartitle#3','[m]', 'log#1-2',10); 183 179 end 184 % }}} 185 186 % {{{ HO #6 180 181 %HO #6 187 182 if any(steps==6) 188 183 … … 200 195 201 196 end 202 % }}} 203 204 % {{{ Plot #7 197 198 %Plot #7 205 199 if any(steps==7) 206 200 … … 226 220 'layer#5',1, 'log#1', 10,'log#3', 10,'log#5', 10); 227 221 end 228 % }}}
Note:
See TracChangeset
for help on using the changeset viewer.