我需要为Windows编写代码来运行exe调用foil2w.exe
,这可以从翼型进行一些空气动力学计算。这个exe
有一个带有很多变量的输入文本文件(dfile_bl
)。然后在每次运行后,我必须打开它,将值(攻角)从0更改为16,然后再次运行。还会生成一个名为aerola.dat
的输出文件,我必须保存最后一行,即具有结果的行。
我要做的是自动化过程,运行程序,保存结果改变角度并再次运行它。我已经为Linux完成了它,并使用sed
命令查找并用角度替换该行。现在我必须为Windows做它,我不知道如何开始。我为Linux编写的代码,运行正常:
import subprocess
import os
input_file = 'dfile_bl'
output_file = 'aerloa.dat'
results_file = 'results.txt'
try:
os.remove(output_file)
os.remove(results_file)
except OSError:
pass
for i in [0, 2, 4, 6, 8, 10, 12, 14, 16]:
subprocess.call('./exe', shell=True)
f = open(output_file, 'r').readlines()[-1]
r = open(results_file, 'a')
r.write(f)
r.close()
subprocess.call('sed -i "s/%s.00 ! ANGL/%s.00 ! ANGL/g" %s' % (i, i+2, input_file), shell=True)
subprocess.call('sed -i "s/18.00 ! ANGL/0.00 ! ANGL/g" %s' % input_file, shell=True)
dfile看起来像:
3.0 ! IFOIL
n2412aN
0.00 ! ANGL
1.0 ! UINF
300 ! NTIMEM
编辑: 现在工作正常
import subprocess
import os
import platform
input_file = 'dfile_bl'
output_file = 'aerloa.dat'
results_file = 'results.txt'
OS = platform.system()
if OS == 'Windows':
exe = 'foil2w.exe'
elif OS == 'Linux':
exe = './exe'
try:
os.remove(output_file)
os.remove(results_file)
except OSError:
pass
for i in [0, 2, 4, 6, 8, 10, 12, 14, 16]:
subprocess.call(exe, shell=OS == 'Linux')
f = open(output_file, 'r').readlines()[-1]
r = open(results_file, 'a')
r.write(f)
r.close()
s = open(input_file).read()
s = s.replace('%s.00 ! ANGL' % str(i), '%s.00 ! ANGL' % str(i+2))
s2 = open(input_file, 'w')
s2.write(s)
s2.close()
# Volver el angulo de dfile_bl a 0
s = open(input_file).read()
s = s.replace('%s.00 ! ANGL' % str(i+2), '0.00 ! ANGL')
s2 = open(input_file, 'w')
s2.write(s)
s2.close()
b
答案 0 :(得分:0)
无法替换
subprocess.call('sed -i "s/%s.00 ! ANGL/%s.00 ! ANGL/g" %s' % (i, i+2, input_file), shell=True)
有类似的东西,
with open('input_file', 'r') as input_file_o:
for line in input_file_o.readlines():
outputline = line.replace('%s.00 ! ANGL' % i, '%s.00 ! ANGL' % i+2)
[1] http://docs.python.org/2/library/stdtypes.html#str.replace