First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
these commands silence the different reporting channels
ierr = psspy.promptoutput(islct = None) ierr = psspy.reportoutput(islct = None) ierr = psspy.progressoutput(islct = None) ierr = psspy.alertoutput(islct = None)
these commands re-enable them
ierr = psspy.reportoutput(islct = 6) ierr = psspy.progressoutput(islct = 6) ierr = psspy.alertoutput(islct = 6) ierr = psspy.promptoutput(islct = 6)
they behave weirdly when I run them right scripts from Idle. But from within PSSE they work.
usually I create an echo method which shuts all reporting off but switches it back in for any output I need.
2 | No.2 Revision |
these commands silence the different reporting channels
ierr = these commands re-enable them
ierr = they behave weirdly when I run them right scripts from Idle. But from within PSSE they work.
usually I create an echo method which shuts all reporting off but switches it back in for any output I need.
3 | No.3 Revision |
these commands silence the different reporting channels
ierr = psspy.prompt_output(islct = None)
ierr = psspy.report_output(islct = None)
ierr = psspy.progress_output(islct = None)
ierr = psspy.alert_output(islct = None)
these commands re-enable them
ierr = psspy.report_output(islct = 6)
ierr = psspy.progress_output(islct = 6)
ierr = psspy.alert_output(islct = 6)
ierr = psspy.prompt_output(islct = 6)
they behave weirdly when I run them right scripts from Idle. But from within PSSE they work.
usually I create an echo method which shuts all reporting off but switches it back in for any output I need.