source: issm/trunk/test/NightlyRun/test318.m

Last change on this file was 24686, checked in by Mathieu Morlighem, 5 years ago

merged trunk-jpl and trunk for revision 24684

File size: 899 bytes
Line 
1%Test Name: SquareSheetConstrainedSteaSIA3d
2md=triangle(model(),'../Exp/Square.exp',180000.);
3md=setmask(md,'','');
4md=parameterize(md,'../Par/SquareSheetConstrained.par');
5md=extrude(md,5,1.);
6md=setflowequation(md,'SIA','all');
7md.cluster=generic('name',oshostname(),'np',3);
8md.timestepping.time_step=0;
9md=solve(md,'Steadystate');
10
11%Fields and tolerances to track changes
12field_names ={'Vx','Vy','Vz','Vel','Pressure','Temperature','BasalforcingsGroundediceMeltingRate'};
13field_tolerances={1e-13,1e-13,6e-10,1e-10,1e-13,1e-11,1e-6};
14field_values={...
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.BasalforcingsGroundediceMeltingRate),...
22 };
Note: See TracBrowser for help on using the repository browser.