[21129] | 1 | steps=[1];
|
---|
[18198] | 2 |
|
---|
[21129] | 3 | if any(steps==1) %Mesh Generation #1
|
---|
[18198] | 4 | %Mesh parameters
|
---|
| 5 | domain =['./DomainOutline.exp'];
|
---|
[20733] | 6 | hinit=10000; % element size for the initial mesh
|
---|
[18198] | 7 | hmax=40000; % maximum element size of the final mesh
|
---|
| 8 | hmin=5000; % minimum element size of the final mesh
|
---|
| 9 | gradation=1.7; % maximum size ratio between two neighboring elements
|
---|
| 10 | err=8; % maximum error between interpolated and control field
|
---|
| 11 |
|
---|
| 12 | % Generate an initial uniform mesh (resolution = hinit m)
|
---|
[20733] | 13 | md=bamg(model,'domain',domain,'hmax',hinit);
|
---|
[18198] | 14 |
|
---|
| 15 | % Load Velocities
|
---|
| 16 | nsidc_vel='../Data/Antarctica_ice_velocity.nc';
|
---|
| 17 |
|
---|
| 18 | % Get necessary data to build up the velocity grid
|
---|
[20733] | 19 | xmin = ncreadatt(nsidc_vel,'/','xmin');
|
---|
| 20 | ymax = ncreadatt(nsidc_vel,'/','ymax');
|
---|
| 21 | spacing = ncreadatt(nsidc_vel,'/','spacing');
|
---|
| 22 | nx = double(ncreadatt(nsidc_vel,'/','nx'));
|
---|
| 23 | ny = double(ncreadatt(nsidc_vel,'/','ny'));
|
---|
| 24 | vx = double(ncread(nsidc_vel,'vx'));
|
---|
| 25 | vy = double(ncread(nsidc_vel,'vy'));
|
---|
| 26 |
|
---|
| 27 | % Read coordinates
|
---|
| 28 | xmin = strtrim(xmin);
|
---|
| 29 | xmin = str2num(xmin(1:end-2));
|
---|
[18198] | 30 | ymax = strtrim(ymax);
|
---|
[20733] | 31 | ymax = str2num(ymax(1:end-2));
|
---|
[18198] | 32 | spacing = strtrim(spacing);
|
---|
[20733] | 33 | spacing = str2num(spacing(1:end-2));
|
---|
| 34 |
|
---|
| 35 | % Build the coordinates
|
---|
| 36 | x=xmin+(0:1:nx)'*spacing;
|
---|
| 37 | y=(ymax-ny*spacing)+(0:1:ny)'*spacing;
|
---|
[18198] | 38 |
|
---|
| 39 | % Interpolate velocities onto coarse mesh
|
---|
| 40 | vx_obs=InterpFromGridToMesh(x,y,flipud(vx'),md.mesh.x,md.mesh.y,0);
|
---|
| 41 | vy_obs=InterpFromGridToMesh(x,y,flipud(vy'),md.mesh.x,md.mesh.y,0);
|
---|
| 42 | vel_obs=sqrt(vx_obs.^2+vy_obs.^2);
|
---|
| 43 | clear vx vy x y;
|
---|
| 44 |
|
---|
| 45 | % Adapt the mesh to minimize error in velocity interpolation
|
---|
| 46 | md=bamg(md,'hmax',hmax,'hmin',hmin,'gradation',gradation,'field',vel_obs,'err',err);
|
---|
| 47 |
|
---|
| 48 | %ploting
|
---|
| 49 | plotmodel(md,'data','mesh')
|
---|
| 50 |
|
---|
| 51 | % Save model
|
---|
[20754] | 52 | save ./Models/PIG_Mesh_generation md;
|
---|
[18198] | 53 | end
|
---|
| 54 |
|
---|
[21129] | 55 | if any(steps==2) %Masks #2
|
---|
[18198] | 56 |
|
---|
[20754] | 57 | md = loadmodel('./Models/PIG_Mesh_generation');
|
---|
[18202] | 58 |
|
---|
[18198] | 59 | % Load SeaRISe dataset for Antarctica
|
---|
| 60 | % http://websrv.cs.umt.edu/isis/index.php/Present_Day_Antarctica
|
---|
| 61 | searise='../Data/Antarctica_5km_withshelves_v0.75.nc';
|
---|
| 62 |
|
---|
| 63 | %read thickness mask from SeaRISE
|
---|
| 64 | x1=double(ncread(searise,'x1'));
|
---|
| 65 | y1=double(ncread(searise,'y1'));
|
---|
| 66 | thkmask=double(ncread(searise,'thkmask'));
|
---|
| 67 |
|
---|
| 68 | %interpolate onto our mesh vertices
|
---|
| 69 | groundedice=double(InterpFromGridToMesh(x1,y1,thkmask',md.mesh.x,md.mesh.y,0));
|
---|
| 70 | groundedice(groundedice<=0)=-1;
|
---|
| 71 | clear thkmask;
|
---|
| 72 |
|
---|
| 73 | %fill in the md.mask structure
|
---|
| 74 | md.mask.groundedice_levelset=groundedice; %ice is grounded for mask equal one
|
---|
| 75 | md.mask.ice_levelset=-1*ones(md.mesh.numberofvertices,1);%ice is present when negatvie
|
---|
| 76 |
|
---|
| 77 | %ploting
|
---|
| 78 | plotmodel(md,'data',md.mask.groundedice_levelset,'title','grounded/floating','data',md.mask.ice_levelset,'title','ice/no-ice')
|
---|
| 79 |
|
---|
| 80 | % Save model
|
---|
[20754] | 81 | save ./Models/PIG_SetMask md;
|
---|
[18198] | 82 | end
|
---|
| 83 |
|
---|
[21129] | 84 | if any(steps==3) %Parameterization #3
|
---|
[18198] | 85 |
|
---|
[20754] | 86 | md = loadmodel('./Models/PIG_SetMask');
|
---|
[18198] | 87 | md = parameterize(md,'./Pig.par');
|
---|
| 88 |
|
---|
| 89 | % Use a MacAyeal flow model
|
---|
| 90 | md = setflowequation(md,'SSA','all');
|
---|
| 91 |
|
---|
| 92 | % Save model
|
---|
[20754] | 93 | save ./Models/PIG_Parameterization md;
|
---|
[18198] | 94 | end
|
---|
| 95 |
|
---|
[21129] | 96 | if any(steps==4) %Control Method #4
|
---|
[18198] | 97 |
|
---|
[20754] | 98 | md = loadmodel('./Models/PIG_Parameterization');
|
---|
[18198] | 99 |
|
---|
| 100 | % Control general
|
---|
| 101 | md.inversion.iscontrol=1;
|
---|
[21759] | 102 | md.inversion.maxsteps=20;
|
---|
[18198] | 103 | md.inversion.maxiter=40;
|
---|
| 104 | md.inversion.dxmin=0.1;
|
---|
| 105 | md.inversion.gttol=1.0e-4;
|
---|
[21759] | 106 | md.verbose=verbose('control',true);
|
---|
[18198] | 107 |
|
---|
| 108 | % Cost functions
|
---|
| 109 | md.inversion.cost_functions=[101 103 501];
|
---|
| 110 | md.inversion.cost_functions_coefficients=ones(md.mesh.numberofvertices,3);
|
---|
| 111 | md.inversion.cost_functions_coefficients(:,1)=1;
|
---|
| 112 | md.inversion.cost_functions_coefficients(:,2)=1;
|
---|
| 113 | md.inversion.cost_functions_coefficients(:,3)=8e-15;
|
---|
| 114 |
|
---|
| 115 | % Controls
|
---|
| 116 | md.inversion.control_parameters={'FrictionCoefficient'};
|
---|
| 117 | md.inversion.min_parameters=1*ones(md.mesh.numberofvertices,1);
|
---|
| 118 | md.inversion.max_parameters=200*ones(md.mesh.numberofvertices,1);
|
---|
| 119 |
|
---|
| 120 | % Additional parameters
|
---|
| 121 | md.stressbalance.restol=0.01;
|
---|
| 122 | md.stressbalance.reltol=0.1;
|
---|
| 123 | md.stressbalance.abstol=NaN;
|
---|
| 124 |
|
---|
| 125 | % Solve
|
---|
| 126 | md.toolkits=toolkits;
|
---|
| 127 | md.cluster=generic('name',oshostname,'np',2);
|
---|
[21057] | 128 | md=solve(md,'Stressbalance');
|
---|
[18198] | 129 |
|
---|
| 130 | % Update model friction fields accordingly
|
---|
| 131 | md.friction.coefficient=md.results.StressbalanceSolution.FrictionCoefficient;
|
---|
| 132 |
|
---|
| 133 | plotmodel(md,'data',md.friction.coefficient)
|
---|
| 134 |
|
---|
| 135 | % Save model
|
---|
[20754] | 136 | save ./Models/PIG_Control_drag md;
|
---|
[18198] | 137 | end
|
---|
| 138 |
|
---|
[21129] | 139 | if any(steps==5) %Plot #5
|
---|
[18198] | 140 |
|
---|
[20754] | 141 | md = loadmodel('./Models/PIG_Control_drag');
|
---|
[18198] | 142 |
|
---|
[21759] | 143 | plotmodel(md,...
|
---|
[18198] | 144 | 'data',md.initialization.vel,'title','Observed velocity',...
|
---|
| 145 | 'data',md.results.StressbalanceSolution.Vel,'title','Modeled Velocity',...
|
---|
| 146 | 'data',md.geometry.base,'title','Bed elevation',...
|
---|
| 147 | 'data',md.results.StressbalanceSolution.FrictionCoefficient,'title','Friction Coefficient',...
|
---|
[21759] | 148 | 'colorbar#all','on','colorbartitle#1-2','(m/yr)',...
|
---|
[18198] | 149 | 'caxis#1-2',([1.5,4000]),...
|
---|
[21759] | 150 | 'colorbartitle#3','(m)', 'log#1-2',10);
|
---|
[18198] | 151 | end
|
---|
| 152 |
|
---|
[21129] | 153 | if any(steps==6) %Higher-Order #6
|
---|
[18198] | 154 |
|
---|
| 155 | % Load Model
|
---|
[20951] | 156 |
|
---|
[18269] | 157 | % Disable inversion
|
---|
[20951] | 158 |
|
---|
[18260] | 159 | % Extrude Mesh
|
---|
[20951] | 160 |
|
---|
[18269] | 161 | % Set Flowequation
|
---|
[20951] | 162 |
|
---|
[18198] | 163 | % Solve
|
---|
[20951] | 164 |
|
---|
[18198] | 165 | % Save Model
|
---|
| 166 |
|
---|
| 167 | end
|
---|
| 168 |
|
---|
[21129] | 169 | if any(steps==7) %Plot #7
|
---|
[18198] | 170 |
|
---|
[20754] | 171 | mdHO = loadmodel('./Models/PIG_ModelHO');
|
---|
| 172 | mdSSA = loadmodel('./Models/PIG_Control_drag');
|
---|
[18198] | 173 |
|
---|
| 174 | basal=find(mdHO.mesh.vertexonbase);
|
---|
| 175 | surf=find(mdHO.mesh.vertexonsurface);
|
---|
| 176 |
|
---|
[20795] | 177 | plotmodel(mdHO,'nlines',3,'ncols',2,'axis#all','equal',...
|
---|
[18269] | 178 | 'data',mdHO.initialization.vel,'title','Observed velocity',...
|
---|
[18198] | 179 | 'data',(mdHO.results.StressbalanceSolution.Vel(surf)-mdHO.initialization.vel(surf)),'title','(HO-observed) velocities',...
|
---|
| 180 | 'data',mdSSA.results.StressbalanceSolution.Vel,'title','Modeled SSA Velocity',...
|
---|
| 181 | 'data',(mdHO.results.StressbalanceSolution.Vel(surf)-mdSSA.results.StressbalanceSolution.Vel),'title','(HO-SSA) velocities',...
|
---|
[18269] | 182 | 'data',mdHO.results.StressbalanceSolution.Vel,'title','Modeled HO surface Velocities',...
|
---|
[18198] | 183 | 'data',(mdHO.results.StressbalanceSolution.Vel(surf)-mdHO.results.StressbalanceSolution.Vel(basal)),'title','(HOsurf-HO base) velocities',...
|
---|
| 184 | 'caxis#1',([1.5,4000]),'caxis#3',([1.5,4000]),'caxis#5',([1.5,4000]),...
|
---|
| 185 | 'colorbar#all','on','view#all',2,...
|
---|
[21759] | 186 | 'colorbartitle#all','(m/yr)',...
|
---|
[18269] | 187 | 'layer#5',1, 'log#1', 10,'log#3', 10,'log#5', 10);
|
---|
[18198] | 188 | end
|
---|