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

Last change on this file since 10937 was 9703, checked in by Mathieu Morlighem, 14 years ago

renamed mesh setmesh for mesh class

File size: 883 bytes
Line 
1md=setmesh(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=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'};
12
13field_tolerances={1e-13,1e-13,1e-13,1e-13,1e-13,1e-13,1e-13
14};
15field_values={...
16 PatchToVec(md.results.SteadystateSolution.Vx),...
17 PatchToVec(md.results.SteadystateSolution.Vy),...
18 PatchToVec(md.results.SteadystateSolution.Vz),...
19 PatchToVec(md.results.SteadystateSolution.Vel),...
20 PatchToVec(md.results.SteadystateSolution.Pressure),...
21 PatchToVec(md.results.SteadystateSolution.Temperature),...
22 PatchToVec(md.results.SteadystateSolution.BasalforcingsMeltingRate),...
23 };
Note: See TracBrowser for help on using the repository browser.