-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add BifurcationProblem
dispatch for ModelingToolkit problems (possibly in an extension?)
#118
Comments
Yes, that would be very nice if you could do that!
Also, no need to load |
Sounds good, I presume this is the syntax on master? I will make a PR as soon as it is finished. |
it is tagged, so v> 0.3 |
Yeah, should have double checked that properly. Congratulations on the 0.3 release, looking forward to try around with it. Once this new interface is ready I will rewrite the tutorial over at Catalyst. |
Also, given that BifurcationKit already has SciMLBase (which contains the ModelingToolkit types) in its dependencies, creating an extension for the new dispatches would be redundant. I will just add it to the base package. |
excellent! |
should we close this? It seems it is solved on MTK side, right? |
Yes, let's do |
Currently, when I want to e.g. compute a bifurcation diagram for a ModelingToolkit-type structure (as e.g. generated by Catalyst) I have to manually extract the
f
andjac
functions, e.g:It seems like it would be easier to simply create a dispatch for
BifurcationProblem
which automatically finds theF
andJ
functions? If this sounds useful, I am happy to make a PR to BifurcationKit creating an extension (loaded if e.g. ModelingToolkit is loaded) that adds this dispatch.Possibly, it could also take the bifurcation parameter (and maybe under some circumstances, the plotting variable), and automate the
bif_idx
andplot_idx
computations as well.The text was updated successfully, but these errors were encountered: