source: issm/trunk/test/NightlyRun/test301.m

Last change on this file was 21341, checked in by Mathieu Morlighem, 8 years ago

merged trunk-jpl and trunk for revision 21337

File size: 622 bytes
RevLine 
[19105]1%Test Name: SquareSheetConstrainedStressSSA2d
[13975]2md=triangle(model(),'../Exp/Square.exp',150000.);
[9641]3md=setmask(md,'','');
[4975]4md=parameterize(md,'../Par/SquareSheetConstrained.par');
[16137]5md=setflowequation(md,'SSA','all');
[8589]6md.cluster=generic('name',oshostname(),'np',3);
[21341]7md=solve(md,'Stressbalance');
[5098]8
9%Fields and tolerances to track changes
10field_names ={'Vx','Vy','Vel','Pressure'};
11field_tolerances={1e-13,1e-13,1e-13,1e-13};
12field_values={...
[16137]13 (md.results.StressbalanceSolution.Vx),...
14 (md.results.StressbalanceSolution.Vy),...
15 (md.results.StressbalanceSolution.Vel),...
16 (md.results.StressbalanceSolution.Pressure),...
[5098]17 };
Note: See TracBrowser for help on using the repository browser.