First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
I have installed PSS34. The installation GUI has installed Python 2.7 and I have included that address in my code.
import os import sys import xlwt import xlrd import scipy.io
PSSELOCATION = r"C:\Program Files (x86)\PTI\PSSEXplore34\PSSPY27" sys.path.append(PSSELOCATION) os.environ['PATH'] = os.environ['PATH'] + ';' + PSSE_LOCATION print('sys.path') import psspy
The Python code is called within MATLAB and psspy.pyc exists in PSSPY27 folder. But it returns the following error:
File ".\psspy.py", line 56, in <module> ImportError: DLL load failed: The specified module could not be found.
2 | No.2 Revision |
I have installed PSS34. The installation GUI has installed Python 2.7 and I have included that address in my code.
import os
import sys
import xlwt
import xlrd
import PSSELOCATION
The Python code is called within MATLAB and psspy.pyc exists in PSSPY27 folder. But it returns the following error:
File ".\psspy.py", line 56, in <module> ImportError: DLL load failed: The specified module could not be found.