First time here? We are a friendly community of Power Systems Engineers. Check out the FAQ!
1 | initial version |
* print embedded module help text *
Almost all modules installed with PSSe contain embedded information. One way to print to a CMD window is:
# moduledoc.py
import os,sys
import psse33
import pssexcel
print pssexcel(help)
save the above code as moduledoc.py and run it inside a CMD window. To save it to file type: [in a CMD window]..c:..>python moduledoc.py > pssexcel_doc.txt
2 | No.2 Revision |
* print embedded module help text *
Almost all modules installed with PSSe contain embedded information. One way to print to a CMD window is:
# moduledoc.py
import os,sys
import psse33
import pssexcel
print pssexcel(help)
help(pssexcel)
save the above code as moduledoc.py and run it inside a CMD window. To save it to file type: [in a CMD window]..c:..>python moduledoc.py > pssexcel_doc.txt