source: issm/trunk-jpl/test/NightlyRun/test101.m@ 16363

Last change on this file since 16363 was 16363, checked in by Eric.Larour, 11 years ago

CHG: changing requested outputs from enums to strings

File size: 919 bytes
RevLine 
[13670]1md=triangle(model(),'../Exp/Square.exp',50000.);
[9641]2md=setmask(md,'all','');
[4963]3md=parameterize(md,'../Par/SquareShelfConstrained.par');
[15565]4md=setflowequation(md,'SSA','all');
[14732]5md.cluster=generic('name',oshostname(),'np',3);
[16363]6md.stressbalance.requested_outputs={'StressTensor'};
7md.verbose=verbose('11111111');
[15771]8md=solve(md,StressbalanceSolutionEnum());
[5098]9
10%Fields and tolerances to track changes
[11230]11field_names ={'Vx','Vy','Vel','Pressure',...
12 'StressTensorxx','StressTensoryy','StressTensorxy'};
13field_tolerances={1e-13,1e-13,1e-13,1e-13,...
14 1e-13,1e-13,1e-13};
[5098]15field_values={...
[15771]16 (md.results.StressbalanceSolution.Vx),...
17 (md.results.StressbalanceSolution.Vy),...
18 (md.results.StressbalanceSolution.Vel),...
19 (md.results.StressbalanceSolution.Pressure),...
20 (md.results.StressbalanceSolution.StressTensorxx),...
21 (md.results.StressbalanceSolution.StressTensoryy),...
22 (md.results.StressbalanceSolution.StressTensorxy),...
[5098]23 };
Note: See TracBrowser for help on using the repository browser.