how do I disable the window showing the logs of the power flow solution in python?
asked 2013-03-11 02:45:00 -0500
Anonymous
I have been trying to use python script to solve power flow problem using the pss/e module. When I finished the solving, I got windows showing the log of the solution, including the Siemens company introduction and the power flow result. Since I just need the results for post-processing, I find these windows very disturbing. Can somebody kindly tell me how to disable these windows?
Were the windows pop ups? In that case you can use the `redirect` module. `import redirect; redirect.psse2py()`
Thanks. It works!