Ol-L: Leeman, Scheidegger, 1977 <A>

Details

This sensor from TPF collection

Article
Collibration
Precision
Ranges
Renew sensors

Использовать Проверить

  • заголовок
  • краткое описание
  • статья
  • ссылка
  • карточка
  • подробное описание
  • код
  • тест

Source

  1. source("utilities_tpf.r");
  2.  
  3. sensors.t.ol_l_leeman_scheidegger_1977_a <- function(Ol, L, ...){
  4. L <- tpf.recalc_minaral("L",L);
  5. Ol <- tpf.recalc_minaral("OL",Ol);
  6.  
  7. X <- Ol$MnO_wtp;
  8. Y <- L$MnO_wtp;
  9. T <- 12184 / (log(X / Y) + 7.96) - 273;
  10. warning(" ONLY MNO IS INVOLVED IN CALCULATIONS");
  11. return(data.frame(Name=paste0(L$Name,"-", Ol$Name),T_calc=T));
  12. }
  13.  
  14. sensors.t.ol_l_leeman_scheidegger_1977_a.args <- function(){
  15. ars <- list();
  16. ars$minerals <- c("Ol", "L");
  17. ars$ranges <- c();
  18. return(ars);
  19. }
  20.  
  21. #sensors.t.ol_l_leeman_scheidegger_1977_a.test <- function(){
  22. #
  23. #}
, ,