md=triangle(model(),'../Exp/Square.exp',180000.); md=setmask(md,'',''); md=parameterize(md,'../Par/SquareSheetConstrained.par'); md=extrude(md,4,1.); md=setflowequation(md,'SIA','all'); md.cluster=generic('name',oshostname(),'np',3); md.timestepping.time_step=0; md=solve(md,SteadystateSolutionEnum()); %Fields and tolerances to track changes field_names ={'Vx','Vy','Vz','Vel','Pressure','Temperature','BasalforcingsMeltingRate'}; field_tolerances={1e-13,1e-13,4e-10,1e-10,1e-13,1e-11,1e-6}; field_values={... (md.results.SteadystateSolution.Vx),... (md.results.SteadystateSolution.Vy),... (md.results.SteadystateSolution.Vz),... (md.results.SteadystateSolution.Vel),... (md.results.SteadystateSolution.Pressure),... (md.results.SteadystateSolution.Temperature),... (md.results.SteadystateSolution.BasalforcingsMeltingRate),... };