python 自动执行 apdl_在高效的mann中从Python运行ANSYS Mechanical APDL

我有以下代码,它编写一个输入文件,并使用Windows命令执行ansysmechanical APDL。我的问题是执行时间要长得多(在软件内部15分钟,从Python调用时超过1小时)。我需要它更快,因为我改变了尽可能多的输入参数。在def RunAPDL(E,t,w,p,aa,bb,lz,alpha,delta):

ansyspath = r'C:\Program Files\ANSYS.Inc\v181\ansys\bin\winx64\MAPDL.exe'

directory = r'C:\Users\Erik\Documents\ANSYS'

jobname = 'file'

memory = '4096'

reserve = '1024'

inputfile = r'C:\Users\Erik\Documents\ANSYS\ShellBucklingInput.inp'

outputfile = r'C:\Users\Erik\Documents\ANSYS\OutputFile.txt'

resultsfile = r'C:\Users\Erik\Documents\ANSYS\ShellBuckling.csv'

# Start time count

start = time.clock()

# Write input file

input_parameters = ('/NERR,200,10000,,OFF,0 \n'

'pi = acos(-1) \n'

'E = {:6.0f} ! N/mm2 Young\

你可能感兴趣的:(python,自动执行,apdl)