source: issm/branches/trunk-jpl-damage/test/NightlyRun/test457.m@ 11684

Last change on this file since 11684 was 11684, checked in by cborstad, 13 years ago

merged revisions 11428:11680 from trunk-jpl into branches/trunk-jpl-damage

File size: 682 bytes
Line 
1md=triangle(model,'../Exp/Square.exp',180000);
2md=setmask(md,'../Exp/SquareShelf.exp','');
3md=parameterize(md,'../Par/SquareSheetShelf.par');
4md=extrude(md,5,1);
5md=setflowequation(md,'pattyn','all');
6md.diagnostic.isnewton=1;
7md.diagnostic.restol=0.0001;
8md.cluster=none;
9md=solve(md,DiagnosticSolutionEnum);
10
11%Fields and tolerances to track changes
12field_names ={'Vx','Vy','Vz','Vel','Pressure'};
13field_tolerances={1e-09,1e-09,1e-09,1e-09,1e-09};
14field_values={...
15 (md.results.DiagnosticSolution.Vx),...
16 (md.results.DiagnosticSolution.Vy),...
17 (md.results.DiagnosticSolution.Vz),...
18 (md.results.DiagnosticSolution.Vel),...
19 (md.results.DiagnosticSolution.Pressure),...
20 };
Note: See TracBrowser for help on using the repository browser.