Changeset 25290 for issm/trunk-jpl/test/NightlyRun/test2051.m
- Timestamp:
- 07/18/20 23:19:58 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test2051.m
r25134 r25290 1 %Test Name: GiaIvinsBenchmarksAB2dA 11 %Test Name: GiaIvinsBenchmarksAB2dA 2 2 % Benchmark experiments (Figure A2a Ivins and James, 1999, Geophys. J. Int.) 3 3 md=triangle(model(),'../Exp/RoundFrontEISMINT.exp',200000.); … … 8 8 md.gia.cross_section_shape=1; % for square-edged x-section 9 9 10 % % define loading history10 % evaluation time (termed start_time) 11 11 md.timestepping.start_time=2002100; % after 2 kyr of deglaciation 12 12 md.timestepping.final_time=2500000; % 2,500 kyr 13 14 %% define loading history {{{ 13 15 md.geometry.thickness=[... 14 16 [md.geometry.thickness*0.0; 0.0],... … … 18 20 [md.geometry.thickness*0.0; md.timestepping.start_time],... 19 21 ]; 22 % }}} 23 24 % find out elements that have zero loads throughout the loading history. 25 pos = find(sum(abs(md.geometry.thickness(1:end-1,:)),2)==0); 26 md.mask.ice_levelset(pos)=1; % no-ice. 27 28 md.cluster=generic('name',oshostname(),'np',3); 29 md.verbose=verbose('1111111'); 20 30 21 31 %% solve for GIA deflection 22 md.cluster=generic('name',oshostname(),'np',3);23 md.verbose=verbose('1111111');24 32 md=solve(md,'Gia'); 25 33 34 %Test Name: GiaIvinsBenchmarksAB2dA1 35 U_AB2dA1 = md.results.GiaSolution.UGia; 36 URate_AB2dA1 = md.results.GiaSolution.UGiaRate; 37 38 %Test Name: GiaIvinsBenchmarksAB2dA2 39 %% different evaluation time. {{{ 40 md.timestepping.start_time=2005100; % after 5 kyr of deglaciation 41 md.geometry.thickness(end,end) = md.timestepping.start_time; 42 43 md=solve(md,'Gia'); 44 45 U_AB2dA2 = md.results.GiaSolution.UGia; 46 URate_AB2dA2 = md.results.GiaSolution.UGiaRate; 47 % }}} 48 49 %Test Name: GiaIvinsBenchmarksAB2dA3 50 %% different evaluation time. {{{ 51 md.timestepping.start_time=2010100; % after 10 kyr of deglaciation 52 md.geometry.thickness(end,end) = md.timestepping.start_time; 53 54 md=solve(md,'Gia'); 55 56 U_AB2dA3 = md.results.GiaSolution.UGia; 57 URate_AB2dA3 = md.results.GiaSolution.UGiaRate; 58 % }}} 59 26 60 %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 }; 61 field_names ={'U_AB2dA1','URate_AB2dA1','U_AB2dA2','URate_AB2dA2','U_AB2dA3','URate_AB2dA3'}; 62 field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13}; 63 field_values={U_AB2dA1,URate_AB2dA1,U_AB2dA2,URate_AB2dA2,U_AB2dA3,URate_AB2dA3}; 64
Note:
See TracChangeset
for help on using the changeset viewer.