source: issm/trunk-jpl/test/NightlyRun/test505.m@ 19049

Last change on this file since 19049 was 19049, checked in by Mathieu Morlighem, 10 years ago

NEW: test name is now included in the file itself so that people don't forget to include it

File size: 1.7 KB
Line 
1%Test Name: PigTranSSA3d
2md=triangle(model(),'../Exp/Pig.exp',30000.);
3md=setmask(md,'../Exp/PigShelves.exp','../Exp/PigIslands.exp');
4md=parameterize(md,'../Par/Pig.par');
5md=extrude(md,3,1.);
6md=setflowequation(md,'SSA','all');
7md.cluster=generic('name',oshostname(),'np',3);
8md=solve(md,TransientSolutionEnum());
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'};
13field_tolerances={1e-12,1e-12,3e-10,1e-12,1e-13,1e-11,5e-12,9e-12,1e-13,5e-9,...
14 5e-11,5e-11,1e-10,2e-11,7e-12,1e-11,1e-11,5e-12,1e-11,2e-8};
15field_values={...
16 (md.results.TransientSolution(1).Vx),...
17 (md.results.TransientSolution(1).Vy),...
18 (md.results.TransientSolution(1).Vz),...
19 (md.results.TransientSolution(1).Vel),...
20 (md.results.TransientSolution(1).Pressure),...
21 (md.results.TransientSolution(1).Base),...
22 (md.results.TransientSolution(1).Surface),...
23 (md.results.TransientSolution(1).Thickness),...
24 (md.results.TransientSolution(1).Temperature),...
25 (md.results.TransientSolution(1).BasalforcingsGroundediceMeltingRate),...
26 (md.results.TransientSolution(2).Vx),...
27 (md.results.TransientSolution(2).Vy),...
28 (md.results.TransientSolution(2).Vz),...
29 (md.results.TransientSolution(2).Vel),...
30 (md.results.TransientSolution(2).Pressure),...
31 (md.results.TransientSolution(2).Base),...
32 (md.results.TransientSolution(2).Surface),...
33 (md.results.TransientSolution(2).Thickness),...
34 (md.results.TransientSolution(2).Temperature),...
35 (md.results.TransientSolution(2).BasalforcingsGroundediceMeltingRate),...
36 };
Note: See TracBrowser for help on using the repository browser.