MCPcopy Index your code
hub / github.com/Zulko/ddeint

github.com/Zulko/ddeint @0.3

Chat with this repo
repository ↗ · DeepWiki ↗ · release 0.3 ↗ · + Follow
18 symbols 59 edges 6 files 6 documented · 33%

Browse by type

Functions 16 Types & classes 2
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

ddeint

PyPI Tests Changelog

Scipy-based delay differential equation (DDE) solver. See the docstrings and examples for more infos.

Examples

from pylab import cos, linspace, subplots
from ddeint import ddeint

# We solve the following system:
# Y(t) = 1 for t < 0
# dY/dt = -Y(t - 3cos(t)**2) for t > 0

def values_before_zero(t):
    return 1

def model(Y, t):
    return -Y(t - 3 * cos(Y(t)) ** 2)

tt = linspace(0, 30, 2000)
yy = ddeint(model, values_before_zero, tt)

fig, ax = subplots(1, figsize=(4, 4))
ax.plot(tt, yy)
ax.figure.savefig("variable_delay.jpeg")

screenshot

from pylab import array, linspace, subplots
from ddeint import ddeint

# We solve the following system:
# X(t) = 1 (t < 0)
# Y(t) = 2 (t < 0)
# dX/dt = X * (1 - Y(t-d)) / 2
# dY/dt = -Y * (1 - X(t-d)) / 2


def model(Y, t, d):
    x, y = Y(t)
    xd, yd = Y(t - d)
    return array([0.5 * x * (1 - yd), -0.5 * y * (1 - xd)])


g = lambda t: array([1, 2])
tt = linspace(2, 30, 20000)

fig, ax = subplots(1, figsize=(4, 4))

for d in [0, 0.2]:
    print("Computing for d=%.02f" % d)
    yy = ddeint(model, g, tt, fargs=(d,))
    # WE PLOT X AGAINST Y
    ax.plot(yy[:, 0], yy[:, 1], lw=2, label="delay = %.01f" % d)

ax.figure.savefig("lotka.jpeg")

screenshot

Licence

Public domain. Everyone is welcome to contribute !

Installation

ddeint can be installed by unzipping the source code in one directory and using this command: ::

(sudo) python setup.py install

You can also install it directly from the Python Package Index with this command: ::

(sudo) pip install ddeint

Core symbols most depended-on inside this repo

Shape

Function 9
Method 7
Class 2

Languages

Python100%

Modules by API surface

ddeint/ddeint.py10 symbols
tests/test_basics.py4 symbols
examples/variable_delay.py2 symbols
examples/sine.py1 symbols
examples/lotka.py1 symbols

For agents

$ claude mcp add ddeint \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page