Skip to content
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

Observeds that are updated by a callback cannot be symbolically indexed #3515

Open
vyudu opened this issue Mar 31, 2025 · 0 comments
Open

Observeds that are updated by a callback cannot be symbolically indexed #3515

vyudu opened this issue Mar 31, 2025 · 0 comments
Labels
bug Something isn't working

Comments

@vyudu
Copy link
Member

vyudu commented Mar 31, 2025

@AayushSabharwal this is the one we discussed:

Describe the bug 🐞
When an observable is updated in a symbolic callback as in the example below (y depends on g, g gets changed in the callback), you can't symbolically index with y in the problem or solution. (this one uses the new callback handling)

eqs = [y ~ g^2 - x, D(x) ~ x]
c_evt = SymbolicContinuousCallback([t ~ 5.0], [x ~ Pre(x) + 1, g ~ Pre(g) + 1], discrete_parameters = [g], iv = t)
@mtkbuild sys = ODESystem(eqs, t, continuous_events = c_evt)
prob = ODEProblem(sys, [x => 1.0], (0., 10.), [g => 2])
prob[y] # Throws ERROR: UndefVarError: `x` not defined in `ModelingToolkit`

This has to do with the timeseries attached to y - since y depends on g the timeseries is [1], but in order to symbolically index the solution it needs to have a ContinuousTimeseries. Right now it can only use one or the other. So this requries SII to change to use interpolation for observeds depending on both unknowns and parameters.

@vyudu vyudu added the bug Something isn't working label Mar 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant