added pumpingStation config, expanded functionality for difference in measurement container

This commit is contained in:
znetsixe
2025-10-15 14:09:37 +02:00
parent 428c611ec6
commit f9d1348fd0
3 changed files with 69 additions and 42 deletions

View File

@@ -206,21 +206,18 @@
}
},
"basin": {
"shape": {
"default": "cylindrical",
"volume": {
"default": "1",
"rules": {
"type": "enum",
"values": [
{
"value": "cylindrical",
"description": "The wet well is primarily cylindrical."
},
{
"value": "rectangular",
"description": "The wet well is rectangular or box shaped."
}
],
"description": "General geometry of the basin or wet well."
"type": "number",
"description": "Total volume of empty basin in m3"
}
},
"height": {
"default": "1",
"rules": {
"type": "number",
"description": "Total height of basin in m"
}
},
"levelUnit": {
@@ -272,7 +269,6 @@
}
},
"hydraulics": {
"maxInflowRate": {
"default": 200,
"rules": {
@@ -281,6 +277,28 @@
"description": "Maximum expected inflow during peak events (m3/h)."
}
},
"refHeight": {
"default": "NAP",
"rules": {
"type": "enum",
"values": [
{
"value": "NAP",
"description": "NAP (Normaal Amsterdams Peil)"
},
{
"value": "EVRF",
"description": "EVRF (European Vertical Reference Frame)"
},
{
"value": "EGM2008",
"description": "EGM2008 / EGM96 (satellietmetingen) Geopotentieel model earth "
}
],
"description": "Reference height to use to identify the height vs other basins with. This will say something more about the expected pressure loss in m head"
}
},
"staticHead": {
"default": 12,
"rules": {