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

Last change on this file since 18301 was 18301, checked in by Mathieu Morlighem, 11 years ago

merged trunk-jpl and trunk for revision 18299

File size: 867 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,'SIA','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','BasalforcingsGroundediceMeltingRate'};
12field_tolerances={1e-13,1e-13,4e-10,1e-10,1e-13,1e-11,1e-6};
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.BasalforcingsGroundediceMeltingRate),...
21 };
Note: See TracBrowser for help on using the repository browser.