source: issm/trunk/test/NightlyRun/test408.m@ 5490

Last change on this file since 5490 was 5490, checked in by seroussi, 15 years ago

reverted back to normal tests for stokes

File size: 674 bytes
RevLine 
[4996]1md=mesh(model,'../Exp/Square.exp',180000);
2md=geography(md,'../Exp/SquareShelf.exp','');
3md=parameterize(md,'../Par/SquareSheetShelf.par');
4md=extrude(md,3,1);
[5432]5md=setelementstype(md,'stokes','all');
6md=solve(md,'analysis_type',DiagnosticSolutionEnum);
[5098]7
8%Fields and tolerances to track changes
9field_names ={'Vx','Vy','Vz','Vel','Pressure'};
[5101]10field_tolerances={1e-08,1e-08,1e-07,1e-08,1e-08};
[5098]11field_values={...
12 PatchToVec(md.results.DiagnosticSolution.Vx),...
13 PatchToVec(md.results.DiagnosticSolution.Vy),...
14 PatchToVec(md.results.DiagnosticSolution.Vz),...
15 PatchToVec(md.results.DiagnosticSolution.Vel),...
16 PatchToVec(md.results.DiagnosticSolution.Pressure),...
17 };
Note: See TracBrowser for help on using the repository browser.