source: issm/trunk-jpl/test/NightlyRun/test102.m@ 21049

Last change on this file since 21049 was 21049, checked in by agscott1, 9 years ago

CHG: Replaced Enums with Strings in matlab and python. Updated corresponding cpp code.

File size: 708 bytes
Line 
1%Test Name: SquareShelfConstrainedStressSSA3d
2md=triangle(model(),'../Exp/Square.exp',180000.);
3md=setmask(md,'all','');
4md=parameterize(md,'../Par/SquareShelfConstrained.par');
5md=extrude(md,3,2.);
6md=setflowequation(md,'SSA','all');
7md.cluster=generic('name',oshostname(),'np',3);
8md=solve(md,'StressbalanceSolution');
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.