-
Notifications
You must be signed in to change notification settings - Fork 526
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
Add the DAE transformation support for Disjunct #3101
Labels
Comments
If we reconstruct the constraint, the result will be correct as follows.
|
Hi @blnicho . Any idea about this? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Summary
Currently, the DAE transformation ignores the derivative equations in
Disjunct
. It would be highly beneficial if we can support it.Rationale
If we try the following code, the derivative equation inside
Disjunct
will not be transformed.Output
Description
Maybe we just need to change some
component_objects(Block, descend_into=True)
intocomponent_objects([Block, Disjunct], descend_into=True)
.Any ideas? @blnicho
The text was updated successfully, but these errors were encountered: