First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
I received this answer in the past: " To initialize PSSe 35.x.y + python 39, the following would work:
import sys, os
pssepy_PATH=(r"""C:\Program Files\PTI\PSSE35\35.3\PSSPY39""")
sys.path.append(pssepy_PATH)
import psspy psspy.psseinit()
or for single v.35 installation:
import sys, os import psse35 import psspy psspy.psseinit()
"
2 | No.2 Revision |
I received this answer in the past: " To initialize PSSe 35.x.y + python 39, the following would work:
import sys, pssepy_PATH=(r"""C:\Program Files\PTI\PSSE35\35.3\PSSPY39""")
sys.path.append(pssepy_PATH)
or for single v.35 installation:
import sys, os
import psse35
import psspy
"