#Test Name: 79NorthBalThic2d import numpy from model import * from EnumDefinitions import * from MatlabFuncs import * from triangle import * from setmask import * from parameterize import * from setflowequation import * from solve import * md=triangle(model(),'../Exp/79North.exp',10000.) md=setmask(md,'../Exp/79NorthShelf.exp','') md=parameterize(md,'../Par/79North.py') md=setflowequation(md,'SSA','all') md.cluster=generic('name',oshostname(),'np',3) md=solve(md,'Balancethickness') #Fields and tolerances to track changes field_names =['Thickness'] field_tolerances=[1e-12] field_values=[\ md.results.BalancethicknessSolution.Thickness,\ ]