source: issm/trunk/test/NightlyRun/test409.m@ 18301

Last change on this file since 18301 was 18301, checked in by Mathieu Morlighem, 11 years ago

merged trunk-jpl and trunk for revision 18299

File size: 2.4 KB
Line 
1md=triangle(model(),'../Exp/Square.exp',180000.);
2md=setmask(md,'../Exp/SquareShelf.exp','');
3md=parameterize(md,'../Par/SquareSheetShelf.par');
4md=extrude(md,3,1.);
5md=setflowequation(md,'SSA','../Exp/SquareHalfRight.exp','fill','HO','coupling','penalties');
6md.cluster=generic('name',oshostname(),'np',3);
7md=solve(md,TransientSolutionEnum());
8
9%Fields and tolerances to track changes
10field_names ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','BasalforcingsGroundediceMeltingRate1', ...
11 'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','BasalforcingsGroundediceMeltingRate2', ...
12 'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','BasalforcingsGroundediceMeltingRate3'};
13field_tolerances={...
14 1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,...
15 1e-03,1e-03,1e-02,1e-03,1e-02,1e-04,1e-01,1e-03,1e-01,1e-01,...
16 1e-02,1e-02,1e-01,1e-02,1e-01,1e-04,1e-04,1e-04,1e-04,1e-01};
17field_values={...
18 (md.results.TransientSolution(1).Vx),...
19 (md.results.TransientSolution(1).Vy),...
20 (md.results.TransientSolution(1).Vz),...
21 (md.results.TransientSolution(1).Vel),...
22 (md.results.TransientSolution(1).Pressure),...
23 (md.results.TransientSolution(1).Base),...
24 (md.results.TransientSolution(1).Surface),...
25 (md.results.TransientSolution(1).Thickness),...
26 (md.results.TransientSolution(1).Temperature),...
27 (md.results.TransientSolution(1).BasalforcingsGroundediceMeltingRate),...
28 (md.results.TransientSolution(2).Vx),...
29 (md.results.TransientSolution(2).Vy),...
30 (md.results.TransientSolution(2).Vz),...
31 (md.results.TransientSolution(2).Vel),...
32 (md.results.TransientSolution(2).Pressure),...
33 (md.results.TransientSolution(2).Base),...
34 (md.results.TransientSolution(2).Surface),...
35 (md.results.TransientSolution(2).Thickness),...
36 (md.results.TransientSolution(2).Temperature),...
37 (md.results.TransientSolution(2).BasalforcingsGroundediceMeltingRate),...
38 (md.results.TransientSolution(3).Vx),...
39 (md.results.TransientSolution(3).Vy),...
40 (md.results.TransientSolution(3).Vz),...
41 (md.results.TransientSolution(3).Vel),...
42 (md.results.TransientSolution(3).Pressure),...
43 (md.results.TransientSolution(3).Base),...
44 (md.results.TransientSolution(3).Surface),...
45 (md.results.TransientSolution(3).Thickness),...
46 (md.results.TransientSolution(3).Temperature),...
47 (md.results.TransientSolution(3).BasalforcingsGroundediceMeltingRate),...
48 };
Note: See TracBrowser for help on using the repository browser.