source: issm/trunk-jpl/test/NightlyRun/test335.m@ 10976

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

removed all PatchToVec not needed anymore as default is md.settings.results_as_patches = 0

File size: 813 bytes
RevLine 
[9703]1md=setmesh(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');
[5955]6md.cluster=none;
[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'};
[8392]12
[5098]13field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13
14};
15field_values={...
[10976]16 (md.results.SteadystateSolution.Vx),...
17 (md.results.SteadystateSolution.Vy),...
18 (md.results.SteadystateSolution.Vz),...
19 (md.results.SteadystateSolution.Vel),...
20 (md.results.SteadystateSolution.Pressure),...
21 (md.results.SteadystateSolution.Temperature),...
22 (md.results.SteadystateSolution.BasalforcingsMeltingRate),...
[5098]23 };
Note: See TracBrowser for help on using the repository browser.