Ignore:
Timestamp:
07/18/20 23:19:58 (5 years ago)
Author:
adhikari
Message:

CHG: GIA ivins nightly merged, 2051,52,53 => 2051; 2071,72,73=> 2052; 2081,2082,2083 => 2053

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/NightlyRun/test2051.m

    r25134 r25290  
    1 %Test Name: GiaIvinsBenchmarksAB2dA1
     1%Test Name: GiaIvinsBenchmarksAB2dA
    22% Benchmark experiments (Figure A2a Ivins and James, 1999, Geophys. J. Int.)
    33md=triangle(model(),'../Exp/RoundFrontEISMINT.exp',200000.);
     
    88md.gia.cross_section_shape=1;    % for square-edged x-section
    99
    10 %% define loading history
     10% evaluation time (termed start_time)
    1111md.timestepping.start_time=2002100; % after 2 kyr of deglaciation
    1212md.timestepping.final_time=2500000; % 2,500 kyr
     13
     14%% define loading history {{{
    1315md.geometry.thickness=[...
    1416        [md.geometry.thickness*0.0; 0.0],...
     
    1820        [md.geometry.thickness*0.0; md.timestepping.start_time],...
    1921        ];
     22% }}}
     23
     24% find out elements that have zero loads throughout the loading history.
     25pos = find(sum(abs(md.geometry.thickness(1:end-1,:)),2)==0);
     26md.mask.ice_levelset(pos)=1; % no-ice.
     27
     28md.cluster=generic('name',oshostname(),'np',3);
     29md.verbose=verbose('1111111');
    2030
    2131%% solve for GIA deflection
    22 md.cluster=generic('name',oshostname(),'np',3);
    23 md.verbose=verbose('1111111');
    2432md=solve(md,'Gia');
    2533
     34%Test Name: GiaIvinsBenchmarksAB2dA1
     35U_AB2dA1 = md.results.GiaSolution.UGia;
     36URate_AB2dA1 = md.results.GiaSolution.UGiaRate;
     37
     38%Test Name: GiaIvinsBenchmarksAB2dA2
     39%% different evaluation time. {{{
     40md.timestepping.start_time=2005100; % after 5 kyr of deglaciation
     41md.geometry.thickness(end,end) = md.timestepping.start_time;
     42
     43md=solve(md,'Gia');
     44
     45U_AB2dA2 = md.results.GiaSolution.UGia;
     46URate_AB2dA2 = md.results.GiaSolution.UGiaRate;
     47% }}}
     48
     49%Test Name: GiaIvinsBenchmarksAB2dA3
     50%% different evaluation time. {{{
     51md.timestepping.start_time=2010100; % after 10 kyr of deglaciation
     52md.geometry.thickness(end,end) = md.timestepping.start_time;
     53
     54md=solve(md,'Gia');
     55
     56U_AB2dA3 = md.results.GiaSolution.UGia;
     57URate_AB2dA3 = md.results.GiaSolution.UGiaRate;
     58% }}}
     59
    2660%Fields and tolerances to track changes
    27 field_names     ={'UGia','UGiaRate'};
    28 field_tolerances={1e-13,1e-13};
    29 field_values={...
    30         (md.results.GiaSolution.UGia),...
    31         (md.results.GiaSolution.UGiaRate),...
    32         };
     61field_names     ={'U_AB2dA1','URate_AB2dA1','U_AB2dA2','URate_AB2dA2','U_AB2dA3','URate_AB2dA3'};
     62field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
     63field_values={U_AB2dA1,URate_AB2dA1,U_AB2dA2,URate_AB2dA2,U_AB2dA3,URate_AB2dA3};
     64
Note: See TracChangeset for help on using the changeset viewer.