Torkel Loman
Torkel Loman
I tried using your tutorial at: https://bifurcationkit.github.io/BifurcationKitDocs.jl/dev/tutorials/ode/tutorialsODE/#Neural-mass-equation-(Hopf-aBS) but get exactly the same error. Further more, I tried ensuring I have exactly the same package versions as you use for your...
I have tried all steps of the tutorial, and the variou methods all generate some form of error.
Solved by updating to the latest 1.7 Julia version (1.7.3).
Sorry for the delay in replying. I would just like to thank for the answer, it is very helpful. I will have to have a good think of how to...
That sounds really cool! Yes, I was thinking about homotopy continuation. We are currently redesigning or biochemical reaction network package to use ModellingToolkit (It would now simply generate a ReactionSystem,...
Hi, jumping in here (think I was that external person). Quite a lot have happened in Catalyst and ModelingToolkit over the last while, and keeping HC support hasn't been possible...
Got it, will check closer. There has certainly been a lot of progress on MT / SymbolicUtils in the last while. Unfortunately, I haven't been able to follow it properly....
Thanks for the help! Yes, I'll open an issue there.
Sounds good, in the meantime ``` ejprob = EnsembleProblem(jprob,prob_func=(p,i,r)->remake(p), safetycopy=false) ``` also worked
Stochastic systems work as well (haven't tried SDE yet though): ```julia dprob = DiscreteProblem(lrs,u0,tspan,p) @time jprob = JumpProblem(lrs,dprob,RSSACR(),save_positions=(false,false)) @time sol = solve(jprob,SSAStepper(),saveat=0.1) @time anim = plot_spatial_sol(sol,lattice,2;samp_freq=10,nodesize=0.2) @time gif(anim, "anim.gif", fps...