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

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

merged trunk-jpl and trunk for revision 13974

File size: 719 bytes
Line 
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.verbose=verbose('autodiff',true);
9md=solve(md,DiagnosticSolutionEnum());
10
11%Fields and tolerances to track changes
12field_names ={'Vx','Vy','Vz','Vel','Pressure'};
13field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
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.