source: issm/trunk/test/NightlyRun/test421.m@ 8392

Last change on this file since 8392 was 8392, checked in by schlegel, 14 years ago

change melting rate to basal melting rate for clarity

File size: 860 bytes
RevLine 
[5015]1md=mesh(model,'../Exp/Square.exp',150000);
2md=geography(md,'../Exp/SquareShelf.exp','');
3md=parameterize(md,'../Par/SquareSheetShelf.par');
4md=extrude(md,3,2);
5md=setelementstype(md,'pattyn','all');
[5955]6md.cluster=none;
[5015]7md.dt=0;
[8295]8md=solve(md,SteadystateSolutionEnum);
[5098]9
10%Fields and tolerances to track changes
[8392]11field_names ={'Vx','Vy','Vz','Vel','Pressure','Temperature','BasalMeltingRate'};
[5098]12field_tolerances={1e-08,1e-08,1e-08,1e-08,1e-08,1e-08,1e-06};
13field_values={...
14 PatchToVec(md.results.SteadystateSolution.Vx),...
15 PatchToVec(md.results.SteadystateSolution.Vy),...
16 PatchToVec(md.results.SteadystateSolution.Vz),...
17 PatchToVec(md.results.SteadystateSolution.Vel),...
18 PatchToVec(md.results.SteadystateSolution.Pressure),...
19 PatchToVec(md.results.SteadystateSolution.Temperature),...
[8392]20 PatchToVec(md.results.SteadystateSolution.BasalMeltingRate),...
[5098]21 };
Note: See TracBrowser for help on using the repository browser.