Skip to content

Commit 1c6fd41

Browse files
authored
Merge pull request #850 from scheidan/patch-1
Fix variable name
2 parents 5586724 + b73e241 commit 1c6fd41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/tutorials/ode_modeling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ build two `ODESystem`s from the equations we used in the first part:
115115
```
116116

117117
Now let's define an interconnection between these ODE systems. Here
118-
we will define a new variable `α` which is defined by the interplay
118+
we will define a new variable `a` which is defined by the interplay
119119
between these two models:
120120

121121
```julia
@@ -126,7 +126,7 @@ connections = [0 ~ lorenz1.x + lorenz2.y + a*γ]
126126
```
127127

128128
This `ODESystem` thus connects the two Lorenz systems and defines the
129-
dynamics of `α` according to the continuous algebraic equation, thus
129+
dynamics of `a` according to the continuous algebraic equation, thus
130130
this is now a differential-algebraic equation (DAE) of 7 variables.
131131
We can then define the resulting `ODEProblem` and send it over to
132132
DifferentialEquations.jl:

0 commit comments

Comments
 (0)