Hello,
I had the same problem on a cluster with v6p3r2. The problem was actually due to a carriage return that was missing at the end of the gretel_autop parameter file gretel_T3DRES.par. I changed the python file runcode.py as following:
- line 652:
putFileContent('gretel_'+file+'.par',[geom,file,str(ncsize),''])
instead of putFileContent('gretel_'+file+'.par',[geom,file,str(ncsize)])
- line 669:
putFileContent('gretel_'+file+'.par',[geom,file,str(ncsize),''])
instead of putFileContent('gretel_'+file+'.par',[geom,file,str(ncsize)])
Now it works fine.
Bye,
Vincent.