This sensor from TPF collection
Article | |
---|---|
Collibration | |
Precision | |
Ranges | |
Renew sensors |
source("utilities_tpf.r"); sensors.t.chl_grt_perchuk_1989 <- function(Chl, Grt, P, ...){ Chl <- tpf.recalc_minaral("CHL",Chl); Grt <- tpf.recalc_minaral("GRT",Grt); X <- Chl$Mg_pfu / (Chl$Mg_pfu + Chl$Fe_p2_pfu + Chl$Fe_p3_pfu + Chl$Mn_pfu); Y <- Grt$Mg_pfu / (Grt$Mg_pfu + Grt$Fe_p2_pfu + Grt$Fe_p3_pfu + Grt$Mn_pfu); K <- - log(Y * (1 - X) / (1 - Y) / X); T <- (3973 + 0.0088 * (P * 1000 - 6000)) / (K + 2.773) - 273; warning(" CAN BE USED ONLY FOR 350<T(C)<700."); return(data.frame(Name=paste0(Chl$Name,"-", Grt$Name),P=P,T_calc=T)); } sensors.t.chl_grt_perchuk_1989.args <- function(){ ars <- list(); ars$minerals <- c("Chl", "Grt"); ars$ranges <- c("P"); return(ars); } #sensors.t.chl_grt_perchuk_1989.test <- function(){ # #}