pyCollocation
pyCollocation copied to clipboard
Python package for solving initial value problems (IVP) and two-point boundary value problems (2PBVP).
Hi, I'm quite the fan of this Python module, and I wanted to suggest the following examples: - The [Heat equation](https://en.wikipedia.org/wiki/Heat_equation), that is:  - The [Lorenz equations](https://en.wikipedia.org/wiki/Lorenz_system):  Would...
...not sure this is necessary!
...this would allow users to run tests when building the package on their own systems more easily. Relevant links are [here](http://python-packaging.readthedocs.org/en/latest/testing.html) and [here](http://nose.readthedocs.org/en/latest/api/commands.html)
Currently the user is expected to pass along an initial guess for the coefficients used to combine the basis functions into an approximate solution to the BVP. Would be better...
Consider refactoring the code code to use Python [Abstract Base Class (ABC) module](https://docs.python.org/3/library/abc.html)...
Need to implement some basis functions for periodic functions.
Good idea to incorporate non-economic examples. Start by implementing all of the examples from the `scikits.bvp_solver` [docs](http://pythonhosted.org/scikits.bvp_solver/index.html): - [x] [Example 1: A simple heat-exchanger](http://pythonhosted.org/scikits.bvp_solver/examples/examples.example1.html) - [ ] [Example 2: Electro-magnetic...
Given the Jacobian matrix for the RHS of the system of ordinary differential equations is already computed symbolically using SymPy, I should be able to work out a method for...