[19105] | 1 | %Test Name: SquareSheetConstrainedSteaSIA3d
|
---|
[13975] | 2 | md=triangle(model(),'../Exp/Square.exp',180000.);
|
---|
[9641] | 3 | md=setmask(md,'','');
|
---|
[5015] | 4 | md=parameterize(md,'../Par/SquareSheetConstrained.par');
|
---|
[13975] | 5 | md=extrude(md,4,1.);
|
---|
[16137] | 6 | md=setflowequation(md,'SIA','all');
|
---|
[8589] | 7 | md.cluster=generic('name',oshostname(),'np',3);
|
---|
[9628] | 8 | md.timestepping.time_step=0;
|
---|
[13975] | 9 | md=solve(md,SteadystateSolutionEnum());
|
---|
[5098] | 10 |
|
---|
| 11 | %Fields and tolerances to track changes
|
---|
[18301] | 12 | field_names ={'Vx','Vy','Vz','Vel','Pressure','Temperature','BasalforcingsGroundediceMeltingRate'};
|
---|
[20500] | 13 | field_tolerances={1e-13,1e-13,6e-10,1e-10,1e-13,1e-11,1e-6};
|
---|
[5098] | 14 | field_values={...
|
---|
[10976] | 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),...
|
---|
[18301] | 21 | (md.results.SteadystateSolution.BasalforcingsGroundediceMeltingRate),...
|
---|
[5098] | 22 | };
|
---|