Cells¶
Cell
¶
Bases: Item
A model for representing electrochemical cells.
A cell is an electrochemical device assembled from other items, recording its components and the format it was built in.
cell_format
¶
cell_format: CellFormat | None = None
The form factor of the cell, e.g., coin, pouch, in situ or otherwise.
cell_format_description
¶
cell_format_description: str | None = None
Additional human-readable description of the cell form factor, e.g., 18650, AMPIX, CAMPIX
cell_preparation_description
¶
cell_preparation_description: str | None = None
Description of how the cell was prepared.
characteristic_chemical_formula
¶
characteristic_chemical_formula: str | None = None
The chemical formula of the active material. Can be used to calculated molar mass in g/mol for normalizing capacities.
characteristic_mass
¶
characteristic_mass: float | None = None
The characteristic mass of the cell in milligrams. Can be used to normalize capacities.
characteristic_molar_mass
¶
characteristic_molar_mass: float | None = None
The molar mass of the active material, in g/mol. Will be inferred from the chemical formula, or can be supplied if it cannot be supplied
negative_electrode
¶
negative_electrode: list[CellComponent]
The components of the negative electrode (anode) of the cell.
positive_electrode
¶
positive_electrode: list[CellComponent]
The components of the positive electrode (cathode) of the cell.
status
¶
status: CellStatus = CellStatus.ACTIVE
The status of the cells, indicating its current state.
CellComponent
¶
Bases: Constituent