source: issm/trunk/test/NightlyRun/test2082.m@ 15396

Last change on this file since 15396 was 15396, checked in by Mathieu Morlighem, 12 years ago

merged trunk-jpl and trunk for revision 15394

File size: 985 bytes
Line 
1% Benchmark experiments (Figure A2d Ivins and James, 1999, Geophys. J. Int.)
2md=triangle(model(),'../Exp/RoundFrontEISMINT.exp',200000.);
3md=setmask(md,'','');
4md=parameterize(md,'../Par/GiaBenchmarksCD.par');
5
6%% indicate what you want to compute
7md.gia.cross_section_shape=2; % for elliptical edge
8
9%% define loading history
10md.timestepping.start_time=1000.3; % for t \approx 1 kyr
11md.timestepping.final_time=2500000; % 2,500 kyr
12md.geometry.thickness=[...
13 [md.geometry.thickness*0.0; 0.0],...
14 [md.geometry.thickness/2.0; 0.1],...
15 [md.geometry.thickness; 0.2],...
16 [md.geometry.thickness; md.timestepping.start_time],...
17 ];
18
19%% solve for GIA deflection
20md.cluster=generic('name',oshostname(),'np',3);
21md.verbose=verbose('1111111');
22md=solve(md,GiaSolutionEnum());
23
24%Fields and tolerances to track changes
25field_names ={'GiaW','GiadWdt'};
26field_tolerances={1e-13,1e-13};
27field_values={...
28 (md.results.GiaSolution.GiaW),...
29 (md.results.GiaSolution.GiadWdt),...
30 };
Note: See TracBrowser for help on using the repository browser.