We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70fcf00 commit 5665a6dCopy full SHA for 5665a6d
docs/src/tutorials/dc_motor_pi.md
@@ -77,7 +77,7 @@ so that it can be represented as a system of `ODEs` (ordinary differential equat
77
78
```@example dc_motor_pi
79
sys = structural_simplify(model)
80
-prob = ODEProblem(sys, unknowns(sys) .=> 0.0, (0, 6.0))
+prob = ODEProblem(sys, [sys.L1.i => 0.0,], (0, 6.0))
81
sol = solve(prob)
82
83
p1 = plot(sol.t, sol[sys.inertia.w], ylabel = "Angular Vel. in rad/s",
0 commit comments