Changeset 14106 for issm/trunk-jpl/test/Par/RoundSheetStaticEISMINT.par
- Timestamp:
- 12/07/12 11:09:49 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/Par/RoundSheetStaticEISMINT.par
r13137 r14106 2 2 hmin=0.01; 3 3 hmax=2756.7; 4 radius= (sqrt((md.mesh.x).^2+(md.mesh.y).^2));4 radius=sqrt((md.mesh.x).^2+(md.mesh.y).^2); 5 5 radiusmax=max(radius); 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);7 md.geometry.bed=0 *md.geometry.thickness;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.); 7 md.geometry.bed=0.*md.geometry.thickness; 8 8 md.geometry.surface=md.geometry.bed+md.geometry.thickness; 9 9 10 10 disp(' creating drag'); 11 md.friction.coefficient=20 *ones(md.mesh.numberofvertices,1); %q=1. %no drag is specified in the analytical solution11 md.friction.coefficient=20.*ones(md.mesh.numberofvertices,1); %q=1. no drag is specified in the analytical solution 12 12 %Take care of iceshelves: no basal drag 13 13 pos=find(md.mask.elementonfloatingice); 14 md.friction.coefficient(md.mesh.elements(pos,:))=0 ;14 md.friction.coefficient(md.mesh.elements(pos,:))=0.; 15 15 md.friction.p=ones(md.mesh.numberofelements,1); 16 16 md.friction.q=ones(md.mesh.numberofelements,1); … … 18 18 disp(' creating temperatures'); 19 19 tmin=238.15; %K 20 st=1.67*10^-2/1000 ; %k/m;21 md.initialization.temperature= (tmin+st*radius);20 st=1.67*10^-2/1000.; %k/m 21 md.initialization.temperature=tmin+st*radius; 22 22 md.basalforcings.geothermalflux=4.2*10^-2*ones(md.mesh.numberofvertices,1); 23 23 24 disp(' creating flow law param ter');25 md.materials.rheology_B=6.81*10^ (7)*ones(md.mesh.numberofvertices,1); %to have the same B as the analytical solution26 md.materials.rheology_n=3 *ones(md.mesh.numberofelements,1);24 disp(' creating flow law parameter'); 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); 27 27 28 28 disp(' creating surface mass balance'); 29 29 smb_max=0.5; %m/yr 30 sb=10^-2/1000 ; %m/yr/m31 rel=450 *1000; %m30 sb=10^-2/1000.; %m/yr/m 31 rel=450.*1000.; %m 32 32 md.surfaceforcings.mass_balance=min(smb_max,sb*(rel-radius)); 33 33 34 34 disp(' creating velocities'); 35 35 constant=0.3; 36 md.inversion.vx_obs=constant/2 *md.mesh.x.*(md.geometry.thickness).^-1;37 md.inversion.vy_obs=constant/2 *md.mesh.y.*(md.geometry.thickness).^-1;38 md.inversion.vel_obs= (sqrt((md.inversion.vx_obs).^2+(md.inversion.vy_obs).^2));36 md.inversion.vx_obs=constant/2.*md.mesh.x.*(md.geometry.thickness).^-1; 37 md.inversion.vy_obs=constant/2.*md.mesh.y.*(md.geometry.thickness).^-1; 38 md.inversion.vel_obs=sqrt((md.inversion.vx_obs).^2+(md.inversion.vy_obs).^2); 39 39 md.initialization.vx=zeros(md.mesh.numberofvertices,1); 40 40 md.initialization.vy=zeros(md.mesh.numberofvertices,1); … … 43 43 44 44 %Deal with boundary conditions: 45 disp(' boundary conditions for diagnostic model: 45 disp(' boundary conditions for diagnostic model:'); 46 46 md=SetMarineIceSheetBC(md,'../Exp/RoundFrontEISMINT.exp'); 47 47 48 radius=sqrt((md.mesh.x). *md.mesh.x+(md.mesh.y).*md.mesh.y);48 radius=sqrt((md.mesh.x).^2+(md.mesh.y).^2); 49 49 pos=find(radius==min(radius)); 50 md.mesh.x(pos)=0 ; md.mesh.y(pos)=0; %the closest node to the center is changed to be exactly at the center50 md.mesh.x(pos)=0.; md.mesh.y(pos)=0.; %the closest node to the center is changed to be exactly at the center 51 51 52 md.diagnostic.spcvx(pos)=0 ;53 md.diagnostic.spcvy(pos)=0 ;54 md.diagnostic.spcvz(pos)=0 ;52 md.diagnostic.spcvx(pos)=0.; 53 md.diagnostic.spcvy(pos)=0.; 54 md.diagnostic.spcvz(pos)=0.;
Note:
See TracChangeset
for help on using the changeset viewer.