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

Last change on this file since 21341 was 21341, checked in by Mathieu Morlighem, 8 years ago

merged trunk-jpl and trunk for revision 21337

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