Skip to content

Commit

Permalink
Remove extra initial condition
Browse files Browse the repository at this point in the history
Fixes #3088
  • Loading branch information
ChrisRackauckas authored Oct 12, 2024
1 parent aaf6893 commit f288c47
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docs/src/tutorials/acausal_components.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,7 @@ DAE solver](https://docs.sciml.ai/DiffEqDocs/stable/solvers/dae_solve/#OrdinaryD
This is done as follows:

```@example acausal
u0 = [rc_model.capacitor.v => 0.0
rc_model.capacitor.p.i => 0.0]
u0 = [rc_model.capacitor.v => 0.0]
prob = ODEProblem(rc_model, u0, (0, 10.0))
sol = solve(prob)
Expand Down

0 comments on commit f288c47

Please sign in to comment.