True and brittle micas composition, Tischendorf, 2007

True and brittle micas: composition and solid-solution series.

Details

Reference Tischendorf, G, Forster, H-J, Gottesmann, B, Rieder, Milan True and brittle micas: composition and solid-solution series, 2007 [ref]
Data mineral
Input wtp

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

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

Source

  1. require('ggplot2');
  2. source('recalc_ms_tpf_realc0.r');
  3.  
  4. classifydiag.micas_tischendorf <- function (wtp_data, annotate=T, labels=F, ...)
  5. {
  6. ds <- selectNames(recalc.ms_tpf_realc0(wtp_data),c('Name','Mg_pfu','Li_pfu','Fe_pfu','Al_c4_pfu'));
  7.  
  8. pts <- data.frame(Name=ds$Name,
  9. X=ds$Mg_pfu-ds$Li_pfu,
  10. Y=ds$Fe_pfu-ds$Al_c4_pfu);
  11. emembers <- data.frame(Label=c('ann','','pol','hyp-mus','mus','eas','phl','sid'),
  12. X=c(0,-1,-2,0,0,2,3,0),
  13. Y=c(3,2,-1,-3,-1.8,-1,0,1));
  14.  
  15. lines <- data.frame(X1 = c( 0, -1, -2, 0, 2, 3),
  16. Y1 = c( 3, 2, -1, -3, -1, 0),
  17. X2 = c(-1, -2, 0, 2, 3, 0),
  18. Y2 = c( 2, -1, -3, -1, 0, 3));
  19.  
  20. marks <- data.frame(Label=c("Phlogopite-\n-Annite", "Siderophyllilte-\n-Ploylithionite", "Muscovite\n(Celadonite)"),
  21. X=c(1, -0.25, 0),
  22. Y=c(2, 0.5, -1.25));
  23.  
  24. limits <- c(-2,3,-3,3);
  25.  
  26.  
  27. labels <- c("Li <-> Mg", "Al_iv <-> Fe_tot");
  28. ret <- c();
  29.  
  30. ret$type <- "diagram";
  31. ret$points <- pts;
  32. ret$limits <- limits;
  33. ret$marks <- rbind(marks,emembers);
  34. ret$lines <- lines;
  35. ret$labels <- labels;
  36.  
  37. return(ret);
  38. }
  • classifydiag/micas_tischendorf.txt
  • Последние изменения: 2018/11/12 15:07
  • (внешнее изменение)