Skip to content

Commit fcad04c

Browse files
Merge pull request #3116 from SciML/ChrisRackauckas-patch-8
Remove extra initial condition
2 parents aaf6893 + f288c47 commit fcad04c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docs/src/tutorials/acausal_components.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,7 @@ DAE solver](https://docs.sciml.ai/DiffEqDocs/stable/solvers/dae_solve/#OrdinaryD
311311
This is done as follows:
312312

313313
```@example acausal
314-
u0 = [rc_model.capacitor.v => 0.0
315-
rc_model.capacitor.p.i => 0.0]
314+
u0 = [rc_model.capacitor.v => 0.0]
316315
317316
prob = ODEProblem(rc_model, u0, (0, 10.0))
318317
sol = solve(prob)

0 commit comments

Comments
 (0)