pydstool icon indicating copy to clipboard operation
pydstool copied to clipboard

PyDSTool main development repo

Results 52 pydstool issues
Sort by recently updated
recently updated
newest added

Python 3.10 has removed 'parser' module, and pydstool as not been upgraded yet to implement this.

Can't load PyDSTool with numpy version 1.26.0 I think this is because of this [deprecation](https://numpy.org/doc/stable/release/1.20.0-notes.html#using-the-aliases-of-builtin-types-like-np-int-is-deprecated), which took effect for version 1.20.0

I was trying to follow the tutorial here: https://pydstool.github.io/PyDSTool/Tutorial/Tutorial_Calcium.html However, PyDSTool tries to import int, float, and/or complex throughout the codebase, which is no longer possible in latest version(s) of...

int can no longer be directly imported from numpy

The function name "tau" collides with "math.tau", which ultimately leads to a TypeError: 'float' object is not callable. This fix renames "tau" to "tauw".

These examples are broken on current `master`: - freefinger_noforce_radau.py - sloppycell_example.py Git bisect points to commit 450c9f38dc3.

bug

Just FYI: The `parser` module is removed from python3.10. The [docs](https://docs.python.org/3.9/library/parser.html) suggests using the `ast` module. See [`PyDSTool/parseUtils.py`](https://github.com/robclewley/pydstool/blob/master/PyDSTool/parseUtils.py)

Hi Rob, I'm a Ph.D. student trying to implement the Duffing oscillator in PyCont for path continuation of the periodic solutions. I'm struggeling with the mathematical implementation of the differential...

Hi,Rob,I'm a studen und now i try to use Pydstool to solve Duffing oscillator and want to get the Amplitude-Frequency diagramm. But now there is a question. Why is the...

Hi, I am trying to use PyCont for a model that contains sqrt terms. For some reason, the radicand may become negative, and PyCont then throws a ValueError «math domain...