[15393] | 1 | Index: ../trunk-jpl/test/NightlyRun/test2001.m
|
---|
| 2 | ===================================================================
|
---|
| 3 | --- ../trunk-jpl/test/NightlyRun/test2001.m (revision 14841)
|
---|
| 4 | +++ ../trunk-jpl/test/NightlyRun/test2001.m (revision 14842)
|
---|
| 5 | @@ -3,12 +3,24 @@
|
---|
| 6 | md=setmask(md,'','');
|
---|
| 7 | md=parameterize(md,'../Par/SquareSheetConstrained.par');
|
---|
| 8 |
|
---|
| 9 | +%% indicate what you want to compute
|
---|
| 10 | +md.gia.output_rates=1; % just want "w" solution
|
---|
| 11 | +md.gia.cross_section_shape=1; % for square-edged x-section
|
---|
| 12 | +
|
---|
| 13 | %% define loading history
|
---|
| 14 | md.timestepping.start_time=2400000; %2,400 kyr
|
---|
| 15 | -md.timestepping.final_time=2500000; %2,400 kyr
|
---|
| 16 | +md.timestepping.final_time=2500000; %2,500 kyr
|
---|
| 17 | +% In order to run Ivins1999 benchmarks, for now, we do things manually as follows:
|
---|
| 18 | +% 1. numtimes is fixed to be five
|
---|
| 19 | +% 2. final_time given above is hard-coded in "GiaDeflectionCorex.cpp"
|
---|
| 20 | +% 3. evaluation time = start_time
|
---|
| 21 | +% 4. define new load times, according to the chosen evaluation time (care that general load history is not altered). This is really important, because of #1 and also becasue of the fact that futre loading times are not recognized.
|
---|
| 22 | +% 5. Ice thickness assoiated with evaluation time is actually the same at final_time
|
---|
| 23 | md.geometry.thickness=[...
|
---|
| 24 | - zeros(md.mesh.numberofvertices+1,1),...
|
---|
| 25 | - [md.geometry.thickness; 1.0e-4],...
|
---|
| 26 | + [md.geometry.thickness*0.0; 0.0],...
|
---|
| 27 | + [md.geometry.thickness/2.0; 0.1],...
|
---|
| 28 | + [md.geometry.thickness; 0.2],...
|
---|
| 29 | + [md.geometry.thickness; 1.0],...
|
---|
| 30 | [md.geometry.thickness; md.timestepping.start_time],...
|
---|
| 31 | ];
|
---|
| 32 |
|
---|