This sensor from TPF collection
| Article | |
|---|---|
| Collibration | |
| Precision | |
| Ranges | |
| Renew sensors |
source("utilities_tpf.r");
sensors.t.grt_crd_thompson_1976 <- function(Grt, Crd, P, ...){
Grt <- tpf.recalc_minaral("GRT",Grt);
Crd <- tpf.recalc_minaral("CRD",Crd);
X <- (Crd$Fe_p2_pfu + Crd$Fe_p3_pfu) / Crd$Mg_pfu;
Y <- (Grt$Fe_p2_pfu + Grt$Fe_p3_pfu) / Grt$Mg_pfu;
T <- (2725 + P * 1000 * 0.0155) / (0.896 + log(Y / X)) - 273;
return(data.frame(Name=paste0(Crd$Name,"-", Grt$Name),P=P,T_calc=T));
}
sensors.t.grt_crd_thompson_1976.args <- function(){
ars <- list();
ars$minerals <- c("Grt", "Crd");
ars$ranges <- c("P");
return(ars);
}
#sensors.t.grt_crd_thompson_1976.test <- function(){
#
#}