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

Allow max 1 outflow neighbour for FlowBoundary #2192

Merged
merged 5 commits into from
Mar 31, 2025
Merged

Allow max 1 outflow neighbour for FlowBoundary #2192

merged 5 commits into from
Mar 31, 2025

Conversation

visr
Copy link
Member

@visr visr commented Mar 31, 2025

Fixes #2072. It was possible to let one FlowBoundary flow into multiple Basins. This is no longer allowed, so this is a breaking change. As far as I know it wasn't used though. It is quite confusing to have multiple outflow neighbours, because a Q at the FlowBoundary that goes to n Basins then becomes a nQ total inflow. And usually a FlowBoundary represents a single physical inflow point, that should always go to one point only.

The LevelBoundary can still be connected via resistance nodes to multiple Basins, but this makes sense when representing e.g. the sea.

visr added 3 commits March 31, 2025 14:08
Fixes #2072. It was possible to let one FlowBoundary flow into multiple Basins. This is no longer allowed, so this is a breaking change. As far as I know it wasn't used though. It is quite confusing to have multiple outflow neighbours, because a Q at the FlowBoundary that goes to n Basins then becomes a nQ total inflow. And usually a FlowBoundary represents a single physical inflow point, that should always go to one point only.

The LevelBoundary can still be connected via resistance nodes to multiple Basins, but this makes sense when representing e.g. the sea.
):
model.link.add(
model.flow_boundary[16],
model.basin[1],
name="duplicate",
name="multiple-outflows",
)
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried to come up with a link.add that triggers the unique edges validation first, but I don't think we can trigger it anymore because we'd need a from_node that supports multiple outputs and to_node that supports multiple inputs, that are allowed to be connected. I don't think that exists anymore.

@SouthEndMusic SouthEndMusic added the breaking A change that breaks existing models label Mar 31, 2025
@visr visr merged commit b7b4ce5 into main Mar 31, 2025
17 of 18 checks passed
@visr visr deleted the flow-to-one branch March 31, 2025 14:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
breaking A change that breaks existing models
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Only allow having exactly one outflow link per FlowBoundary node
2 participants