run incremental input files
run incremental input files
(OP)
Hi there,
I am developing a python script to generate new input file from deformed geometry.
However, to run in multiple/ for incremental input file, i have a problem in command line. Anyone had a similar experience before?
##python script input file generated
....................
....................
with open('rene%s.inp' % m, 'w') as f_new:
...................
...................
##to run the input file in command line
os.system('abaqus job=job input='rene%s.inp' % m cpus=6 -verbose 1 standard_parallel=all mp_mode=mpi interactive')
I have problem in the input syntax..
I am developing a python script to generate new input file from deformed geometry.
However, to run in multiple/ for incremental input file, i have a problem in command line. Anyone had a similar experience before?
##python script input file generated
....................
....................
with open('rene%s.inp' % m, 'w') as f_new:
...................
...................
##to run the input file in command line
os.system('abaqus job=job input='rene%s.inp' % m cpus=6 -verbose 1 standard_parallel=all mp_mode=mpi interactive')
I have problem in the input syntax..





RE: run incremental input files
Example:
inpname = 'test.inp'
os.system('abaqus job='+inpname+' cpus=6 interactive')
RE: run incremental input files
Thank you for the comment. I still got invalid syntax
RE: run incremental input files
RE: run incremental input files