@@ -23,7 +23,7 @@ $(latexify(thomas))
23
23
24
24
[Wikipedia](https://en.wikipedia.org/wiki/Thomas%27_cyclically_symmetric_attractor)
25
25
"""
26
- prob_ode_thomas = ODEProblem (thomas, [], (0.0 , 1.0 ))
26
+ prob_ode_thomas = ODEProblem (thomas, [], (0.0 , 1.0 ), jac = true , eval_module = @__MODULE__ )
27
27
28
28
# Lorenz
29
29
@parameters σ= 10 ρ= 28 β= 8 / 3
@@ -46,7 +46,7 @@ $(latexify(lorenz))
46
46
47
47
[Wikipedia](https://en.wikipedia.org/wiki/Lorenz_system)
48
48
"""
49
- prob_ode_lorenz = ODEProblem (lorenz, [], (0.0 , 1.0 ))
49
+ prob_ode_lorenz = ODEProblem (lorenz, [], (0.0 , 1.0 ), jac = true , eval_module = @__MODULE__ )
50
50
51
51
# Aizawa
52
52
@parameters a= 0.95 b= 0.7 c= 0.6 d= 3.5 e= 0.25 f= 0.1
@@ -68,7 +68,7 @@ $(latexify(aizawa))
68
68
[Reference](https://journals.ametsoc.org/view/journals/atsc/20/2/1520-0469_1963_020_0130_dnf_2_0_co_2.xml)
69
69
70
70
"""
71
- prob_ode_aizawa = ODEProblem (aizawa, [], (0.0 , 1.0 ))
71
+ prob_ode_aizawa = ODEProblem (aizawa, [], (0.0 , 1.0 ), jac = true , eval_module = @__MODULE__ )
72
72
73
73
# Dadras
74
74
@parameters a= 3 b= 2.7 c= 1.7 d= 2 e= 9
@@ -90,7 +90,7 @@ $(latexify(dadras))
90
90
[Reference](https://www.sciencedirect.com/science/article/abs/pii/S0375960109009591)
91
91
92
92
"""
93
- prob_ode_dadras = ODEProblem (dadras, [], (0.0 , 1.0 ))
93
+ prob_ode_dadras = ODEProblem (dadras, [], (0.0 , 1.0 ), jac = true , eval_module = @__MODULE__ )
94
94
95
95
# chen
96
96
@parameters a= 35 b= 3 c= 28
@@ -112,7 +112,7 @@ $(latexify(chen))
112
112
[Reference](https://www.worldscientific.com/doi/abs/10.1142/S0218127499001024)
113
113
114
114
"""
115
- prob_ode_chen = ODEProblem (chen, [], (0.0 , 1.0 ))
115
+ prob_ode_chen = ODEProblem (chen, [], (0.0 , 1.0 ), jac = true , eval_module = @__MODULE__ )
116
116
117
117
# rossler
118
118
@parameters a= 0.2 b= 0.2 c= 5.7
@@ -135,7 +135,7 @@ $(latexify(rossler))
135
135
[Wikipedia](https://en.wikipedia.org/wiki/R%C3%B6ssler_attractor)
136
136
137
137
"""
138
- prob_ode_rossler = ODEProblem (rossler, [], (0.0 , 1.0 ))
138
+ prob_ode_rossler = ODEProblem (rossler, [], (0.0 , 1.0 ), jac = true , eval_module = @__MODULE__ )
139
139
140
140
# rabinovich_fabrikant
141
141
@parameters a= 0.14 b= 0.10
@@ -157,7 +157,7 @@ $(latexify(rabinovich_fabrikant))
157
157
[Reference](https://en.wikipedia.org/wiki/Rabinovich%E2%80%93Fabrikant_equations)
158
158
159
159
"""
160
- prob_ode_rabinovich_fabrikant = ODEProblem (rabinovich_fabrikant, [], (0.0 , 1.0 ))
160
+ prob_ode_rabinovich_fabrikant = ODEProblem (rabinovich_fabrikant, [], (0.0 , 1.0 ), jac = true , eval_module = @__MODULE__ )
161
161
162
162
# sprott
163
163
@parameters a= 2.07 b= 1.79
@@ -179,7 +179,7 @@ $(latexify(sprott))
179
179
[Reference](https://sprott.physics.wisc.edu/pubs/paper423.pdf)
180
180
181
181
"""
182
- prob_ode_sprott = ODEProblem (sprott, [], (0.0 , 1.0 ))
182
+ prob_ode_sprott = ODEProblem (sprott, [], (0.0 , 1.0 ), jac = true , eval_module = @__MODULE__ )
183
183
184
184
# hindmarsh_rose
185
185
@parameters a= 1 b= 3 c= 1 d= 5 r= 1e-2 s= 4 xr= - 8 / 5 i= 5
@@ -201,4 +201,4 @@ $(latexify(hindmarsh_rose))
201
201
[Reference](https://en.wikipedia.org/wiki/Hindmarsh%E2%80%93Rose_model)
202
202
203
203
"""
204
- prob_ode_hindmarsh_rose = ODEProblem (hindmarsh_rose, [], (0.0 , 1.0 ))
204
+ prob_ode_hindmarsh_rose = ODEProblem (hindmarsh_rose, [], (0.0 , 1.0 ), jac = true , eval_module = @__MODULE__ )
0 commit comments