source: issm/branches/trunk-jpl-damage/test/NightlyRun/test274.m@ 12259

Last change on this file since 12259 was 12259, checked in by cborstad, 13 years ago

a couple more damage test runs

File size: 710 bytes
Line 
1md=triangle(model,'../Exp/SquareHole.exp','../Exp/Rifts.exp',50000);
2md=meshprocessrifts(md,'../Exp/Square.exp');
3md=setmask(md,'all','');
4md=parameterize(md,'../Par/SquareShelf.par');
5md.materials.rheology_Z=0.5*ones(md.mesh.numberofvertices,1);
6md=setflowequation(md,'macayeal','all');
7
8md.cluster=generic('name',oshostname(),'np',3);
9md=solve(md,DiagnosticSolutionEnum);
10
11%Fields and tolerances to track changes
12field_names ={'Vx','Vy','Vel','Pressure'};
13field_tolerances={1e-11,1e-11,1e-11,1e-11};
14field_values={...
15 (md.results.DiagnosticSolution.Vx),...
16 (md.results.DiagnosticSolution.Vy),...
17 (md.results.DiagnosticSolution.Vel),...
18 (md.results.DiagnosticSolution.Pressure),...
19 };
Note: See TracBrowser for help on using the repository browser.