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?
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.
Thank you. It works. In fact the output that I wanted to remove was from psspy.pout :)