md=triangle(model,'../Exp/Square.exp',180000); md=setmask(md,'all',''); md=parameterize(md,'../Par/SquareShelfConstrained.par'); md=extrude(md,3,1); md=setflowequation(md,'macayeal','all'); md.cluster=none; md.transient.isdiagnostic=0; md.transient.isprognostic=0; md.transient.isthermal=1; md.transient.isgroundingline=0; md=solve(md,TransientSolutionEnum); %Fields and tolerances to track changes field_names ={'Temperature','BasalforcingsMeltingRate'}; field_tolerances={1e-13,1e-13}; field_values={... (md.results.TransientSolution(1).Temperature),... (md.results.TransientSolution(1).BasalforcingsMeltingRate),... };