source: issm/trunk/test/Par/ISMIPB.par@ 9481

Last change on this file since 9481 was 9481, checked in by Mathieu Morlighem, 14 years ago

no more firn property in model

  • Property svn:executable set to *
File size: 753 bytes
Line 
1%Ok, start defining model parameters here
2
3disp(' creating thickness');
4md.surface=-md.x*tan(0.5*pi/180);
5md.bed=md.surface-1000+500*sin(md.x*2*pi/max(md.x));
6md.thickness=md.surface-md.bed;
7
8disp(' creating drag');
9md.drag_coefficient=200*ones(md.numberofnodes,1); %q=1.
10%Take care of iceshelves: no basal drag
11pos=find(md.elementoniceshelf);
12md.drag_coefficient(md.elements(pos,:))=0;
13md.drag_p=ones(md.numberofelements,1);
14md.drag_q=ones(md.numberofelements,1);
15
16disp(' creating flow law paramter');
17md.rheology_B=6.8067*10^7*ones(md.numberofnodes,1);
18md.rheology_n=3*ones(md.numberofelements,1);
19
20disp(' boundary conditions for diagnostic model');
21%Create node on boundary fist (because we cannot use mesh)
22md=SetIceSheetBC(md);
Note: See TracBrowser for help on using the repository browser.