source: issm/trunk/test/NightlyRun/test233.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: 3.1 KB
Line 
1md=triangle(model(),'../Exp/Square.exp',200000.);
2md=setmask(md,'all','');
3md=parameterize(md,'../Par/SquareShelf.par');
4md=extrude(md,3,1.);
5md=setflowequation(md,'HO','all');
6md.cluster=generic('name',oshostname(),'np',3);
7md.thermal.spctemperature=[md.thermal.spctemperature, md.thermal.spctemperature+5.; 1. 2.];
8md.timestepping.time_step=0.5;
9md.timestepping.final_time=2.;
10md=solve(md,TransientSolutionEnum());
11
12%Fields and tolerances to track changes
13field_names ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','BasalforcingsGroundediceMeltingRate1', ...
14 'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','BasalforcingsGroundediceMeltingRate2', ...
15 'Vx3','Vy3','Vz3','Vel3','Pressure3','Bed3','Surface3','Thickness3','Temperature3','BasalforcingsGroundediceMeltingRate3', ...
16 'Vx4','Vy4','Vz4','Vel4','Pressure4','Bed4','Surface4','Thickness4','Temperature4','BasalforcingsGroundediceMeltingRate4'};
17field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09, ...
18 1e-09,1e-09,1e-08,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-06, ...
19 1e-09,1e-09,1e-08,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-06, ...
20 1e-09,1e-09,1e-08,1e-09,1e-09,1e-09,1e-09,1e-09,1e-09,1e-06};
21field_values={...
22 (md.results.TransientSolution(1).Vx),...
23 (md.results.TransientSolution(1).Vy),...
24 (md.results.TransientSolution(1).Vz),...
25 (md.results.TransientSolution(1).Vel),...
26 (md.results.TransientSolution(1).Pressure),...
27 (md.results.TransientSolution(1).Base),...
28 (md.results.TransientSolution(1).Surface),...
29 (md.results.TransientSolution(1).Thickness),...
30 (md.results.TransientSolution(1).Temperature),...
31 (md.results.TransientSolution(1).BasalforcingsGroundediceMeltingRate),...
32 (md.results.TransientSolution(2).Vx),...
33 (md.results.TransientSolution(2).Vy),...
34 (md.results.TransientSolution(2).Vz),...
35 (md.results.TransientSolution(2).Vel),...
36 (md.results.TransientSolution(2).Pressure),...
37 (md.results.TransientSolution(2).Base),...
38 (md.results.TransientSolution(2).Surface),...
39 (md.results.TransientSolution(2).Thickness),...
40 (md.results.TransientSolution(2).Temperature),...
41 (md.results.TransientSolution(2).BasalforcingsGroundediceMeltingRate),...
42 (md.results.TransientSolution(3).Vx),...
43 (md.results.TransientSolution(3).Vy),...
44 (md.results.TransientSolution(3).Vz),...
45 (md.results.TransientSolution(3).Vel),...
46 (md.results.TransientSolution(3).Pressure),...
47 (md.results.TransientSolution(3).Base),...
48 (md.results.TransientSolution(3).Surface),...
49 (md.results.TransientSolution(3).Thickness),...
50 (md.results.TransientSolution(3).Temperature),...
51 (md.results.TransientSolution(3).BasalforcingsGroundediceMeltingRate),...
52 (md.results.TransientSolution(4).Vx),...
53 (md.results.TransientSolution(4).Vy),...
54 (md.results.TransientSolution(4).Vz),...
55 (md.results.TransientSolution(4).Vel),...
56 (md.results.TransientSolution(4).Pressure),...
57 (md.results.TransientSolution(4).Base),...
58 (md.results.TransientSolution(4).Surface),...
59 (md.results.TransientSolution(4).Thickness),...
60 (md.results.TransientSolution(4).Temperature),...
61 (md.results.TransientSolution(4).BasalforcingsGroundediceMeltingRate),...
62 };
Note: See TracBrowser for help on using the repository browser.