-
Notifications
You must be signed in to change notification settings - Fork 39
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
ModelingToolkit Example throwing errors #157
Comments
Thank you for reporting. The docs were built with this configuration: https://bifurcationkit.github.io/BifurcationKitDocs.jl/dev/#Reproducibility You can perhaps try this interface https://docs.sciml.ai/ModelingToolkit/stable/tutorials/bifurcation_diagram_computation/ |
maybe @TorkelE knows |
Since its recent update, ModelingToolkit requires the system independent variable to be given to # define the model
@named NMmodel = ODESystem([SS0 ~ J * u * x * E + E0,
SS1 ~ α * log(1 + exp(SS0 / α)),
D(E) ~ (-E + SS1) / τ,
D(x) ~ (1.0 - x) / τD - u * x * E,
D(u) ~ (U0 - u) / τF + U0 * (1 - u) * E],
t,
defaults = Dict(E => 0.238616, x => 0.982747, u => 0.367876,
α => 1.5, τ => 0.013, J => 3.07, E0 => -2.0, τD => 0.200, U0 => 0.3, τF => 1.5, τS => 0.007)) Also, at an early stage |
Oh yes! |
I guess related to #154 |
Should we close this? |
Greetings,
Thanks very much for your package. I am just trying to run some of the examples in the link. The [MTK_example] is giving an error unfortunately. (https://bifurcationkit.github.io/BifurcationKitDocs.jl/dev/tutorials/ode/NME-MTK/#Neural-mass-equation-MTK)
I get the following error.
I tried to modify the model, creating only one ''parameter'' but I end up with a new error,
isless(::Nothing, ::Int64)
. Am I missing something in the implementation?Thank you very much.
The text was updated successfully, but these errors were encountered: