Commit 524bb89c authored by Delaigue Olivier's avatar Delaigue Olivier
Browse files

v1.1.3.4 UPDATE: ErrorCrit_KGE2 takes into account SCA, SWE and SD observations

Showing with 13 additions and 11 deletions
+13 -11
Package: airGR Package: airGR
Type: Package Type: Package
Title: Suite of GR Hydrological Models for Precipitation-Runoff Modelling Title: Suite of GR Hydrological Models for Precipitation-Runoff Modelling
Version: 1.1.3.3 Version: 1.1.3.4
Date: 2019-02-21 Date: 2019-02-21
Authors@R: c( Authors@R: c(
person("Laurent", "Coron", role = c("aut", "trl"), comment = c(ORCID = "0000-0002-1503-6204")), person("Laurent", "Coron", role = c("aut", "trl"), comment = c(ORCID = "0000-0002-1503-6204")),
......
...@@ -13,7 +13,7 @@ output: ...@@ -13,7 +13,7 @@ output:
### 1.1.3.3 Release Notes (2019-02-21) ### 1.1.3.4 Release Notes (2019-02-21)
......
...@@ -7,7 +7,7 @@ ErrorCrit_KGE2 <- function(InputsCrit, OutputsModel, warnings = TRUE, verbose = ...@@ -7,7 +7,7 @@ ErrorCrit_KGE2 <- function(InputsCrit, OutputsModel, warnings = TRUE, verbose =
return(NULL) return(NULL)
} }
if (inherits(InputsCrit, "Multi") | inherits(InputsCrit, "Compo")) { if (inherits(InputsCrit, "Multi") | inherits(InputsCrit, "Compo")) {
stop("InputsCrit must be of class 'Single' \n") stop("InputsCrit must be of class 'Single'. Use the ErrorCrit function on objects of class 'Multi' or 'Compo' with KGE'")
return(NULL) return(NULL)
} }
if (!inherits(OutputsModel, "OutputsModel")) { if (!inherits(OutputsModel, "OutputsModel")) {
...@@ -18,24 +18,26 @@ ErrorCrit_KGE2 <- function(InputsCrit, OutputsModel, warnings = TRUE, verbose = ...@@ -18,24 +18,26 @@ ErrorCrit_KGE2 <- function(InputsCrit, OutputsModel, warnings = TRUE, verbose =
##Initialisation_________________________________ ##Initialisation_________________________________
CritName <- NA CritName <- NA
CritVar <- InputsCrit$varObs
if (InputsCrit$transfo == "") { if (InputsCrit$transfo == "") {
CritName <- "KGE'[Q]" CritName <- "KGE'[CritVar]"
} }
if (InputsCrit$transfo == "sqrt") { if (InputsCrit$transfo == "sqrt") {
CritName <- "KGE'[sqrt(Q)]" CritName <- "KGE'[sqrt(CritVar)]"
} }
if (InputsCrit$transfo == "log") { if (InputsCrit$transfo == "log") {
CritName <- "KGE'[log(Q)]" CritName <- "KGE'[log(CritVar)]"
} }
if (InputsCrit$transfo == "inv") { if (InputsCrit$transfo == "inv") {
CritName <- "KGE'[1/Q]" CritName <- "KGE'[1/CritVar]"
} }
if (InputsCrit$transfo == "sort") { if (InputsCrit$transfo == "sort") {
CritName <- "KGE'[sort(Q)]" CritName <- "KGE'[sort(CritVar)]"
} }
CritValue <- NA CritName <- gsub(pattern = "CritVar", replacement = CritVar, x = CritName)
CritBestValue <- +1 CritValue <- NA
Multiplier <- -1 CritBestValue <- +1
Multiplier <- -1
### must be equal to -1 or +1 only ### must be equal to -1 or +1 only
......
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