source: issm/trunk/test/NightlyRun/test318.m@ 13395

Last change on this file since 13395 was 13395, checked in by Mathieu Morlighem, 12 years ago

merged trunk-jpl and trunk for revision 13393

File size: 844 bytes
Line 
1md=triangle(model,'../Exp/Square.exp',180000);
2md=setmask(md,'','');
3md=parameterize(md,'../Par/SquareSheetConstrained.par');
4md=extrude(md,4,1);
5md=setflowequation(md,'hutter','all');
6md.cluster=generic('name',oshostname(),'np',3);
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.