Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
To clarify parameter descriptions.
  • Loading branch information
vers-w committed Jan 30, 2024
1 parent 894c811 commit b24bde1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/src/model_docs/params_lateral.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ locs = "wflow_reservoirlocs"
| `totaloutflow` | total outflow into reservoir | m``^3`` | - |
| `percfull` | fraction full (of max storage) | - | - |
| `precipitation` | average precipitation for reservoir area | mm Δt⁻¹ | - |
| `evaporation` | average evaporation for reservoir area | mm Δt⁻¹ | - |
| `evaporation` | average potential evaporation for reservoir area | mm Δt⁻¹ | - |
| `actevap` | average actual evaporation for lake area | mm Δt⁻¹ | - |

### [Lakes](@id lake_params)
Expand Down Expand Up @@ -148,7 +148,7 @@ between parentheses.
| `outflow` | outflow lake | m``^3`` s``^{-1}`` | - |
| `totaloutflow` | total outflow lake | m``^3`` | - |
| `precipitation` | average precipitation for lake area | mm Δt⁻¹ | - |
| `evaporation` | average evaporation for lake area | mm Δt⁻¹ | - |
| `evaporation` | average potential evaporation for lake area | mm Δt⁻¹ | - |
| `actevap` | average actual evaporation for lake area | mm Δt⁻¹ | - |

### [Lateral subsurface flow](@id params_ssf)
Expand Down
4 changes: 2 additions & 2 deletions src/reservoir_lake.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
percfull::Vector{T} | "-" # fraction full (of max storage) [-]
demandrelease::Vector{T} | "m3 s-1" # minimum (environmental) flow released from reservoir [m³ s⁻¹]
precipitation::Vector{T} # average precipitation for reservoir area [mm Δt⁻¹]
evaporation::Vector{T} # average evaporation for reservoir area [mm Δt⁻¹]
evaporation::Vector{T} # average potential evaporation for reservoir area [mm Δt⁻¹]
actevap::Vector{T} # average actual evaporation for reservoir area [mm Δt⁻¹]

function SimpleReservoir{T}(args...) where {T}
Expand Down Expand Up @@ -223,7 +223,7 @@ end
outflow::Vector{T} | "m3 s-1" # outflow lake [m³ s⁻¹]
totaloutflow::Vector{T} | "m3" # total outflow lake [m³]
precipitation::Vector{T} # average precipitation for lake area [mm Δt⁻¹]
evaporation::Vector{T} # average evaporation for lake area [mm Δt⁻¹]
evaporation::Vector{T} # average potential evaporation for lake area [mm Δt⁻¹]
actevap::Vector{T} # average actual evapotranspiration for lake area [mm Δt⁻¹]

function Lake{T}(args...) where {T}
Expand Down

0 comments on commit b24bde1

Please sign in to comment.