Это старая версия документа!
Cpx: Nomenclature of the Ca-Mg-Fe clinopyroxenes, Morimoto et al., 1988
Composition ranges of the Ca-Mg-Fe clinopyroxenes with accepted names.
Details
Reference | J. Fabries, A. K. Ferguson, I. V. Ginzburg, M. Ross, F. A. Seifert, J. Zussman, K. Aoki, G. Gottardi Nomenclature of Pyroxenes, 1988 [ref] |
Data | mineral |
Input | wtp |
заголовоккраткое описаниестатьяссылкакарточка- подробное описание
код- тест
Source
- source('recalc_cpx_4cat_norm.r');
- classifydiag.cpx_ca_mg_fe <- function (wtp_data, annotate=T, labels=F, ...)
- {
- ds <- selectNames(recalc.cpx_4cat_norm(wtp_data),
- c('Name','Ca_pfu','Mg_pfu','Fe_pfu','Fe_p2_pfu','Fe_p3_pfu','Na_pfu'));
- marks <- data.frame(Label=c('Diopside','Hedenbergite','Augite','Pigeonite','Clinoenstotite','Clinoferrosilite'),
- X=c(0.48,0.12,0.33,0.44,0.78,0.18),
- Y=c(0.55,0.55,0.33,0.12,0.03,0.03),
- Z=c(0.12,0.48,0.33,0.44,0.18,0.78));
- lines <- data.frame(X1 = c(0.50, 0.55),
- Y1 = c(0.50, 0.45),
- Z1 = c(0.00, 0.00),
- X2 = c(0.00, 0.00),
- Y2 = c(0.50, 0.45),
- Z2 = c(0.50, 0.55));
- pts <- data.frame (Name = ds$Name,
- X = ds$Mg_pfu,
- Y = ds$Ca_pfu,
- Z = ds$Fe_pfu);
- labels <- c("En", "Wo", "Fs");
- ret <- c();
- ret$type <- "ternogram";
- ret$points <- pts;
- ret$marks <- marks;
- ret$labels <- labels;
- ret$lines <- lines;
- return (ret);
- }