Skip to content

Commit b9f1e38

Browse files
committed
re-commit unsaved changes
1 parent 7c71796 commit b9f1e38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ eqs = [
9494
@variables a(t)
9595
@parameters γ
9696
connections = [0 ~ lorenz1.x + lorenz2.y + a * γ]
97-
@mtkcompile connected = System(connections, t, systems = [lorenz1, lorenz2])
97+
@mtkcompile connected_lorenz = System(connections, t; systems = [lorenz1, lorenz2])
9898

9999
# Simulate the model for a specific condition (initial condition and parameter values).
100100
using OrdinaryDiffEqDefault
@@ -114,7 +114,7 @@ sim_cond = [
114114
γ => 2.0
115115
]
116116
tend = 100.0
117-
prob = ODEProblem(connected, sim_cond, tend)
117+
prob = ODEProblem(connected_lorenz, sim_cond, tend)
118118
sol = solve(prob)
119119

120120
# Plot the solution in phase-space.

0 commit comments

Comments
 (0)