source: issm/trunk-jpl/test/NightlyRun/test226.m@ 13581

Last change on this file since 13581 was 13581, checked in by jschierm, 12 years ago

CHG: Functions should have argument lists (and other cosmetics).

File size: 1.6 KB
RevLine 
[13581]1md=triangle(model(),'../Exp/Square.exp',150000);
[9641]2md=setmask(md,'all','');
[7045]3md=parameterize(md,'../Par/SquareShelf.par');
[9664]4md=setflowequation(md,'macayeal','all');
[8589]5md.cluster=generic('name',oshostname(),'np',3);
[13580]6md.timestepping.time_adapt=1.;
7md.timestepping.final_time=10.;
[13581]8md=solve(md,TransientSolutionEnum());
[7045]9
10%Fields and tolerances to track changes
11field_names ={'Vx1','Vy1','Vel1','Pressure1','Bed1','Surface1','Thickness1','Vx2','Vy2','Vel2','Pressure2','Bed2','Surface2','Thickness2','Vx3','Vy3','Vel3','Pressure3','Bed3','Surface3','Thickness3'};
12field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13};
13field_values={...
[10976]14 (md.results.TransientSolution(1).Vx),...
15 (md.results.TransientSolution(1).Vy),...
16 (md.results.TransientSolution(1).Vel),...
17 (md.results.TransientSolution(1).Pressure),...
18 (md.results.TransientSolution(1).Bed),...
19 (md.results.TransientSolution(1).Surface),...
20 (md.results.TransientSolution(1).Thickness),...
21 (md.results.TransientSolution(2).Vx),...
22 (md.results.TransientSolution(2).Vy),...
23 (md.results.TransientSolution(2).Vel),...
24 (md.results.TransientSolution(2).Pressure),...
25 (md.results.TransientSolution(2).Bed),...
26 (md.results.TransientSolution(2).Surface),...
27 (md.results.TransientSolution(2).Thickness),...
28 (md.results.TransientSolution(3).Vx),...
29 (md.results.TransientSolution(3).Vy),...
30 (md.results.TransientSolution(3).Vel),...
31 (md.results.TransientSolution(3).Pressure),...
32 (md.results.TransientSolution(3).Bed),...
33 (md.results.TransientSolution(3).Surface),...
34 (md.results.TransientSolution(3).Thickness),...
[7045]35 };
Note: See TracBrowser for help on using the repository browser.