source: issm/trunk-jpl/test/NightlyRun/test209.m@ 23619

Last change on this file since 23619 was 23619, checked in by seroussi, 6 years ago

CHG: tolerance test209

File size: 2.4 KB
RevLine 
[19049]1%Test Name: SquareShelfTranSSA3d
[13670]2md=triangle(model(),'../Exp/Square.exp',180000.);
[9641]3md=setmask(md,'all','');
[4961]4md=parameterize(md,'../Par/SquareShelf.par');
[13671]5md=extrude(md,3,1.);
[15565]6md=setflowequation(md,'SSA','all');
[8589]7md.cluster=generic('name',oshostname(),'np',3);
[21056]8md=solve(md,'Transient');
[5098]9
10%Fields and tolerances to track changes
[18068]11field_names ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','BasalforcingsGroundediceMeltingRate1', ...
12 'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','BasalforcingsGroundediceMeltingRate2', ...
13 'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','BasalforcingsGroundediceMeltingRate3'};
[11257]14field_tolerances={...
15 1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-8,...
[23619]16 1e-13,1e-13,3e-9,1e-13,3.8e-11,3.85e-11,3.85e-11,3.85e-11,1e-13,3e-8,...
[17787]17 5e-11,6e-12,1e-08,6e-12,3.9e-11,1e-10,1e-10,1e-10,9e-12,5e-8};
[5098]18field_values={...
[10976]19 (md.results.TransientSolution(1).Vx),...
20 (md.results.TransientSolution(1).Vy),...
21 (md.results.TransientSolution(1).Vz),...
22 (md.results.TransientSolution(1).Vel),...
23 (md.results.TransientSolution(1).Pressure),...
[17555]24 (md.results.TransientSolution(1).Base),...
[10976]25 (md.results.TransientSolution(1).Surface),...
26 (md.results.TransientSolution(1).Thickness),...
27 (md.results.TransientSolution(1).Temperature),...
[18068]28 (md.results.TransientSolution(1).BasalforcingsGroundediceMeltingRate),...
[10976]29 (md.results.TransientSolution(2).Vx),...
30 (md.results.TransientSolution(2).Vy),...
31 (md.results.TransientSolution(2).Vz),...
32 (md.results.TransientSolution(2).Vel),...
33 (md.results.TransientSolution(2).Pressure),...
[17555]34 (md.results.TransientSolution(2).Base),...
[10976]35 (md.results.TransientSolution(2).Surface),...
36 (md.results.TransientSolution(2).Thickness),...
37 (md.results.TransientSolution(2).Temperature),...
[18068]38 (md.results.TransientSolution(2).BasalforcingsGroundediceMeltingRate),...
[10976]39 (md.results.TransientSolution(3).Vx),...
40 (md.results.TransientSolution(3).Vy),...
41 (md.results.TransientSolution(3).Vz),...
42 (md.results.TransientSolution(3).Vel),...
43 (md.results.TransientSolution(3).Pressure),...
[17555]44 (md.results.TransientSolution(3).Base),...
[10976]45 (md.results.TransientSolution(3).Surface),...
46 (md.results.TransientSolution(3).Thickness),...
47 (md.results.TransientSolution(3).Temperature),...
[18068]48 (md.results.TransientSolution(3).BasalforcingsGroundediceMeltingRate),...
[5098]49 };
Note: See TracBrowser for help on using the repository browser.