Changeset 14130
- Timestamp:
- 12/11/12 10:22:48 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/workshop/2012/Talks/07_Ice_flow_models/Code/eismint.m
r14127 r14130 1 1 md=model(); 2 2 3 %Create mesh with roundmesh and remove 'return;'4 return;3 %Create mesh with roundmesh 4 md=roundmesh(md,750000,30000); 5 5 6 6 %Set mask 7 return;7 md=setmask(md,'',''); 8 8 9 9 %Parameterize model 10 return;10 md=parameterize(md,'EISMINT.par'); 11 11 12 12 %We extrude the model to have a 3d model 13 return;13 md=extrude(md,10,1); 14 14 15 15 %Set ice flow approximation 16 return;16 md=setflowequation(md,’hutter’,'all'); 17 17 18 18 %Create boundary conditions: zero velocity on the bed 19 return; 19 pos=find(md.mesh.vertexonbed); 20 md.diagnostic.spcvx(pos)=0; 21 md.diagnostic.spcvy(pos)=0; 22 md.diagnostic.spcvz(pos)=0; 20 23 21 24 %Go Solve
Note:
See TracChangeset
for help on using the changeset viewer.