source: issm/trunk/test/NightlyRun/test3002.m@ 13395

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

merged trunk-jpl and trunk for revision 13393

File size: 676 bytes
RevLine 
[13258]1md=triangle(model,'../Exp/Square.exp',180000);
2md=setmask(md,'all','');
3md=parameterize(md,'../Par/SquareShelfConstrained.par');
4md=extrude(md,3,2);
5md=setflowequation(md,'macayeal','all');
6md.cluster=generic('name',oshostname(),'np',3);
7md.autodiff.isautodiff=true;
8md=solve(md,DiagnosticSolutionEnum);
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.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.