source: issm/trunk-jpl/test/NightlyRun/test102.m@ 21056

Last change on this file since 21056 was 21056, checked in by Mathieu Morlighem, 9 years ago

CHG: do not request solution in solution string

File size: 700 bytes
RevLine 
[19049]1%Test Name: SquareShelfConstrainedStressSSA3d
[13670]2md=triangle(model(),'../Exp/Square.exp',180000.);
[9641]3md=setmask(md,'all','');
[4963]4md=parameterize(md,'../Par/SquareShelfConstrained.par');
[13671]5md=extrude(md,3,2.);
[15565]6md=setflowequation(md,'SSA','all');
[20952]7md.cluster=generic('name',oshostname(),'np',3);
[21056]8md=solve(md,'Stressbalance');
[5098]9
10%Fields and tolerances to track changes
11field_names ={'Vx','Vy','Vz','Vel','Pressure'};
12field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13};
13field_values={...
[15771]14 (md.results.StressbalanceSolution.Vx),...
15 (md.results.StressbalanceSolution.Vy),...
16 (md.results.StressbalanceSolution.Vz),...
17 (md.results.StressbalanceSolution.Vel),...
18 (md.results.StressbalanceSolution.Pressure),...
[5098]19 };
Note: See TracBrowser for help on using the repository browser.