rockverse.dualenergyct.CalibrationMaterial.composition#

property CalibrationMaterial.composition#

Dictionary defining the chemical composition of the calibration material. Must be set as key: value pairs where key is the element symbol and value is the proportionate number of atoms of each element. The element has to be a valid symbol in the PeriodicTable.

Examples:

Water H2O:

dectgroup.calibration_material[1].composition = {'H': 2, 'O': 1}

Silica SiO2:

dectgroup.calibration_material[2].composition = {'Si': 1, 'O': 2}

Dolomite CaMg(CO3)2:

dectgroup.calibration_material[3].composition = {'Ca': 1, 'Mg': 1, 'C': 2, 'O': 6}

Teflon (C2F4)n:

dectgroup.calibration_material[3].composition = {'C': 2, 'F': 4}