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

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

merged trunk-jpl and trunk for revision 19103

File size: 2.5 KB
Line 
1%Test Name: SquareSheetShelfTranMHOPenalties
2md=triangle(model(),'../Exp/Square.exp',180000.);
3md=setmask(md,'../Exp/SquareShelf.exp','');
4md=parameterize(md,'../Par/SquareSheetShelf.par');
5md=extrude(md,3,1.);
6md=setflowequation(md,'SSA','../Exp/SquareHalfRight.exp','fill','HO','coupling','penalties');
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', ...
13 'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','BasalforcingsGroundediceMeltingRate3'};
14field_tolerances={...
15 1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,1e-05,...
16 1e-03,1e-03,1e-02,1e-03,1e-02,1e-04,1e-01,1e-03,1e-01,1e-01,...
17 1e-02,1e-02,1e-01,1e-02,1e-01,1e-04,1e-04,1e-04,1e-04,1e-01};
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.