3

PSSE progress_output [SOLVED]

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?

Hector's avatar
71
Hector
asked 2013-04-03 11:00:39 -0500, updated 2013-04-04 05:48:11 -0500
edit flag offensive 0 remove flag close merge delete

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's avatar Eli Pack (2013-04-03 20:01:06 -0500) edit
1

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

Hector's avatar Hector (2013-04-04 05:46:55 -0500) edit
add a comment see more comments

1 Answer

3

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.

Eli Pack's avatar
823
Eli Pack
answered 2013-04-04 17:05:05 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments

Your Answer

Login/Signup to Answer