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

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

Added mask object

File size: 894 bytes
Line 
1md=mesh(model,'../Exp/Square.exp',150000);
2md=setmask(md,'../Exp/SquareShelf.exp','');
3md=parameterize(md,'../Par/SquareSheetShelf.par');
4md=extrude(md,3,2);
5md=setelementstype(md,'pattyn','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'};
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),...
20 PatchToVec(md.results.SteadystateSolution.BasalforcingsMeltingRate),...
21 };
Note: See TracBrowser for help on using the repository browser.