from MatlabFuncs import * from model import * from EnumDefinitions import * from numpy import * from triangle import * from setmask import * from parameterize import * from setflowequation import * from solve import * md=triangle(model(),'../Exp/Square.exp',180000) md=setmask(md,'all','') md=parameterize(md,'../Par/SquareShelf.py') md.extrude(3,2.) md=setflowequation(md,'FS','all') md.cluster=generic('name',oshostname(),'np',3) md=solve(md,StressbalanceSolutionEnum()) # Fields and tolerances to track changes field_names =['Vx','Vy','Vz','Vel','Pressure'] field_tolerances=[1e-08,1e-08,1e-07,1e-08,1e-08] field_values=[\ md.results.StressbalanceSolution.Vx,\ md.results.StressbalanceSolution.Vy,\ md.results.StressbalanceSolution.Vz,\ md.results.StressbalanceSolution.Vel,\ md.results.StressbalanceSolution.Pressure,\ ]