Changeset 16137 for issm/trunk/test/Par/SquareShelf.par
- Timestamp:
- 09/16/13 09:43:55 (12 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:ignore
-
old new 1 nightlylog 2 configure.sh 1 3 par 2 4 ad
-
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 15397-15401,15403-15487,15489-15701,15704-15735,15737-16076,16082-16133
- Property svn:ignore
-
issm/trunk/test
- Property svn:mergeinfo changed
-
issm/trunk/test/Par/SquareShelf.par
r13395 r16137 6 6 ymin=min(md.mesh.y); 7 7 ymax=max(md.mesh.y); 8 md.geometry.thickness=hmax+(hmin-hmax)*(md.mesh.y-ymin)/(ymax-ymin); 8 xmin=min(md.mesh.x); 9 xmax=max(md.mesh.x); 10 md.geometry.thickness=hmax+(hmin-hmax)*(md.mesh.y-ymin)/(ymax-ymin)+0.1*(hmin-hmax)*(md.mesh.x-xmin)/(xmax-xmin); 9 11 md.geometry.bed=-md.materials.rho_ice/md.materials.rho_water*md.geometry.thickness; 10 12 md.geometry.surface=md.geometry.bed+md.geometry.thickness; … … 28 30 29 31 %Friction 30 pos=find(md.mask.elementonfloatingice);31 32 md.friction.coefficient=20*ones(md.mesh.numberofvertices,1); 32 md.friction.coefficient( md.mesh.elements(pos,:))=0;33 md.friction.coefficient(find(md.mask.groundedice_levelset<0.))=0.; 33 34 md.friction.p=ones(md.mesh.numberofelements,1); 34 35 md.friction.q=ones(md.mesh.numberofelements,1); 35 36 36 37 %Numerical parameters 37 md. diagnostic.viscosity_overshoot=0.3;38 md. prognostic.stabilization=1;38 md.stressbalance.viscosity_overshoot=0.3; 39 md.masstransport.stabilization=1; 39 40 md.thermal.stabilization=1; 40 41 md.settings.waitonlock=30; 41 42 md.verbose=verbose(0); 42 md. diagnostic.restol=0.10;43 md.stressbalance.restol=0.10; 43 44 md.steadystate.reltol=0.02; 44 md. diagnostic.reltol=0.02;45 md. diagnostic.abstol=NaN;45 md.stressbalance.reltol=0.02; 46 md.stressbalance.abstol=NaN; 46 47 md.timestepping.time_step=1; 47 48 md.timestepping.final_time=3;
Note:
See TracChangeset
for help on using the changeset viewer.