Commit 23df02d1 authored by Dorchies David's avatar Dorchies David
Browse files

feat(RunModel_LBLR): Change parameters T0 and K0 to C0 and Ko expressed as a celerity

parent 567a85cd
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
......@@ -63,10 +63,10 @@ RunModel_LBLR <- function(InputsModel, RunOptions, Param, QcontribDown) {
QcontribDown)
}
## Parameters set up
TParam <- Param[1L]
KParam <- Param[2L]
## Param[1L] et Param[2L] : m/s
TParam <- max(InputsModel$LengthHydro) * 1e3 / Param[1L] / RunOptions$FeatFUN_MOD$TimeStep #T en pdt
KParam <- max(InputsModel$LengthHydro) * 1e3 / Param[2L] / RunOptions$FeatFUN_MOD$TimeStep # T en pdt
PK <- ifelse(InputsModel$LengthHydro == 0, 0,
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment