Changeset 25705
- Timestamp:
- 10/21/20 12:09:49 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/examples/shakti/moulin.par
r23090 r25705 2 2 3 3 % Set up bed topography and ice geometry for a tilted 500m thick slab 4 5 6 7 4 md.geometry.base = .02*md.mesh.x; 5 md.geometry.bed = md.geometry.base; 6 md.geometry.surface = .02*md.mesh.x + 500; 7 md.geometry.thickness = md.geometry.surface - md.geometry.bed; 8 8 9 9 % Define ice sliding velocity (m/yr) 10 11 12 10 md.initialization.vx = 10^-6*md.constants.yts*ones(md.mesh.numberofvertices,1); 11 md.initialization.vy = zeros(md.mesh.numberofvertices,1); 12 md.initialization.pressure=zeros(md.mesh.numberofvertices,1); 13 13 14 14 md.initialization.pressure=zeros(md.mesh.numberofvertices,1); 15 15 16 16 % Materials 17 18 19 20 17 % Ice flow law parameter (note that the standard parameter A=B^(-3)) 18 md.materials.rheology_B= (5e-25)^(-1/3)*ones(md.mesh.numberofvertices,1); 19 md.initialization.temperature=(273)*ones(md.mesh.numberofvertices,1); 20 md.materials.rheology_n=3.*ones(md.mesh.numberofelements,1); 21 21 22 22 %Calving … … 27 27 md.friction=frictionshakti(md.friction); 28 28 md.friction.coefficient=20.*ones(md.mesh.numberofvertices,1); 29 30 29 31 30 %Numerical parameters … … 42 41 md.timestepping.final_time=3.; 43 42 44 %GIA:45 md.gia.lithosphere_thickness=100.*ones(md.mesh.numberofvertices,1); % in km46 md.gia.mantle_viscosity=1.0*10^21*ones(md.mesh.numberofvertices,1); % in Pa.s47 md.materials.lithosphere_shear_modulus=6.7*10^10; % in Pa48 md.materials.lithosphere_density=3.32; % in g/cm^-349 md.materials.mantle_shear_modulus=1.45*10^11; % in Pa50 md.materials.mantle_density=3.34; % in g/cm^-351 52 43 %Boundary conditions: 53 44 md=SetIceSheetBC(md); 54 55 %Change name so that no test have the same name56 A=dbstack;57 if (length(A)>2), md.miscellaneous.name=A(3).file(1:end-2); end58
Note:
See TracChangeset
for help on using the changeset viewer.