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

Last change on this file was 21056, checked in by Mathieu Morlighem, 9 years ago

CHG: do not request solution in solution string

File size: 1.7 KB
RevLine 
[19049]1%Test Name: PigTranSSA3d
[13664]2md=triangle(model(),'../Exp/Pig.exp',30000.);
[9641]3md=setmask(md,'../Exp/PigShelves.exp','../Exp/PigIslands.exp');
[4991]4md=parameterize(md,'../Par/Pig.par');
[13674]5md=extrude(md,3,1.);
[15565]6md=setflowequation(md,'SSA','all');
[8589]7md.cluster=generic('name',oshostname(),'np',3);
[21056]8md=solve(md,'Transient');
[5098]9
10%Fields and tolerances to track changes
[18068]11field_names ={'Vx1','Vy1','Vz1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Temperature1','BasalforcingsGroundediceMeltingRate1', ...
12 'Vx2','Vy2','Vz2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Temperature2','BasalforcingsGroundediceMeltingRate2'};
[17060]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};
[5098]15field_values={...
[10976]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),...
[17555]21 (md.results.TransientSolution(1).Base),...
[10976]22 (md.results.TransientSolution(1).Surface),...
23 (md.results.TransientSolution(1).Thickness),...
24 (md.results.TransientSolution(1).Temperature),...
[18068]25 (md.results.TransientSolution(1).BasalforcingsGroundediceMeltingRate),...
[10976]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),...
[17555]31 (md.results.TransientSolution(2).Base),...
[10976]32 (md.results.TransientSolution(2).Surface),...
33 (md.results.TransientSolution(2).Thickness),...
34 (md.results.TransientSolution(2).Temperature),...
[18068]35 (md.results.TransientSolution(2).BasalforcingsGroundediceMeltingRate),...
[5098]36 };
Note: See TracBrowser for help on using the repository browser.