From 0f7219c811f7e72020e5bdba079ce49f3b1a0666 Mon Sep 17 00:00:00 2001 From: Tim van den Aardweg Date: Fri, 17 May 2024 15:48:38 +0200 Subject: [PATCH] #634: Added another research keyword to the Geometry section. --- hydrolib/core/dflowfm/research/models.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hydrolib/core/dflowfm/research/models.py b/hydrolib/core/dflowfm/research/models.py index e2c7c3409..d11bf82b5 100644 --- a/hydrolib/core/dflowfm/research/models.py +++ b/hydrolib/core/dflowfm/research/models.py @@ -123,6 +123,10 @@ class Comments(Geometry.Comments): "Only in pipes: groundlayer thickness (m).", alias="groundLayerThickness", ) + extrbl: Optional[str] = Field( + "Extrapolation of bed level at boundaries according to the slope: 0 = no extrapolation (default); 1 = extrapolate.", + alias="ExtrBl", + ) comments: Comments = Comments() @@ -148,6 +152,7 @@ class Comments(Geometry.Comments): orgfloorlevtoplaydef: Optional[bool] = Field(None, alias="orgFloorLevelTopLayDef") pipefile: Optional[DiskOnlyFileModel] = Field(None, alias="pipeFile") groundlayerthickness: Optional[float] = Field(None, alias="groundLayerThickness") + extrbl: Optional[bool] = Field(None, alias="ExtrBl") class ResearchNumerics(Numerics):