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

Last change on this file since 18068 was 18068, checked in by seroussi, 11 years ago

NEW: reorganizing basal melting

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