Changeset 14130


Ignore:
Timestamp:
12/11/12 10:22:48 (12 years ago)
Author:
seroussi
Message:

Added solution

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/workshop/2012/Talks/07_Ice_flow_models/Code/eismint.m

    r14127 r14130  
    11md=model();
    22
    3 %Create mesh with roundmesh and remove 'return;'
    4 return;
     3%Create mesh with roundmesh
     4md=roundmesh(md,750000,30000);
    55
    66%Set mask
    7 return;
     7md=setmask(md,'','');
    88
    99%Parameterize model
    10 return;
     10md=parameterize(md,'EISMINT.par');
    1111
    1212%We extrude the model to have a 3d model
    13 return;
     13md=extrude(md,10,1);
    1414
    1515%Set ice flow approximation
    16 return;
     16md=setflowequation(md,’hutter’,'all');
    1717
    1818%Create boundary conditions: zero velocity on the bed
    19 return;
     19pos=find(md.mesh.vertexonbed);
     20md.diagnostic.spcvx(pos)=0;
     21md.diagnostic.spcvy(pos)=0;
     22md.diagnostic.spcvz(pos)=0;
    2023
    2124%Go Solve
Note: See TracChangeset for help on using the changeset viewer.