source: issm/branches/trunk-jpl-damage/test/NightlyRun/test216.m@ 12878

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

merged trunk-jpl into trunk-jpl-damage through revision 12877

File size: 837 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=setflowequation(md,'macayeal','all');
6md.cluster=generic('name',oshostname(),'np',3);
7
8%rift settings
9md.rifts.riftstruct.fill=MelangeEnum();
10md.rifts.riftstruct.fraction=0;
11md.diagnostic.rift_penalty_lock=2;
12md.diagnostic.rift_penalty_threshold=0;
13md.rifts.riftstruct.fractionincrement=.1;
14md=solve(md,DiagnosticSolutionEnum);
15
16%Fields and tolerances to track changes
17field_names ={'Vx','Vy','Vel','Pressure'};
18field_tolerances={1e-11,1e-11,1e-11,1e-11};
19field_values={...
20 (md.results.DiagnosticSolution.Vx),...
21 (md.results.DiagnosticSolution.Vy),...
22 (md.results.DiagnosticSolution.Vel),...
23 (md.results.DiagnosticSolution.Pressure),...
24 };
Note: See TracBrowser for help on using the repository browser.