You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"I want to schematize a underground stormwater storage facility that is fed from the stormwater system, exchanges with the groundwater, but does not itself directly exchange with the surface"
The image below shows the storage facility in grey and the stormwater system in blue:
Proposed solution
Add a field exchange_type_groundwater to the pipe and connection_node layers (integer Enum)
This field can have the values 1 "Isolated" or 2 "Connected"
In gridbuilder, this will determine whether or not a 1D-Groundwater link is created, independent from the exchange_type. So any combination of surface water exchange type / groundwater exchange type would be possible
In the migration, set exchange_type_groundwater to Isolated if Exchange thickness, Hydraulic conductivity in and Hydraulic conductivity out are all NULL, and to Connected if any of those fields is not NULL
The text was updated successfully, but these errors were encountered:
Add enum ExchangeTypeGroundwater to constants.py with values 1 (ISOLATED) AND 2 (CONNECTED
Add column exchange_type_groundwater to Pipe and ConnectionNode in models.py
Write migration
add column to tables
set column value: Connected if table.exchange_thickness is not None or table.hydraulic_conductivity_in is not None or table.hydraulic_conductivity_out is not None
be aware that both tables have geometries, some magic may be needed to fix that
User story
"I want to schematize a underground stormwater storage facility that is fed from the stormwater system, exchanges with the groundwater, but does not itself directly exchange with the surface"
The image below shows the storage facility in grey and the stormwater system in blue:
Proposed solution
The text was updated successfully, but these errors were encountered: