matmeanla
Mechanical
- Mar 7, 2016
- 14
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..