Ask Your Question
3

PSSE progress_output [SOLVED]

asked Apr 3 '13

Hector gravatar image

updated Apr 4 '13

I want to remove progress output from PSSE. I tried with this line

ierr = psspy.progress_output(islct=6)

and

ierr = psspy.progress_output(ISLCT=6)

but it does not work. Where should I place this line? At the beginning of the document?

Comments

1

Your first suggestion works fine for me. Are you running your script from within PSSE, or launching PSSE separately? If you're launching PSSE separately, you'll want to put the line right after psspy.psseinit(). If you're running your script from within PSSE, I'd just put it at the top of your code.

Eli Pack gravatar imageEli Pack (Apr 4 '13)
1

Thank you. It works. In fact the output that I wanted to remove was from psspy.pout :)

Hector gravatar imageHector (Apr 4 '13)

1 answer

Sort by » oldest newest most voted
3

answered Apr 4 '13

Eli Pack gravatar image

Here's the answer so this doesn't come up as an unanswered question:

The first suggestion works:

ierr = psspy.progress_output(islct=6)

This would go immediately after psspy.psseinit() if being run from outside PSSE, otherwise as the first line of code.

link

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: Apr 3 '13

Seen: 5,777 times

Last updated: Apr 04 '13