-
Notifications
You must be signed in to change notification settings - Fork 518
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
Unit consistency issue with Pyomo DAE #1790
Comments
@blnicho have there been any updates regarding this issue? For flowsheets where units are assigned to both the DerivativeVar and the differentiated variable, the ContinuousSet can be assigned appropriate units in the discretization method. Thanks! |
Unfortunately, I have once again rediscovered this issue. |
We are starting to incorporate dynamics in WaterTAP and this issue occurs while attempting to make our reverse osmosis model. In our tests, I threw in an Here is the PR on WaterTAP: watertap-org/watertap#1471 |
I am starting to revamp my course materials that teach Pyomo.DAE; I would also like suggestions on best practices for this. |
When using pyomo.dae in a model with units, there is a potential issue with unit consistency as the
ContinuousSet
does not have units. Consider the following case:If the
DerivativeVar
is defined such that it has the correct units (m/s), there ends up being a unit consistency issue in the discretization equations as Pyomo does not realize that the time domain has units, thus the "delta_t" term in the discretization is unitless.Whilst there are ways around this (e.g. using normalized domains), I think it would make more sense (and be more obvious to the user) if the
ContinuousSet
were to have units and the numerical discretization to account for this.The text was updated successfully, but these errors were encountered: