mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
21 lines
639 B
Python
21 lines
639 B
Python
######################################################
|
|
#
|
|
# 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
|