First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
try "import psspy" after add the following path as belows
c:>set path=%path%;c:/program files (x86)/pti/psse30/psslib
I succeeded import psspy module by this way.
2 | No.2 Revision |
try "import psspy" after add the following path path, in which "dsusrnew.dll" exists, as belows
c:>set path=%path%;c:/program files (x86)/pti/psse30/psslib
I succeeded import psspy module without errors by this way.
3 | No.3 Revision |
try "import psspy" after add the following path, in which "dsusrnew.dll" exists, as belows
c:>set path=%path%;c:/program files (x86)/pti/psse30/psslib
or
import os os.environ['path'] += os.pathsep + 'c:/program files (x86)/pti/psse30/psslib'
I succeeded import psspy module without errors by this way.