###################################################### # # Getting Help # ###################################################### # Python has a built-in help facility. To get help on any class or # function (in Cantera or not), import it and the call 'help' with the # class or function as the argument from Cantera import Solution help(Solution) from Cantera import Reactor help(Reactor) # On Windows, you can also use the module browser to view this same # information in a web browser. From the Start menu, goto # Programs/Python2.x/Module Docs. In the pop-up window, click on 'open # browser', then navigate to the Cantera module