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

Parameter dependencies fail with array variables #3511

Open
hersle opened this issue Mar 27, 2025 · 1 comment
Open

Parameter dependencies fail with array variables #3511

hersle opened this issue Mar 27, 2025 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@hersle
Copy link
Contributor

hersle commented Mar 27, 2025

Bug 1: This should work (it works if you turn c and d into scalars), but fails:

using ModelingToolkit
using ModelingToolkit: t_nounits as t, D_nounits as D

@parameters a b c[1:1] d[1:1]
@variables f(t)
pdeps = [b ~ a, d[1] ~ c[1] + b]
@named M = ODESystem([f ~ 0], t; parameter_dependencies = pdeps)
Ms = structural_simplify(M)
prob = ODEProblem(Ms, [], (0.0, 1.0), [a => 1.0, c[1] => 1.0]; fully_determined = true)
ERROR: ExtraEquationsSystemException: The system is unbalanced. There are 2 highest order derivative variables and 3 equations.
More equations than variables, here are the potential extra equation(s):
 0 ~ b + c[1] - d[1]
Note that the process of determining extra equations is a best-effort heuristic. The true extra equations are dependent on the model and may not be in this list.

The error should also say something different than "highest order derivative variables".

@hersle hersle added the bug Something isn't working label Mar 27, 2025
@hersle
Copy link
Contributor Author

hersle commented Mar 27, 2025

Bug 2: This (initialization) problem warns that it is overdetermined, but should not be:

@parameters c[1:1] d[1:1]
@variables f(t)
pdeps = [d[1] ~ c[1]]
@named M = ODESystem([f ~ 0], t; parameter_dependencies = pdeps)
Ms = structural_simplify(M)
prob = ODEProblem(Ms, [], (0.0, 1.0), [c[1] => 1.0]; fully_determined = true)
┌ Warning: Initialization system is overdetermined. 1 equations for 0 unknowns. Initialization will default to using least squares. `SCCNonlinearProblem` can only be used for initialization of fully determined systems and hence will not be used here. To suppress this warning pass warn_initialize_determined = false. To make this warning into an error, pass fully_determined = true

It also does not error with fully_determined = true (although the warning shouldn't be there at all).

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

2 participants