modules_test_data_cycle_stats

-1 rows


Description

Stores summary statistics for each cycle of a test performed using modules.

Columns

Column Type Size Nulls Auto Default Children Parents Comments
modules_cyclestats_id serial 10 nextval('modules_testdata_cyclestats_modules_cyclestats_id_seq'::regclass)

Unique identifier for the module cycle stats data point. Auto-incremented upon insertion.

module_test_id int4 10 null
modules_test_meta.module_test_id modules_cyclestats_modules_module_test_id_fkey R

Test data that stats are being calculated from. Refers to the module_test_id in modules_test_meta table.

datetime timestamptz 35,6 null

Date and time (relative to the timezone set on the cycler computer) at the specific sample time.

unixtime_s numeric 0 null

Date and time converted to unix time (also called ‘epoch time’) for the specific sample time.

cycle int2 5 null

Total number of charge/discharge step pairs the schedule file has completed. Can vary depending on the schedule file.

test_time_s numeric 0 null

Time elapsed since the start of the test, not counting pauses.

capacity_charge_mah numeric 0 null

The cumulative charge put out by the cycler during charge for the current step.

capacity_discharge_mah numeric 0 null

The cumulative charge taken in by the cycler during discharge charge for the current step.

coulombic_efficiency numeric 0 null

Calculated ratio of discharge capacity to charge capacity for the current step.

total_cycle_chargetime_s numeric 0 null

Total time spent charging during the current cycle.

cc_cycle_chargetime_s numeric 0 null

Time (in seconds) spent charging during the constant current portion of the current cycle.

cv_cycle_chargetime_s numeric 0 null

Time (in seconds) spent charging during the constant voltage portion of the current cycle.

max_temp_charge_c numeric 0 null

Maximum temperature (in Celsius) of the module during charge for the current cycle.

max_temp_discharge_c numeric 0 null

Maximum temperature (in Celsius) of the module during discharge for the current cycle.

cycler_charge_capacity_mah numeric 0 null

The cumulative charge (reported by cycler) put out during charge for the current cycle.

cycler_discharge_capacity_mah numeric 0 null

The cumulative charge (reported by cycler) taken in during discharge charge for the current cycle.

cycler_coulombic_efficiency numeric 0 null

The coulombic efficiency (reported by cycler) for the current cycle.

cycler_charge_time_s numeric 0 null

The total time in seconds (reported by cycler) spent charging during the current cycle.

cycler_discharge_time_s numeric 0 null

The total time in seconds (reported by cycler) spent discharging during the current cycle.

cycler_charge_energy_mwh numeric 0 null

The cumulative energy (reported by cycler) used during charge for the current cycle.

cycler_discharge_energy_mwh numeric 0 null

The cumulative energy (reported by cycler) used during discharge for the current cycle.

cc_capacity_mah numeric 0 null

The cumulative charge put out by the cycler during the constant current position of charge for the current cycle.

cv_capacity_mah numeric 0 null

The cumulative charge put out by the cycler during the constant voltage position of charge for the current cycle.

max_charge_cellvoltage_delta_mv numeric 0 null

The maximum change in voltage of any cell in the module during charge for the current cycle.

min_charge_cellvoltage_mv numeric 0 null

The minimum voltage of any cell in the module during charge for the current cycle.

Indexes

Constraint Name Type Sort Column(s)
modules_testdata_cyclestats_pkey Primary key Asc modules_cyclestats_id

Relationships