source: issm/trunk/test/NightlyRun/test421.m@ 22651

Last change on this file since 22651 was 22651, checked in by jdquinn, 7 years ago

CHG: Reverted previous changes to tolerances (should have been committed to trunk-jpl).

File size: 748 bytes
Line 
1%Test Name: SquareSheetShelfStressHOFS3dTiling
2md=triangle(model(),'../Exp/Square.exp',180000.);
3md=setmask(md,'../Exp/SquareShelf.exp','');
4md=parameterize(md,'../Par/SquareSheetShelf.par');
5md=extrude(md,5,1.);
6md=setflowequation(md,'FS','../Exp/SquareHalfRight.exp','fill','HO');
7md.cluster=generic('name',oshostname(),'np',3);
8md=solve(md,'Stressbalance');
9
10%Fields and tolerances to track changes
11field_names ={'Vx','Vy','Vz','Vel','Pressure'};
12field_tolerances={6e-07,6e-07,2e-05,6e-07,6e-07};
13field_values={...
14 (md.results.StressbalanceSolution.Vx),...
15 (md.results.StressbalanceSolution.Vy),...
16 (md.results.StressbalanceSolution.Vz),...
17 (md.results.StressbalanceSolution.Vel),...
18 (md.results.StressbalanceSolution.Pressure),...
19 };
Note: See TracBrowser for help on using the repository browser.