Skip to content

Commit 298a9a5

Browse files
patch system names
1 parent 314bb1d commit 298a9a5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ModelingToolkit"
22
uuid = "961ee093-0014-501f-94e3-6117800e7a78"
33
authors = ["Yingbo Ma <[email protected]>", "Chris Rackauckas <[email protected]> and contributors"]
4-
version = "8.72.0"
4+
version = "8.72.1"
55

66
[deps]
77
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"

docs/src/tutorials/ode_modeling.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,12 +154,12 @@ along with the state variable. Note that this has to be requested explicitly
154154
like as follows:
155155

156156
```@example ode2
157-
prob = ODEProblem(fol_simplified,
158-
[fol_simplified.x => 0.0],
157+
prob = ODEProblem(fol,
158+
[fol.x => 0.0],
159159
(0.0, 10.0),
160-
[fol_simplified.τ => 3.0])
160+
[fol.τ => 3.0])
161161
sol = solve(prob)
162-
plot(sol, vars = [fol_simplified.x, fol_simplified.RHS])
162+
plot(sol, vars = [fol.x, fol.RHS])
163163
```
164164

165165
## Named Indexing of Solutions

0 commit comments

Comments
 (0)