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):