This sensor from TPF collection
Article | |
---|---|
Collibration | |
Precision | |
Ranges | |
Renew sensors |
- source("utilities_tpf.r");
- sensors.t.sid_dol_anovitz_essene_1987 <- function(Sid, Dol, ...){
- Dol <- tpf.recalc_minaral("DOL",Dol);
- Sid <- tpf.recalc_minaral("SID",Sid);
- X <- (Sid$Fe_p2_pfu + Sid$Fe_p3_pfu) / Sid$Mg_pfu;
- Y <- (Dol$Fe_p2_pfu + Dol$Fe_p3_pfu) / Dol$Mg_pfu;
- T <- (X / Y + 0.691) / 0.00176 - 273;
- return(data.frame(Name=paste0(Dol$Name,"-", Sid$Name),T_calc=T));
- }
- sensors.t.sid_dol_anovitz_essene_1987.args <- function(){
- ars <- list();
- ars$minerals <- c("Sid", "Dol");
- ars$ranges <- c();
- return(ars);
- }
- #sensors.t.sid_dol_anovitz_essene_1987.test <- function(){
- #
- #}