This sensor from TPF collection
| Article | |
|---|---|
| Collibration | |
| Precision | |
| Ranges | |
| Renew sensors |
source("utilities_tpf.r");
sensors.p.sph_tro_fer_hutchison_scott_1983 <- function(Sph, Tro, Fer, Temp, ...){
T <- Temp;
Sph <- tpf.recalc_minaral("SPH",Sph);
N <- Sph$Fe_pfu / (Sph$Fe_pfu + Sph$Zn_pfu + Sph$Ni_pfu) * 100;
TT <- T + 273.15;
P <- - 3.576 + 0.0551 * TT - 0.0296 * TT * log(N);
warning("CAN BE USED ONLY FOR SPASE SAMPLES");
return(data.frame(Name=paste0(Sph$Name),Temp=Temp,P_calc=P));
}
sensors.p.sph_tro_fer_hutchison_scott_1983.args <- function(){
ars <- list();
ars$minerals <- c("Sph", "Tro", "Fer");
ars$ranges <- c("Temp");
return(ars);
}
#sensors.p.sph_tro_fer_hutchison_scott_1983.test <- function(){
#
#}