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
RevLine 
[11014]1md=triangle(model,'../Exp/Square.exp',180000);
[9641]2md=setmask(md,'','');
[5015]3md=parameterize(md,'../Par/SquareSheetConstrained.par');
4md=extrude(md,4,1);
[9664]5md=setflowequation(md,'hutter','all');
[8589]6md.cluster=generic('name',oshostname(),'np',3);
[9628]7md.timestepping.time_step=0;
[8295]8md=solve(md,SteadystateSolutionEnum);
[5098]9
10%Fields and tolerances to track changes
[9611]11field_names ={'Vx','Vy','Vz','Vel','Pressure','Temperature','BasalforcingsMeltingRate'};
[5098]12field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13
13};
14field_values={...
[10976]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),...
[5098]22 };
Note: See TracBrowser for help on using the repository browser.