|
@@ -15,6 +15,7 @@ namespace OTSClassifyEngine
|
|
|
const CString STR_O = _T("O");
|
|
|
const CString STR_SUL = _T("S");
|
|
|
const CString STR_N = _T("N");
|
|
|
+ const CString STR_CR = _T("Cr");
|
|
|
const double SIC_MOLAR_CUTOFF = 85.0;
|
|
|
const double FEO_MOLAR_CUTOFF = 85.0;
|
|
|
|
|
@@ -28,12 +29,12 @@ namespace OTSClassifyEngine
|
|
|
};
|
|
|
|
|
|
// sub element
|
|
|
- const long INC_SUB_ELEMENT_MAX = 13;
|
|
|
+ const long INC_SUB_ELEMENT_MAX = 12;
|
|
|
const double INC_SUB_ELEMENT_CUT_OFF = 0.02; // weight%
|
|
|
const double INC_SUB_ELEMENT_TOTAL_100 = 5.0; // molar value
|
|
|
const CString INC_SUB_ELEMENT_NAMES[INC_SUB_ELEMENT_MAX] =
|
|
|
{
|
|
|
- _T("Mg"),_T("Al"),_T("Si"),_T("Ca"),_T("Ti"),_T("V"),_T("Cr"),_T("Mn"),_T("Zr"),_T("Nb"),_T("Mo"),_T("Ce"),_T("La")
|
|
|
+ _T("Mg"),_T("Al"),_T("Si"),_T("Ca"),_T("Ti"),_T("V"),_T("Mn"),_T("Zr"),_T("Nb"),_T("Mo"),_T("Ce"),_T("La")
|
|
|
};
|
|
|
|
|
|
// element 100 % molar value mapping cut off
|