Skip to content

henon.toml

Source: src/dynlib/models/map/henon.toml

#! dynlib
[model]
type = "map"
name = "Henon Map"
dtype = "float64"

[states]
x = 0.0
y = 0.0

[params]
a = 1.4
b = 0.3

[equations.rhs]
x = "1.0 - a * x**2 + y"
y = "b * x"

[equations.jacobian]
expr = [
    ["-2.0 * a * x", "1.0"],
    ["b", "0.0"]
]