Created
July 31, 2011 05:21
-
-
Save jtrain/1116435 to your computer and use it in GitHub Desktop.
External Interpreter Environment setup for PSSE minimum
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os,sys | |
PSSE_LOCATION = r"C:\Program Files\PTI\PSSE32\PSSBIN" | |
sys.path.append(PSSE_LOCATION) | |
os.environ['PATH'] = os.environ['PATH'] + ';' + PSSE_LOCATION | |
import psspy | |
import redirect | |
redirect.psse2py() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment