source: issm/trunk/test/NightlyRun/test456.m@ 11995

Last change on this file since 11995 was 11995, checked in by Mathieu Morlighem, 13 years ago

merged trunk-jpl and trunk for revision 11994M

File size: 644 bytes
RevLine 
[11585]1md=triangle(model,'../Exp/Square.exp',150000);
2md=setmask(md,'../Exp/SquareShelf.exp','');
3md=parameterize(md,'../Par/SquareSheetShelf.par');
4md=setflowequation(md,'macayeal','all');
5md.diagnostic.isnewton=1;
6md.diagnostic.restol=0.0001;
7md.cluster=generic('name',oshostname(),'np',3);
8md=solve(md,DiagnosticSolutionEnum);
9
10%Fields and tolerances to track changes
11field_names ={'Vx','Vy','Vel','Pressure'};
12field_tolerances={1e-13,1e-13,1e-13,1e-13};
13field_values={...
14 (md.results.DiagnosticSolution.Vx),...
15 (md.results.DiagnosticSolution.Vy),...
16 (md.results.DiagnosticSolution.Vel),...
17 (md.results.DiagnosticSolution.Pressure),...
18 };
Note: See TracBrowser for help on using the repository browser.