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

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

merged trunk-jpl and trunk for revision 15394

File size: 761 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',1);
7md.autodiff.isautodiff=true;
8md.toolkits.DefaultAnalysis=issmsolver();
9md.verbose=verbose('autodiff',true);
10md=solve(md,DiagnosticSolutionEnum());
11
12%Fields and tolerances to track changes
13field_names ={'Vx','Vy','Vz','Vel','Pressure'};
14field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
15field_values={...
16 (md.results.DiagnosticSolution.Vx),...
17 (md.results.DiagnosticSolution.Vy),...
18 (md.results.DiagnosticSolution.Vz),...
19 (md.results.DiagnosticSolution.Vel),...
20 (md.results.DiagnosticSolution.Pressure),...
21 };
Note: See TracBrowser for help on using the repository browser.