Ask Your Question
3

PSSE progress_output [SOLVED]

asked 2013-04-03 11:00:39 -0500

Hector gravatar image

updated 2013-04-04 05:48:11 -0500

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?

edit retag flag offensive 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 gravatar imageEli 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 gravatar imageHector ( 2013-04-04 05:46:55 -0500 )edit

1 answer

Sort by ยป oldest newest most voted
3

answered 2013-04-04 17:05:05 -0500

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.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

[hide preview]

Question Tools

Stats

Asked: 2013-04-03 11:00:39 -0500

Seen: 5,587 times

Last updated: Apr 04 '13