source: issm/trunk-jpl-damage/test/NightlyRun/test515.m@ 11425

Last change on this file since 11425 was 11014, checked in by Mathieu Morlighem, 13 years ago

moved setmesh to triangle in all nightly runs

File size: 836 bytes
Line 
1md=triangle(model,'../Exp/Pig.exp',30000);
2md=setmask(md,'../Exp/PigShelves.exp','../Exp/PigIslands.exp');
3md=parameterize(md,'../Par/Pig.par');
4md=extrude(md,4,1.1);
5md=setflowequation(md,'macayeal','all');
6md.cluster=none;
7md.timestepping.time_step=0;
8md=solve(md,SteadystateSolutionEnum);
9
10%Fields and tolerances to track changes
11field_names ={'Vx','Vy','Vz','Vel','Pressure','Temperature','BasalforcingsMeltingRate'};
12field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13
13};
14field_values={...
15 (md.results.SteadystateSolution.Vx),...
16 (md.results.SteadystateSolution.Vy),...
17 (md.results.SteadystateSolution.Vz),...
18 (md.results.SteadystateSolution.Vel),...
19 (md.results.SteadystateSolution.Pressure),...
20 (md.results.SteadystateSolution.Temperature),...
21 (md.results.SteadystateSolution.BasalforcingsMeltingRate),...
22 };
Note: See TracBrowser for help on using the repository browser.