Skip to content

Commit

Permalink
feat: Fix remaining keywords (#670)
Browse files Browse the repository at this point in the history
refs: #648
  • Loading branch information
tim-vd-aardweg authored Jul 5, 2024
1 parent 10ce92a commit 8349b34
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion hydrolib/core/dflowfm/research/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ class Comments(Numerics.Comments):
None, alias="vertadvtypmom3onbnd"
)
research_noderivedtypes: Optional[int] = Field(None, alias="noderivedtypes")
research_jadelvappos: Optional[bool] = Field(None, alias="jadelvapos")
research_jadelvappos: Optional[bool] = Field(None, alias="jadelvappos")
research_jarhoxu: Optional[int] = Field(None, alias="jarhoxu")


Expand Down Expand Up @@ -507,6 +507,10 @@ class Comments(Physics.Comments):
"Turbulent Schmidt number for tracer(s).",
alias="schmidtnumbertracer",
)
research_umodlin: Optional[str] = Field(
"Linear friction umod, for ifrctyp=4,5,6.",
alias="umodlin",
)
research_uniffrictcoef1dgrlay: Optional[str] = Field(
"Uniform ground layer friction coefficient for ocean models (m/s) (0: no friction).",
alias="uniffrictcoef1dgrlay",
Expand Down Expand Up @@ -539,6 +543,7 @@ class Comments(Physics.Comments):
research_schmidtnumbertracer: Optional[float] = Field(
None, alias="schmidtnumbertracer"
)
research_umodlin: Optional[float] = Field(None, alias="umodlin")
research_uniffrictcoef1dgrlay: Optional[float] = Field(
None, alias="uniffrictcoef1dgrlay"
)
Expand Down

0 comments on commit 8349b34

Please sign in to comment.