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

Sub-optimal display of vector parameters from systems #3518

Open
TorkelE opened this issue Apr 1, 2025 · 0 comments
Open

Sub-optimal display of vector parameters from systems #3518

TorkelE opened this issue Apr 1, 2025 · 0 comments
Assignees

Comments

@TorkelE
Copy link
Member

TorkelE commented Apr 1, 2025

When doing e.g. parameters(sys), vector-parameters are displayed without [1:n] (which is the case when they normally are displayed). This feels a bit sub-optimal, as it is useful to know that there are actually multiple parameters in there (and sometimes how many).

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

@parameters p[1:2]
@variables (X(t)[1:2])
eqs = [
    D(X[1]) ~ p[1] - X[1]
    D(X[2]) ~ p[2] - X[2]
]
@mtkbuild osys = ODESystem(eqs, t)

# Display p, different for the two cases.
parameters(osys) # [p]
p # p[1:2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants