source: issm/trunk-jpl/test/NightlyRun/test286.m@ 15922

Last change on this file since 15922 was 15922, checked in by Mathieu Morlighem, 12 years ago

CHG: now finite elements are specified as strings instead of integers

File size: 681 bytes
Line 
1md=triangle(model(),'../Exp/Square.exp',150000.);
2md=setmask(md,'all','');
3md=parameterize(md,'../Par/SquareShelf.par');
4md=extrude(md,3,2.);
5md=setflowequation(md,'HO','all');
6md.flowequation.fe_HO='P2xP1';
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-9,1e-9,1e-9,1e-9,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.