First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered Oct 24 '16

zezo510 gravatar image

You can use TITLDT to return the two line case title.

line1, line2 = psspy.titldt()

click to hide/show revision 2
No.2 Revision

You can use TITLDT titldt() to return the two line case title.

line1, line2 = psspy.titldt()

or sfiles() to return the current Saved Case and Snapshot filenames.

SavedCase, SnapFile = sfiles()

click to hide/show revision 3
No.3 Revision

You can use titldt() to return the two line case title.

line1, line2 = psspy.titldt()

or sfiles() to return the current Saved Case and Snapshot filenames.

SavedCase, SnapFile SavedCase, SnapFile = sfiles()

and you can use it to check if a case file is open as follows:

if not psspy.sfiles()[0]: print "No Saved Case file is open" else: print psspy.sfiles()[0] + " Saved Case file is open"

click to hide/show revision 4
No.4 Revision

You can use sfiles() to return the current Saved Case case and Snapshot filenames.

SavedCase, SnapFile = sfiles()

psspy.sfiles() print SavedCase

and you can use it to check if a case file is open as follows:

if not psspy.sfiles()[0]:
    print "No Saved Case file is open"
else:
    print psspy.sfiles()[0] + " Saved Case file is open"

open"