Ask Your Question
2

PSSE custom output device with python

asked Dec 6 '12

anonymous user

Anonymous

How can i make PSSE write its output to file instead of console in python?

Thanks in advance.

1 answer

Sort by ยป oldest newest most voted
2

answered Dec 6 '12

jsexauer gravatar image

updated Dec 6 '12

Method 1: Progress_Output

import psspy
ierr = psspy.progress_output(2,r"C:\Filename.txt", [0, 0])

Method 2: Redirect module (captures all output, not just the progress output)

import psspy, redirect, sys
redirect.psse2py()
old_stdout = sys.stdout  # Incase you want to restore output back to the screen
sys.stdout = open(r"C:\Filename.txt", 'w')
link

Comments

1

It can be helpful to use a contextmanager for method2 when you want to make sure STDOUT always restored to the previous location. http://stackoverflow.com/a/28486632/653689

chip gravatar imagechip (Feb 12 '15)

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.
Want to format code in your answer? Here is a one minute demo on Youtube

Add Answer

[hide preview]

Question Tools

Stats

Asked: Dec 6 '12

Seen: 1,451 times

Last updated: Dec 06 '12