source: issm/oecreview/Archive/14312-15392/ISSM-14841-14842.diff

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

NEW: adding Archive/14312-15392 for oecreview

File size: 1.5 KB
  • ../trunk-jpl/test/NightlyRun/test2001.m

     
    33md=setmask(md,'','');
    44md=parameterize(md,'../Par/SquareSheetConstrained.par');
    55
     6%% indicate what you want to compute
     7md.gia.output_rates=1;           % just want "w" solution
     8md.gia.cross_section_shape=1;    % for square-edged x-section
     9
    610%% define loading history
    711md.timestepping.start_time=2400000; %2,400 kyr
    8 md.timestepping.final_time=2500000; %2,400 kyr
     12md.timestepping.final_time=2500000; %2,500 kyr
     13% In order to run Ivins1999 benchmarks, for now, we do things manually as follows:
     14% 1. numtimes is fixed to be five
     15% 2. final_time given above is hard-coded in "GiaDeflectionCorex.cpp"
     16% 3. evaluation time = start_time
     17% 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.
     18% 5. Ice thickness assoiated with evaluation time is actually the same at final_time
    919md.geometry.thickness=[...
    10         zeros(md.mesh.numberofvertices+1,1),...
    11         [md.geometry.thickness; 1.0e-4],...
     20        [md.geometry.thickness*0.0; 0.0],...
     21        [md.geometry.thickness/2.0; 0.1],...
     22        [md.geometry.thickness; 0.2],...
     23        [md.geometry.thickness; 1.0],...
    1224        [md.geometry.thickness; md.timestepping.start_time],...
    1325        ];
    1426
Note: See TracBrowser for help on using the repository browser.