source: issm/trunk/test/NightlyRun/test312.m@ 9655

Last change on this file since 9655 was 9655, checked in by seroussi, 14 years ago

removed field nodeonhutter

File size: 820 bytes
Line 
1md=mesh(model,'../Exp/Square.exp',180000);
2md=setmask(md,'','');
3md=parameterize(md,'../Par/SquareSheetConstrained.par');
4md=extrude(md,4,2);
5md=setelementstype(md,'hutter','../Exp/SquareHalfRight.exp','fill','macayeal');
6md.cluster=generic('name',oshostname(),'np',1);
7md.debug.valgrind=1;
8md.verbose=verbose('convergence',true,'solution',true,'module',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 PatchToVec(md.results.DiagnosticSolution.Vx),...
16 PatchToVec(md.results.DiagnosticSolution.Vy),...
17 PatchToVec(md.results.DiagnosticSolution.Vz),...
18 PatchToVec(md.results.DiagnosticSolution.Vel),...
19 PatchToVec(md.results.DiagnosticSolution.Pressure),...
20 };
Note: See TracBrowser for help on using the repository browser.