[5117] | 1 | disp(' creating thickness');
|
---|
| 2 | hmin=0.01;
|
---|
| 3 | hmax=2756.7;
|
---|
[9734] | 4 | radius=(sqrt((md.mesh.x).^2+(md.mesh.y).^2));
|
---|
[5117] | 5 | radiusmax=max(radius);
|
---|
[9734] | 6 | md.geometry.thickness=hmin*ones(size(md.mesh.x,1),1)+hmax*(4*((1/2)^(4/3)*ones(size(md.mesh.x,1),1)-((radius)./(2*radiusmax)).^(4/3))).^(3/8);
|
---|
[9691] | 7 | md.geometry.bed=0*md.geometry.thickness;
|
---|
| 8 | md.geometry.surface=md.geometry.bed+md.geometry.thickness;
|
---|
[5117] | 9 |
|
---|
| 10 | disp(' creating drag');
|
---|
[9725] | 11 | md.friction.coefficient=20*ones(md.mesh.numberofvertices,1); %q=1. %no drag is specified in the analytical solution
|
---|
[5117] | 12 | %Take care of iceshelves: no basal drag
|
---|
[9641] | 13 | pos=find(md.mask.elementonfloatingice);
|
---|
[9733] | 14 | md.friction.coefficient(md.mesh.elements(pos,:))=0;
|
---|
[9725] | 15 | md.friction.p=ones(md.mesh.numberofelements,1);
|
---|
| 16 | md.friction.q=ones(md.mesh.numberofelements,1);
|
---|
[5117] | 17 |
|
---|
| 18 | disp(' creating temperatures');
|
---|
| 19 | tmin=238.15; %K
|
---|
| 20 | st=1.67*10^-2/1000; %k/m;
|
---|
[9684] | 21 | md.initialization.temperature=(tmin+st*radius);
|
---|
[9725] | 22 | md.basalforcings.geothermalflux=4.2*10^-2*ones(md.mesh.numberofvertices,1);
|
---|
[5117] | 23 |
|
---|
| 24 | disp(' creating flow law paramter');
|
---|
[9725] | 25 | md.materials.rheology_B=6.81*10^(7)*ones(md.mesh.numberofvertices,1); %to have the same B as the analytical solution
|
---|
| 26 | md.materials.rheology_n=3*ones(md.mesh.numberofelements,1);
|
---|
[11467] | 27 | md.materials.rheology_Z=ones(md.mesh.numberofvertices,1);
|
---|
[5117] | 28 |
|
---|
[8399] | 29 | disp(' creating surface mass balance');
|
---|
| 30 | smb_max=0.5; %m/yr
|
---|
[5117] | 31 | sb=10^-2/1000; %m/yr/m
|
---|
| 32 | rel=450*1000; %m
|
---|
[9607] | 33 | md.surfaceforcings.mass_balance=min(smb_max,sb*(rel-radius));
|
---|
[5117] | 34 |
|
---|
| 35 | disp(' creating velocities');
|
---|
| 36 | constant=0.3;
|
---|
[9734] | 37 | md.inversion.vx_obs=constant/2*md.mesh.x.*(md.geometry.thickness).^-1;
|
---|
| 38 | md.inversion.vy_obs=constant/2*md.mesh.y.*(md.geometry.thickness).^-1;
|
---|
[9681] | 39 | md.inversion.vel_obs=(sqrt((md.inversion.vx_obs).^2+(md.inversion.vy_obs).^2));
|
---|
[9725] | 40 | md.initialization.vx=zeros(md.mesh.numberofvertices,1);
|
---|
| 41 | md.initialization.vy=zeros(md.mesh.numberofvertices,1);
|
---|
| 42 | md.initialization.vz=zeros(md.mesh.numberofvertices,1);
|
---|
| 43 | md.initialization.pressure=zeros(md.mesh.numberofvertices,1);
|
---|
[5117] | 44 |
|
---|
| 45 | %Deal with boundary conditions:
|
---|
| 46 | disp(' boundary conditions for diagnostic model: ');
|
---|
| 47 | md=SetMarineIceSheetBC(md,'../Exp/RoundFrontEISMINT.exp');
|
---|
| 48 |
|
---|
[9734] | 49 | radius=sqrt((md.mesh.x).*md.mesh.x+(md.mesh.y).*md.mesh.y);
|
---|
[5117] | 50 | pos=find(radius==min(radius));
|
---|
[9734] | 51 | md.mesh.x(pos)=0; md.mesh.y(pos)=0; %the closest node to the center is changed to be exactly at the center
|
---|
[5117] | 52 |
|
---|
[9679] | 53 | md.diagnostic.spcvx(pos)=0;
|
---|
| 54 | md.diagnostic.spcvy(pos)=0;
|
---|
| 55 | md.diagnostic.spcvz(pos)=0;
|
---|