source: issm/branches/trunk-larour-NatGeoScience2016/test/NightlyRun/test2083.m@ 21759

Last change on this file since 21759 was 21759, checked in by Eric.Larour, 8 years ago

CHG: merged branch back to trunk-jpl 21754.

File size: 1016 bytes
Line 
1%Test Name: GiaIvinsBenchmarksAB2dD3
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/GiaIvinsBenchmarksCD.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=2400000; % for t \approx \infty
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.