""" == == == == == == == == == == == == == == == == == == == Auto generated python script for ISSM: test205.m Created on 2012-09-27 via translateToPy.py Ver 1.0 by mikep == == == == == == == == == == == == == == == == == == == Matlab script conversion into python translateToPy.py Author: Michael Pellegrin translateToPy.py Date: 09/24/12 == == == == == == == == == == == == == == == == == == == """ 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',150000) md=setmask(md,'all','') md=parameterize(md,'../Par/SquareShelf.py') md.extrude(3,2) md=setflowequation(md,'pattyn','../Exp/SquareHalfRight.exp','fill','macayeal','coupling','penalties') md.cluster=generic('name',oshostname(),'np',3) md=solve(md,DiagnosticSolutionEnum()) # Fields and tolerances to track changes field_names =['Vx','Vy','Vz','Vel','Pressure'] field_tolerances=[1e-05,1e-05,1e-05,1e-05,1e-05] field_values=[\ md.results['DiagnosticSolution'][1]['Vx'],\ md.results['DiagnosticSolution'][1]['Vy'],\ md.results['DiagnosticSolution'][1]['Vz'],\ md.results['DiagnosticSolution'][1]['Vel'],\ md.results['DiagnosticSolution'][1]['Pressure'],\ ]