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

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

CHG: relaxing tolerances

File size: 657 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=2;
7md.cluster=generic('name',oshostname(),'np',3);
8md=solve(md,DiagnosticSolutionEnum());
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.DiagnosticSolution.Vx),...
15 (md.results.DiagnosticSolution.Vy),...
16 (md.results.DiagnosticSolution.Vz),...
17 (md.results.DiagnosticSolution.Vel),...
18 (md.results.DiagnosticSolution.Pressure),...
19 };
Note: See TracBrowser for help on using the repository browser.