我正在研究电力系统的学生,我想在 PSS/E 程序中使用 python。我可以在 PSS/E 程序中使用 python 来运行短路电流数据。但我不知道如何使用python将短路电流数据保存到CSV。我现在可以创建一个 CSV 文件,但我不知道如何将数据写入 CSV。
我使用 psse ver34 & python 2.7。
我有这个小代码:
import os, math, time
sqrt3 = math.sqrt(3.0)
sbase = 100.0 # MVA
str_time = time.strftime("%Y%m%d_%H%M%S_", time.localtime())
fnamout = str_time + 'short_circuit_in_line_slider.csv'
fnamout = os.path.join(os.getcwd(),fnamout)
foutobj = open(fnamout,'w')