source: issm/trunk/test/NightlyRun/test421.m@ 11027

Last change on this file since 11027 was 11027, checked in by Eric.Larour, 13 years ago

merged trunk-jpl and trunk for revision 11026

File size: 828 bytes
Line 
1md=triangle(model,'../Exp/Square.exp',150000);
2md=setmask(md,'../Exp/SquareShelf.exp','');
3md=parameterize(md,'../Par/SquareSheetShelf.par');
4md=extrude(md,3,2);
5md=setflowequation(md,'pattyn','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-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-06};
13field_values={...
14 (md.results.SteadystateSolution.Vx),...
15 (md.results.SteadystateSolution.Vy),...
16 (md.results.SteadystateSolution.Vz),...
17 (md.results.SteadystateSolution.Vel),...
18 (md.results.SteadystateSolution.Pressure),...
19 (md.results.SteadystateSolution.Temperature),...
20 (md.results.SteadystateSolution.BasalforcingsMeltingRate),...
21 };
Note: See TracBrowser for help on using the repository browser.