This sensor from TPF collection
| Article | |
|---|---|
| Collibration | |
| Precision | |
| Ranges | |
| Renew sensors |
source("utilities_tpf.r");
sensors.t.ol_cpx_herving_1986 <- function(Ol, Cpx, ...){
Ol <- tpf.recalc_minaral("OL",Ol);
Cpx <- tpf.recalc_minaral("CPX",Cpx);
X <- Cpx$Na2O_wtp;
Y <- Ol$Na2O_wtp;
D <- log(X / Y);
T <- 7860 / (D + 0.8) - 273;
warning("CAN BE USED ONLY FOR ION-PROBE ANALYSES");
return(data.frame(Name=paste0(Cpx$Name,"-", Ol$Name),T_calc=T));
}
sensors.t.ol_cpx_herving_1986.args <- function(){
ars <- list();
ars$minerals <- c("Ol", "Cpx");
ars$ranges <- c();
return(ars);
}
#sensors.t.ol_cpx_herving_1986.test <- function(){
#
#}