SciPy is an open source library of scientific tools for Python.
Python files that can be used with the SciPy ODEINT routine are created by the command
The files created are [name].py and, if the option demo=yes option is given, [name]_demo.py, where [name] is the name of the vector field given in the vector field file. The Python file [name].py will contain the functions vectorfield and jacobian.
func |
If the option func=yes is given,
VFGEN also converts any user-defined functions in the vector field file
into functions in the Python file. The names of the
functions will be the same as those given in the vector field file.
Default: func=no |
demo |
If the option demo=yes is given,
the file [name]_demo.py will contain a Python script for
a command-line ODE solver for the vector field. The
example below shows how this file can be used.
Default: demo=no |