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
Line 
1%Test Name: SquareShelfTranSSA3d
2md=triangle(model(),'../Exp/Square.exp',180000.);
3md=setmask(md,'all','');
4md=parameterize(md,'../Par/SquareShelf.par');
5md=extrude(md,3,1.);
6md=setflowequation(md,'SSA','all');
7md.cluster=generic('name',oshostname(),'np',3);
8md=solve(md,'Transient');
9
10%Fields and tolerances to track changes
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'};
14field_tolerances={...
15 1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-8,...
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,...
17 5e-11,6e-12,1e-08,6e-12,3.9e-11,1e-10,1e-10,1e-10,9e-12,5e-8};
18field_values={...
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),...
24 (md.results.TransientSolution(1).Base),...
25 (md.results.TransientSolution(1).Surface),...
26 (md.results.TransientSolution(1).Thickness),...
27 (md.results.TransientSolution(1).Temperature),...
28 (md.results.TransientSolution(1).BasalforcingsGroundediceMeltingRate),...
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),...
34 (md.results.TransientSolution(2).Base),...
35 (md.results.TransientSolution(2).Surface),...
36 (md.results.TransientSolution(2).Thickness),...
37 (md.results.TransientSolution(2).Temperature),...
38 (md.results.TransientSolution(2).BasalforcingsGroundediceMeltingRate),...
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),...
44 (md.results.TransientSolution(3).Base),...
45 (md.results.TransientSolution(3).Surface),...
46 (md.results.TransientSolution(3).Thickness),...
47 (md.results.TransientSolution(3).Temperature),...
48 (md.results.TransientSolution(3).BasalforcingsGroundediceMeltingRate),...
49 };
Note: See TracBrowser for help on using the repository browser.