Skip to content

Commit

Permalink
correct OPL.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rveltz committed Jul 9, 2024
1 parent 28ea232 commit e58fa80
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions docs/src/tutorials/ode/OPL.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,7 @@ hopf_br = continuation(br, 2, (@lens _.b), ContinuationPar(opts_br, detect_bifur
detect_codim2_bifurcation = 2,
bothside = true,
)
show(hopf_br)
```
```@example TUTOPL
hopf_br2 = continuation(br2, 1, (@lens _.b), ContinuationPar(opts_br, detect_bifurcation = 1, max_steps = 140),
detect_codim2_bifurcation = 2,
bothside = true,
Expand All @@ -87,8 +84,8 @@ show(hopf_br2)
```

```@example TUTOPL
plot(sn_br, vars = (:a, :b), branchlabel = "SN", )
plot!(hopf_br, branchlabel = "Hopf", vars = (:a, :b))
# plot(sn_br, vars = (:a, :b), branchlabel = "SN", )
plot(hopf_br, branchlabel = "Hopf", vars = (:a, :b))
plot!(hopf_br2, branchlabel = "Hopf", vars = (:a, :b))
ylims!(0,1.5)
```
Expand Down Expand Up @@ -187,8 +184,8 @@ br_hom_c = continuation(
end,
)
plot(sn_br, vars = (:a, :b), branchlabel = "SN", )
plot!(hopf_br, branchlabel = "AH₀", vars = (:a, :b))
# plot(sn_br, vars = (:a, :b), branchlabel = "SN", )
plot(hopf_br, branchlabel = "AH₀", vars = (:a, :b))
plot!(hopf_br2, branchlabel = "AH₁₂", vars = (:a, :b))
plot!(br_hom_c, branchlabel = "H₀", vars = (:a, :b))
ylims!(0.1,1.5)
Expand Down Expand Up @@ -275,8 +272,8 @@ plot(_sol.t, _sol[1:6,:]')
```

```@example TUTOPL
plot(sn_br, vars = (:a, :b), branchlabel = "SN", )
plot!(hopf_br, branchlabel = "AH₀", vars = (:a, :b))
# plot(sn_br, vars = (:a, :b), branchlabel = "SN", )
plot(hopf_br, branchlabel = "AH₀", vars = (:a, :b))
plot!(hopf_br2, branchlabel = "AH₁₂", vars = (:a, :b))
plot!(br_hom_c, branchlabel = "Hc₀", vars = (:a, :b))
plot!(br_hom_sh, branchlabel = "Hsh₀", vars = (:a, :b), linewidth = 3)
Expand Down

2 comments on commit e58fa80

@rveltz
Copy link
Member Author

@rveltz rveltz commented on e58fa80 Aug 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/113425

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.1 -m "<description of version>" e58fa80f0315a88574c1ca6cebe8a23bad39409a
git push origin v0.1.1

Please sign in to comment.