source: issm/trunk/test/NightlyRun/test402.m@ 19105

Last change on this file since 19105 was 19105, checked in by Mathieu Morlighem, 10 years ago

merged trunk-jpl and trunk for revision 19103

File size: 719 bytes
Line 
1%Test Name: SquareSheetShelfStressSSA3d
2md=triangle(model(),'../Exp/Square.exp',150000.);
3md=setmask(md,'../Exp/SquareShelf.exp','');
4md=parameterize(md,'../Par/SquareSheetShelf.par');
5md=extrude(md,4,1.);
6md=setflowequation(md,'SSA','all');
7md.cluster=generic('name',oshostname(),'np',3);
8md=solve(md,StressbalanceSolutionEnum());
9
10%Fields and tolerances to track changes
11field_names ={'Vx','Vy','Vz','Vel','Pressure'};
12field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
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.