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

Last change on this file since 24686 was 24686, checked in by Mathieu Morlighem, 5 years ago

merged trunk-jpl and trunk for revision 24684

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={2e-06,2e-06,2e-05,2e-06,3e-06};
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.