source: issm/trunk-jpl/test/NightlyRun/test101.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: 866 bytes
Line 
1md=triangle(model(),'../Exp/Square.exp',50000);
2md=setmask(md,'all','');
3md=parameterize(md,'../Par/SquareShelfConstrained.par');
4md=setflowequation(md,'macayeal','all');
5md.cluster=generic('name',oshostname(),'np',3);
6md.diagnostic.requested_outputs=StressTensorEnum();
7md=solve(md,DiagnosticSolutionEnum());
8
9%Fields and tolerances to track changes
10field_names ={'Vx','Vy','Vel','Pressure',...
11 'StressTensorxx','StressTensoryy','StressTensorxy'};
12field_tolerances={1e-13,1e-13,1e-13,1e-13,...
13 1e-13,1e-13,1e-13};
14field_values={...
15 (md.results.DiagnosticSolution.Vx),...
16 (md.results.DiagnosticSolution.Vy),...
17 (md.results.DiagnosticSolution.Vel),...
18 (md.results.DiagnosticSolution.Pressure),...
19 (md.results.DiagnosticSolution.StressTensorxx),...
20 (md.results.DiagnosticSolution.StressTensoryy),...
21 (md.results.DiagnosticSolution.StressTensorxy),...
22 };
Note: See TracBrowser for help on using the repository browser.