Datum

class materials_compendium.parse.Datum(Comment, Density, Acronym, Elements, Source, References, Contact, MaterialAtomDensity, Mols, MatNum, MaterialWeight, Name, Verification_Notes, Formula)[source]

Represents a data entry with various attributes related to its properties.

Comment

List of comments associated with the data entry.

Type:

List[str]

Density

The density value of the data entry.

Type:

float

Acronym

An acronym or abbreviation associated with the data entry.

Type:

object

Elements

List of Element objects representing the elements in the data entry.

Type:

List[Element]

Source

The source of the data entry.

Type:

str

References

List of references associated with the data entry.

Type:

List[str]

Contact

A Contact object representing the contact information related to the data entry.

Type:

Contact

MaterialAtomDensity

The material atom density value of the data entry.

Type:

float

Mols

List of Mol objects representing the molecular entities in the data entry.

Type:

List[Mol]

MatNum

The material number associated with the data entry.

Type:

int

MaterialWeight

The material weight information of the data entry.

Type:

str

Name

The name of the data entry.

Type:

str

Verification_Notes

List of verification notes related to the data entry.

Type:

List[str]

Formula

The formula associated with the data entry.

Type:

str

Methods

from_dict

Create a Datum object from a dictionary representation.