""" == == == == == == == == == == == == == == == == == == == Auto generated python script for ISSM: test216.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/SquareHole.exp','../Exp/Rifts.exp',50000) md=meshprocessrifts(md,'../Exp/Square.exp') md=setmask(md,'all','') md=parameterize(md,'../Par/SquareShelf.py') md=setflowequation(md,'macayeal','all') md.cluster=generic('name',oshostname(),'np',3) # rift settings md.rifts.riftstruct.fill=MelangeEnum() md.rifts.riftstruct.fraction=0 md.diagnostic.rift_penalty_lock=2 md.diagnostic.rift_penalty_threshold=0 md.rifts.riftstruct.fractionincrement=.1 md=solve(md,DiagnosticSolutionEnum()) # Fields and tolerances to track changes field_names =['Vx','Vy','Vel','Pressure'] field_tolerances=[1e-11,1e-11,1e-11,1e-11] field_values=[\ md.results['DiagnosticSolution'][1]['Vx'],\ md.results['DiagnosticSolution'][1]['Vy'],\ md.results['DiagnosticSolution'][1]['Vel'],\ md.results['DiagnosticSolution'][1]['Pressure'],\ ]