diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..7a0497999415502d1297ac357bb4b62bcba56019 --- /dev/null +++ b/README.md @@ -0,0 +1,211 @@ +--- +license: cc-by-4.0 +language: + - en +pretty_name: celljar +tags: + - battery + - lithium-ion + - energy-storage + - timeseries + - electrochemistry + - bms + - hppc + - cycling +size_categories: + - 10K +- Sources in this snapshot: `BILLS`, `CLO`, `ECKER`, `HNEI`, `MATR`, `NASA_PCOE`, `NAUMANN`, `ORNL` +- Contents: **273 cells**, **348 tests**, **167,820,250 timeseries rows** + +## Files + +``` +cells/*.json # one file per cell (hardware metadata) +tests/*.json # one file per test (protocol + provenance + observed stats) +timeseries.parquet # all tests' V/I/T samples; join on test_id +cycle_summary.parquet # per-cycle aggregates (aging studies); join on (test_id, cycle_number) +``` + +## Schema (overview) + +Four entities; field list generated from the authoritative [JSON Schemas](https://github.com/mihnathul/celljar/tree/main/schemas): + +- **`cell_metadata`** (JSON, one file per cell) — `cell_id`*, `source`*, `source_cell_id`, `manufacturer`, `model_number`, `chemistry`*, `cathode`, `anode`, `electrolyte`, `form_factor`*, `nominal_capacity_Ah`, `nominal_voltage_V`, `max_voltage_V`, `min_voltage_V` +- **`test_metadata`** (JSON, one file per test) — `test_id`*, `cell_id`*, `test_type`*, `temperature_C_min`, `temperature_C_max`, `soc_range_min`, `soc_range_max`, `soc_step`, `c_rate_charge`, `c_rate_discharge`, `protocol_description`, `num_cycles`, `soh_pct`, `soh_method`, `cycle_count_at_test`, `test_year`, `source_doi`, `source_url`, `source_citation`, `source_license`, `source_license_url`, `n_samples`, `duration_s`, `voltage_observed_min_V`, `voltage_observed_max_V`, `current_observed_min_A`, `current_observed_max_A`, `temperature_observed_min_C`, `temperature_observed_max_C`, `sample_dt_min_s`, `sample_dt_median_s`, `sample_dt_max_s` +- **`timeseries`** (Parquet, one row per measurement sample) — `test_id`*, `cycle_number`*, `step_number`, `step_type`, `timestamp_s`*, `voltage_V`, `current_A`, `temperature_C`, `coulomb_count_Ah`, `energy_Wh`, `displacement_um` +- **`cycle_summary`** (Parquet, one row per cycle / aging checkpoint) — `test_id`*, `cell_id`*, `cycle_number`, `equivalent_full_cycles`, `elapsed_time_s`, `capacity_Ah`, `capacity_retention_pct`, `resistance_dc_ohm`, `resistance_dc_pulse_duration_s`, `resistance_dc_soc_pct`, `energy_Wh`, `coulombic_efficiency`, `temperature_C_mean` + +`*` = required field (others nullable). See [JSON Schemas](https://github.com/mihnathul/celljar/tree/main/schemas) for full type info, enum values, and constraints. + +SI units. Relative timestamps. Missing data is explicit `null` (no NaN +sentinels). Current sign convention: positive = charge (into the cell), +negative = discharge. + +Join keys: `cells.cell_id = tests.cell_id`, `tests.test_id = timeseries.test_id`, +`(tests.test_id, cycle_number) = cycle_summary.(test_id, cycle_number)`. + +## Quick start + +### DuckDB — read everything in place, no download + +```sql +INSTALL httpfs; LOAD httpfs; +SELECT c.chemistry, c.nominal_capacity_Ah, + t.test_id, t.test_type, t.soh_pct, + COUNT(*) AS n_samples +FROM read_json('https://huggingface.co/datasets/mihnathul/celljar/resolve/main/cells/*.json') c +JOIN read_json('https://huggingface.co/datasets/mihnathul/celljar/resolve/main/tests/*.json') t + ON c.cell_id = t.cell_id +JOIN 'https://huggingface.co/datasets/mihnathul/celljar/resolve/main/timeseries.parquet' ts + ON t.test_id = ts.test_id +GROUP BY 1,2,3,4,5 +ORDER BY t.test_id; +``` + +### pandas — predicate-pushdown read of one test + +```python +import pandas as pd + +df = pd.read_parquet( + "https://huggingface.co/datasets/mihnathul/celljar/resolve/main/timeseries.parquet", + filters=[("test_id", "==", "ORNL_LEAF_2013_HPPC_25C")], +) +print(df.head()) +``` + +### `datasets` library — streaming + +```python +from datasets import load_dataset + +ds = load_dataset( + "parquet", + data_files="https://huggingface.co/datasets/mihnathul/celljar/resolve/main/timeseries.parquet", + split="train", + streaming=True, +) +for row in ds.take(5): + print(row) +``` + +### `huggingface_hub` — pull the whole bundle locally + +```python +from huggingface_hub import snapshot_download + +local = snapshot_download(repo_id="mihnathul/celljar", repo_type="dataset") +print(local) # contains cells/, tests/, timeseries.parquet +``` + +## License & citation + +The science here belongs to the original authors; celljar simply puts their +data in one place with a shared schema. Please cite their papers when you use +the data, and, if it's helpful, celljar alongside. + +- **This harmonized bundle** (packaging, schema, derived test-metadata fields): + [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/). +- **Upstream raw data** retains each publisher's original license — listed + per-source below. Each source's license terms apply when you use its tests. + +To make attribution easy, every `tests/*.json` row carries its own +`source_doi`, `source_citation`, `source_license`, and `source_license_url` +fields, so you can pull references for any analysis with one query. + +## Per-source citations + +### BILLS + +> Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5 + +**License:** CC-BY-4.0 · [license terms](https://creativecommons.org/licenses/by/4.0/) · [dataset](https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830) · DOI: `10.1184/R1/14226830` + +### CLO + +> Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5 + +**License:** CC-BY-4.0 · [license terms](https://creativecommons.org/licenses/by/4.0/) · [dataset](https://data.matr.io/1/projects/5d80e633f405260001c0b60a) · DOI: `10.1038/s41586-020-1994-5` + +### ECKER + +> (citation unavailable in harmonized bundle) + +**License:** see upstream + +### HNEI + +> Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1 + +**License:** CC-BY-4.0 · [license terms](https://creativecommons.org/licenses/by/4.0/) · [dataset](https://data.mendeley.com/datasets/wykht8y7tg/1) · DOI: `10.17632/wykht8y7tg.1` + +### MATR + +> Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8 + +**License:** CC-BY-4.0 · [license terms](https://creativecommons.org/licenses/by/4.0/) · [dataset](https://data.matr.io/1/projects/5c48dd2bc625d700019f3204) · DOI: `10.1038/s41560-019-0356-8` + +### NASA_PCOE + +> Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA — community consensus treats them as LCO. + +**License:** CC0-1.0 · [license terms](https://creativecommons.org/publicdomain/zero/1.0/) · [dataset](https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/) + +### NAUMANN + +> Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666 + +**License:** CC-BY-4.0 · [license terms](https://creativecommons.org/licenses/by/4.0/) · [dataset](https://data.mendeley.com/datasets/kxh42bfgtj/1) · DOI: `10.17632/kxh42bfgtj.1` + +### ORNL + +> Wiggins, G., Allu, S., & Wang, H. (2019). Battery cell data from a 2013 Nissan Leaf. Oak Ridge National Laboratory. https://doi.org/10.5281/zenodo.2580327 + +**License:** MIT · [license terms](https://opensource.org/licenses/MIT) · [dataset](https://zenodo.org/records/2580327) · DOI: `10.5281/zenodo.2580327` + +## Citing celljar + +If you'd like to cite celljar: + +```bibtex +@software{celljar, + author = {Mihna Neerulpan}, + title = {celljar: Public Battery Test Dataset Harmonization with a Canonical Schema}, + year = {2026}, + url = {https://github.com/mihnathul/celljar}, +} +``` + +## Links + +- Code: +- Issues / new-source requests: +- Canonical JSON Schemas: diff --git a/cells/BILLS_EVTOL_VAH01.json b/cells/BILLS_EVTOL_VAH01.json new file mode 100644 index 0000000000000000000000000000000000000000..9816baa21339f1f7ca687ab1bb200fe31cf9c3e8 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH01.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH01", + "source_cell_id": "VAH01", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH02.json b/cells/BILLS_EVTOL_VAH02.json new file mode 100644 index 0000000000000000000000000000000000000000..d247a5124437418cffa0008c06a3d45b414fb0c0 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH02.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH02", + "source_cell_id": "VAH02", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH05.json b/cells/BILLS_EVTOL_VAH05.json new file mode 100644 index 0000000000000000000000000000000000000000..e772d171a873a4932a4589981ab2bd991ac2ae41 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH05.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH05", + "source_cell_id": "VAH05", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH06.json b/cells/BILLS_EVTOL_VAH06.json new file mode 100644 index 0000000000000000000000000000000000000000..3e26b9a1b59e70a20286b12b1fa97914649a8045 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH06.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH06", + "source_cell_id": "VAH06", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH07.json b/cells/BILLS_EVTOL_VAH07.json new file mode 100644 index 0000000000000000000000000000000000000000..9fb9f616b51c72ae164fdcfa5959da828dd6d69d --- /dev/null +++ b/cells/BILLS_EVTOL_VAH07.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH07", + "source_cell_id": "VAH07", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH09.json b/cells/BILLS_EVTOL_VAH09.json new file mode 100644 index 0000000000000000000000000000000000000000..994aa422421ce17406fca4e1c28c81e8a0525323 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH09.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH09", + "source_cell_id": "VAH09", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH10.json b/cells/BILLS_EVTOL_VAH10.json new file mode 100644 index 0000000000000000000000000000000000000000..9910eb82b5b5af44b63ef688f362d359dd77e73e --- /dev/null +++ b/cells/BILLS_EVTOL_VAH10.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH10", + "source_cell_id": "VAH10", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH11.json b/cells/BILLS_EVTOL_VAH11.json new file mode 100644 index 0000000000000000000000000000000000000000..5ca6d7f1fbb18b3376a5c8667076969abdd36797 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH11.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH11", + "source_cell_id": "VAH11", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH12.json b/cells/BILLS_EVTOL_VAH12.json new file mode 100644 index 0000000000000000000000000000000000000000..32899be3038401bfda44badf1a65d919b80e7180 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH12.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH12", + "source_cell_id": "VAH12", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH13.json b/cells/BILLS_EVTOL_VAH13.json new file mode 100644 index 0000000000000000000000000000000000000000..78b53daa809664c40c751e2824a1d26b7efc1942 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH13.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH13", + "source_cell_id": "VAH13", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH15.json b/cells/BILLS_EVTOL_VAH15.json new file mode 100644 index 0000000000000000000000000000000000000000..fab9f44f3b71cace6443bea409ad7d6329ba8287 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH15.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH15", + "source_cell_id": "VAH15", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH16.json b/cells/BILLS_EVTOL_VAH16.json new file mode 100644 index 0000000000000000000000000000000000000000..b8161a15b46161f3d045152b3c737c0b29f224dc --- /dev/null +++ b/cells/BILLS_EVTOL_VAH16.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH16", + "source_cell_id": "VAH16", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH17.json b/cells/BILLS_EVTOL_VAH17.json new file mode 100644 index 0000000000000000000000000000000000000000..6297ba5ec12e95cfbf6595887edb2c5b44c832e6 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH17.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH17", + "source_cell_id": "VAH17", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH20.json b/cells/BILLS_EVTOL_VAH20.json new file mode 100644 index 0000000000000000000000000000000000000000..52d1c7aff0341d7451dc4c418ecf2be510a1e8e9 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH20.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH20", + "source_cell_id": "VAH20", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH22.json b/cells/BILLS_EVTOL_VAH22.json new file mode 100644 index 0000000000000000000000000000000000000000..1b17871b1a56e222d14f7aeb51b2f0f296e1e4fb --- /dev/null +++ b/cells/BILLS_EVTOL_VAH22.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH22", + "source_cell_id": "VAH22", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH23.json b/cells/BILLS_EVTOL_VAH23.json new file mode 100644 index 0000000000000000000000000000000000000000..7b1be9a217e3c89dcf03954e0481f5f5340cae1f --- /dev/null +++ b/cells/BILLS_EVTOL_VAH23.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH23", + "source_cell_id": "VAH23", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH24.json b/cells/BILLS_EVTOL_VAH24.json new file mode 100644 index 0000000000000000000000000000000000000000..d194fcb92327fc3b2c666d4ed9b8ff4924a38e4f --- /dev/null +++ b/cells/BILLS_EVTOL_VAH24.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH24", + "source_cell_id": "VAH24", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH25.json b/cells/BILLS_EVTOL_VAH25.json new file mode 100644 index 0000000000000000000000000000000000000000..7f3977245efe2c1f4f037f13bafef89327180404 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH25.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH25", + "source_cell_id": "VAH25", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH26.json b/cells/BILLS_EVTOL_VAH26.json new file mode 100644 index 0000000000000000000000000000000000000000..dac86ce0f59702979e9e408cc1dfd2483e5ee474 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH26.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH26", + "source_cell_id": "VAH26", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH27.json b/cells/BILLS_EVTOL_VAH27.json new file mode 100644 index 0000000000000000000000000000000000000000..69123bb9fd7ffee570d913786df9ae05c0f256b6 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH27.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH27", + "source_cell_id": "VAH27", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH28.json b/cells/BILLS_EVTOL_VAH28.json new file mode 100644 index 0000000000000000000000000000000000000000..cb060e7aec76caefb2870d4e4cc63a4db32fd981 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH28.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH28", + "source_cell_id": "VAH28", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/BILLS_EVTOL_VAH30.json b/cells/BILLS_EVTOL_VAH30.json new file mode 100644 index 0000000000000000000000000000000000000000..753145b61048a16df8b58e476783eec511e23f99 --- /dev/null +++ b/cells/BILLS_EVTOL_VAH30.json @@ -0,0 +1,16 @@ +{ + "cell_id": "BILLS_EVTOL_VAH30", + "source_cell_id": "VAH30", + "source": "BILLS", + "manufacturer": "Sony-Murata", + "model_number": "US18650VTC6", + "chemistry": "NMC", + "cathode": "NMC", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/CLO_B4C0.json b/cells/CLO_B4C0.json new file mode 100644 index 0000000000000000000000000000000000000000..911addf7b80ce84faf68c6632d0eddeff4bca1cd --- /dev/null +++ b/cells/CLO_B4C0.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C0", + "source": "CLO", + "source_cell_id": "b4c0", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C1.json b/cells/CLO_B4C1.json new file mode 100644 index 0000000000000000000000000000000000000000..a2b00f168859624b9b2d6091f5fa6110b9067709 --- /dev/null +++ b/cells/CLO_B4C1.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C1", + "source": "CLO", + "source_cell_id": "b4c1", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C10.json b/cells/CLO_B4C10.json new file mode 100644 index 0000000000000000000000000000000000000000..576e3043f16bde836844d8293a2e6757b3fbacd0 --- /dev/null +++ b/cells/CLO_B4C10.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C10", + "source": "CLO", + "source_cell_id": "b4c10", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C11.json b/cells/CLO_B4C11.json new file mode 100644 index 0000000000000000000000000000000000000000..f13ccabf78bc6c261cc90342f77d236712b1b786 --- /dev/null +++ b/cells/CLO_B4C11.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C11", + "source": "CLO", + "source_cell_id": "b4c11", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C12.json b/cells/CLO_B4C12.json new file mode 100644 index 0000000000000000000000000000000000000000..a35ae728e81e5f41e2e113eab7d2b9f43a2e964f --- /dev/null +++ b/cells/CLO_B4C12.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C12", + "source": "CLO", + "source_cell_id": "b4c12", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C13.json b/cells/CLO_B4C13.json new file mode 100644 index 0000000000000000000000000000000000000000..fbeffc768584cc64391f52be3e16721d5205bbc7 --- /dev/null +++ b/cells/CLO_B4C13.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C13", + "source": "CLO", + "source_cell_id": "b4c13", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C14.json b/cells/CLO_B4C14.json new file mode 100644 index 0000000000000000000000000000000000000000..65fc30bcbf53247d7ab8ab0a7d543eaf99b5e28f --- /dev/null +++ b/cells/CLO_B4C14.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C14", + "source": "CLO", + "source_cell_id": "b4c14", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C15.json b/cells/CLO_B4C15.json new file mode 100644 index 0000000000000000000000000000000000000000..53303bc3c624bafc673b09ae09db3336dd365c09 --- /dev/null +++ b/cells/CLO_B4C15.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C15", + "source": "CLO", + "source_cell_id": "b4c15", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C16.json b/cells/CLO_B4C16.json new file mode 100644 index 0000000000000000000000000000000000000000..70da1b661730497a19b112b350914c90700e5ba0 --- /dev/null +++ b/cells/CLO_B4C16.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C16", + "source": "CLO", + "source_cell_id": "b4c16", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C17.json b/cells/CLO_B4C17.json new file mode 100644 index 0000000000000000000000000000000000000000..75bff0aa3396efb50d910297bf785116dab2818e --- /dev/null +++ b/cells/CLO_B4C17.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C17", + "source": "CLO", + "source_cell_id": "b4c17", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C18.json b/cells/CLO_B4C18.json new file mode 100644 index 0000000000000000000000000000000000000000..bf156c67a8a0bf05732373dc3be0d30cc5398b38 --- /dev/null +++ b/cells/CLO_B4C18.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C18", + "source": "CLO", + "source_cell_id": "b4c18", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C19.json b/cells/CLO_B4C19.json new file mode 100644 index 0000000000000000000000000000000000000000..fe0f02721ecd79de94d0f1c4f0ba0fcdce4a5c49 --- /dev/null +++ b/cells/CLO_B4C19.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C19", + "source": "CLO", + "source_cell_id": "b4c19", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C2.json b/cells/CLO_B4C2.json new file mode 100644 index 0000000000000000000000000000000000000000..cad3bae82d652151828508bd9fceae9ff843a1d4 --- /dev/null +++ b/cells/CLO_B4C2.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C2", + "source": "CLO", + "source_cell_id": "b4c2", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C20.json b/cells/CLO_B4C20.json new file mode 100644 index 0000000000000000000000000000000000000000..370b807c35384083d6b9abf1afc42e764740f101 --- /dev/null +++ b/cells/CLO_B4C20.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C20", + "source": "CLO", + "source_cell_id": "b4c20", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C21.json b/cells/CLO_B4C21.json new file mode 100644 index 0000000000000000000000000000000000000000..ec85c9035e977588fc6173a1dc59867245184ef9 --- /dev/null +++ b/cells/CLO_B4C21.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C21", + "source": "CLO", + "source_cell_id": "b4c21", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C22.json b/cells/CLO_B4C22.json new file mode 100644 index 0000000000000000000000000000000000000000..4c12d69b00a38d122dcdfc179fbfd218ddcfa737 --- /dev/null +++ b/cells/CLO_B4C22.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C22", + "source": "CLO", + "source_cell_id": "b4c22", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C23.json b/cells/CLO_B4C23.json new file mode 100644 index 0000000000000000000000000000000000000000..b9277a607ab5168610521b4931e1e6e889ff1eb2 --- /dev/null +++ b/cells/CLO_B4C23.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C23", + "source": "CLO", + "source_cell_id": "b4c23", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C24.json b/cells/CLO_B4C24.json new file mode 100644 index 0000000000000000000000000000000000000000..6f7d8ed36251684cbb720e6cf364b85f03dfcbe0 --- /dev/null +++ b/cells/CLO_B4C24.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C24", + "source": "CLO", + "source_cell_id": "b4c24", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C25.json b/cells/CLO_B4C25.json new file mode 100644 index 0000000000000000000000000000000000000000..09f130ab8034e558e0b70d7c4b510f259942cdf8 --- /dev/null +++ b/cells/CLO_B4C25.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C25", + "source": "CLO", + "source_cell_id": "b4c25", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C26.json b/cells/CLO_B4C26.json new file mode 100644 index 0000000000000000000000000000000000000000..5bc77388015e75fdc09ffa30685a973331bf663f --- /dev/null +++ b/cells/CLO_B4C26.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C26", + "source": "CLO", + "source_cell_id": "b4c26", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C27.json b/cells/CLO_B4C27.json new file mode 100644 index 0000000000000000000000000000000000000000..f1ca038bdf4a05659f18f88fbceeafd99ae6f89e --- /dev/null +++ b/cells/CLO_B4C27.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C27", + "source": "CLO", + "source_cell_id": "b4c27", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C28.json b/cells/CLO_B4C28.json new file mode 100644 index 0000000000000000000000000000000000000000..b35afa893bd71cf89abb4fee682770ab9b46820b --- /dev/null +++ b/cells/CLO_B4C28.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C28", + "source": "CLO", + "source_cell_id": "b4c28", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C29.json b/cells/CLO_B4C29.json new file mode 100644 index 0000000000000000000000000000000000000000..f8ac0d0873bb7a544186c3531f7338d9d184aa08 --- /dev/null +++ b/cells/CLO_B4C29.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C29", + "source": "CLO", + "source_cell_id": "b4c29", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C3.json b/cells/CLO_B4C3.json new file mode 100644 index 0000000000000000000000000000000000000000..7cb854e3e436c51ffd32b97b1565e4170dfa73d4 --- /dev/null +++ b/cells/CLO_B4C3.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C3", + "source": "CLO", + "source_cell_id": "b4c3", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C30.json b/cells/CLO_B4C30.json new file mode 100644 index 0000000000000000000000000000000000000000..589ff091ba76026397486024045f59a26bd8e00c --- /dev/null +++ b/cells/CLO_B4C30.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C30", + "source": "CLO", + "source_cell_id": "b4c30", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C31.json b/cells/CLO_B4C31.json new file mode 100644 index 0000000000000000000000000000000000000000..a371db3c37d74f44d26494e6f1077f4acf9abfd0 --- /dev/null +++ b/cells/CLO_B4C31.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C31", + "source": "CLO", + "source_cell_id": "b4c31", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C32.json b/cells/CLO_B4C32.json new file mode 100644 index 0000000000000000000000000000000000000000..fb787a4ec80027c91db7a17fabb75286334724d6 --- /dev/null +++ b/cells/CLO_B4C32.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C32", + "source": "CLO", + "source_cell_id": "b4c32", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C33.json b/cells/CLO_B4C33.json new file mode 100644 index 0000000000000000000000000000000000000000..272a3aa1034fa3bddc462eb0a75770e32eba5120 --- /dev/null +++ b/cells/CLO_B4C33.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C33", + "source": "CLO", + "source_cell_id": "b4c33", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C34.json b/cells/CLO_B4C34.json new file mode 100644 index 0000000000000000000000000000000000000000..738c82e1ec530ff87a54cefa52fd4abc1d2e5cb4 --- /dev/null +++ b/cells/CLO_B4C34.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C34", + "source": "CLO", + "source_cell_id": "b4c34", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C35.json b/cells/CLO_B4C35.json new file mode 100644 index 0000000000000000000000000000000000000000..5b5077203e6fceed920a94182494349cdba65391 --- /dev/null +++ b/cells/CLO_B4C35.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C35", + "source": "CLO", + "source_cell_id": "b4c35", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C36.json b/cells/CLO_B4C36.json new file mode 100644 index 0000000000000000000000000000000000000000..543dfa588c563ef1b2fcd827d78c9f1682c58896 --- /dev/null +++ b/cells/CLO_B4C36.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C36", + "source": "CLO", + "source_cell_id": "b4c36", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C37.json b/cells/CLO_B4C37.json new file mode 100644 index 0000000000000000000000000000000000000000..2bba02e2b2cb1d2f7801db5d83bdbdfa3e567ea8 --- /dev/null +++ b/cells/CLO_B4C37.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C37", + "source": "CLO", + "source_cell_id": "b4c37", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C38.json b/cells/CLO_B4C38.json new file mode 100644 index 0000000000000000000000000000000000000000..92a8a4ec941b8ee18c33817cdf1ec3d9238651f5 --- /dev/null +++ b/cells/CLO_B4C38.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C38", + "source": "CLO", + "source_cell_id": "b4c38", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C39.json b/cells/CLO_B4C39.json new file mode 100644 index 0000000000000000000000000000000000000000..d6cc77d3581d28dcb1357a093238a2ebfeda0d47 --- /dev/null +++ b/cells/CLO_B4C39.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C39", + "source": "CLO", + "source_cell_id": "b4c39", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C4.json b/cells/CLO_B4C4.json new file mode 100644 index 0000000000000000000000000000000000000000..e35a7bd1516123c37024f2b28c8d69b13d7a2909 --- /dev/null +++ b/cells/CLO_B4C4.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C4", + "source": "CLO", + "source_cell_id": "b4c4", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C40.json b/cells/CLO_B4C40.json new file mode 100644 index 0000000000000000000000000000000000000000..d2b06302faf94887eb872b4df2dfa4d06d5dca2f --- /dev/null +++ b/cells/CLO_B4C40.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C40", + "source": "CLO", + "source_cell_id": "b4c40", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C41.json b/cells/CLO_B4C41.json new file mode 100644 index 0000000000000000000000000000000000000000..9dae9072ba4d1d42b540341845654050323138e6 --- /dev/null +++ b/cells/CLO_B4C41.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C41", + "source": "CLO", + "source_cell_id": "b4c41", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C42.json b/cells/CLO_B4C42.json new file mode 100644 index 0000000000000000000000000000000000000000..74f1f6c503cf0f94432e208547c2a52fdf741a4d --- /dev/null +++ b/cells/CLO_B4C42.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C42", + "source": "CLO", + "source_cell_id": "b4c42", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C43.json b/cells/CLO_B4C43.json new file mode 100644 index 0000000000000000000000000000000000000000..b2ffb9256032c1c1bb2afaf572ca5830aa00fcd0 --- /dev/null +++ b/cells/CLO_B4C43.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C43", + "source": "CLO", + "source_cell_id": "b4c43", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C44.json b/cells/CLO_B4C44.json new file mode 100644 index 0000000000000000000000000000000000000000..21511ffedb9953952e086dfae89a78249a77988d --- /dev/null +++ b/cells/CLO_B4C44.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C44", + "source": "CLO", + "source_cell_id": "b4c44", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C5.json b/cells/CLO_B4C5.json new file mode 100644 index 0000000000000000000000000000000000000000..b3aec4cffbd1abab8a0410fc74ab350d100b29fd --- /dev/null +++ b/cells/CLO_B4C5.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C5", + "source": "CLO", + "source_cell_id": "b4c5", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C6.json b/cells/CLO_B4C6.json new file mode 100644 index 0000000000000000000000000000000000000000..cef5ae889971a05c6c79482dac8a87c4eb0ba798 --- /dev/null +++ b/cells/CLO_B4C6.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C6", + "source": "CLO", + "source_cell_id": "b4c6", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C7.json b/cells/CLO_B4C7.json new file mode 100644 index 0000000000000000000000000000000000000000..fa24279376483bc5716fbfc1c868013c90b396f3 --- /dev/null +++ b/cells/CLO_B4C7.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C7", + "source": "CLO", + "source_cell_id": "b4c7", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C8.json b/cells/CLO_B4C8.json new file mode 100644 index 0000000000000000000000000000000000000000..0121e7d43d8356dcfe197a78c96781951ac213da --- /dev/null +++ b/cells/CLO_B4C8.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C8", + "source": "CLO", + "source_cell_id": "b4c8", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/CLO_B4C9.json b/cells/CLO_B4C9.json new file mode 100644 index 0000000000000000000000000000000000000000..08936e0af10b5e30ed82720a8cefec585b0fa91b --- /dev/null +++ b/cells/CLO_B4C9.json @@ -0,0 +1,16 @@ +{ + "cell_id": "CLO_B4C9", + "source": "CLO", + "source_cell_id": "b4c9", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/ECKER_KOKAM_SLPB75106100.json b/cells/ECKER_KOKAM_SLPB75106100.json new file mode 100644 index 0000000000000000000000000000000000000000..2015b079495f454e1c57f6a049c12f102ba4d6c2 --- /dev/null +++ b/cells/ECKER_KOKAM_SLPB75106100.json @@ -0,0 +1,16 @@ +{ + "cell_id": "ECKER_KOKAM_SLPB75106100", + "source": "ECKER", + "source_cell_id": "Kokam_SLPB75106100", + "manufacturer": "Kokam", + "model_number": "SLPB75106100", + "chemistry": "NMC", + "cathode": "LiNi_{1/3}Mn_{1/3}Co_{1/3}O_2", + "anode": "graphite", + "electrolyte": null, + "form_factor": "pouch", + "nominal_capacity_Ah": 7.5, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.8 +} \ No newline at end of file diff --git a/cells/HNEI_PANASONIC_18650PF.json b/cells/HNEI_PANASONIC_18650PF.json new file mode 100644 index 0000000000000000000000000000000000000000..ca02a70892c84aecffa816f3e0bd1f26cd51afbe --- /dev/null +++ b/cells/HNEI_PANASONIC_18650PF.json @@ -0,0 +1,16 @@ +{ + "cell_id": "HNEI_PANASONIC_18650PF", + "source": "HNEI", + "source_cell_id": "Panasonic_NCR18650PF", + "manufacturer": "Panasonic", + "model_number": "NCR18650PF", + "chemistry": "NCA", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.9, + "nominal_voltage_V": 3.6, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5 +} \ No newline at end of file diff --git a/cells/MATR_B1C0.json b/cells/MATR_B1C0.json new file mode 100644 index 0000000000000000000000000000000000000000..cb048f8adaa12749203a757af5e19f3c57eadbcb --- /dev/null +++ b/cells/MATR_B1C0.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C0", + "source": "MATR", + "source_cell_id": "b1c0", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C1.json b/cells/MATR_B1C1.json new file mode 100644 index 0000000000000000000000000000000000000000..6701a39a3195ad19be2fe0781e203009119352ed --- /dev/null +++ b/cells/MATR_B1C1.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C1", + "source": "MATR", + "source_cell_id": "b1c1", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C10.json b/cells/MATR_B1C10.json new file mode 100644 index 0000000000000000000000000000000000000000..055fbc69e86d31c0de1699f4ab035d0610fb07eb --- /dev/null +++ b/cells/MATR_B1C10.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C10", + "source": "MATR", + "source_cell_id": "b1c10", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C11.json b/cells/MATR_B1C11.json new file mode 100644 index 0000000000000000000000000000000000000000..40c284f04e42ec36fa896da174812fdb38145c38 --- /dev/null +++ b/cells/MATR_B1C11.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C11", + "source": "MATR", + "source_cell_id": "b1c11", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C12.json b/cells/MATR_B1C12.json new file mode 100644 index 0000000000000000000000000000000000000000..2cedec5dc56b2aff579cead66f042de7c699d3b6 --- /dev/null +++ b/cells/MATR_B1C12.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C12", + "source": "MATR", + "source_cell_id": "b1c12", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C13.json b/cells/MATR_B1C13.json new file mode 100644 index 0000000000000000000000000000000000000000..ea35eb5fbd97ae485ff171aaaa06271fd4274408 --- /dev/null +++ b/cells/MATR_B1C13.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C13", + "source": "MATR", + "source_cell_id": "b1c13", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C14.json b/cells/MATR_B1C14.json new file mode 100644 index 0000000000000000000000000000000000000000..b2e4617ba5415627950f6734293818c173c78932 --- /dev/null +++ b/cells/MATR_B1C14.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C14", + "source": "MATR", + "source_cell_id": "b1c14", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C15.json b/cells/MATR_B1C15.json new file mode 100644 index 0000000000000000000000000000000000000000..4f2f9aacb27c84191597403df27b9043af95d0e2 --- /dev/null +++ b/cells/MATR_B1C15.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C15", + "source": "MATR", + "source_cell_id": "b1c15", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C16.json b/cells/MATR_B1C16.json new file mode 100644 index 0000000000000000000000000000000000000000..ab10d5bcbc42dec69b8683430b68a943cafc65c3 --- /dev/null +++ b/cells/MATR_B1C16.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C16", + "source": "MATR", + "source_cell_id": "b1c16", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C17.json b/cells/MATR_B1C17.json new file mode 100644 index 0000000000000000000000000000000000000000..5c962cc5d069b4db66b7a157625da4217fc8d545 --- /dev/null +++ b/cells/MATR_B1C17.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C17", + "source": "MATR", + "source_cell_id": "b1c17", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C18.json b/cells/MATR_B1C18.json new file mode 100644 index 0000000000000000000000000000000000000000..437c88ba75da78720918b5e5a3e023947d654750 --- /dev/null +++ b/cells/MATR_B1C18.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C18", + "source": "MATR", + "source_cell_id": "b1c18", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C19.json b/cells/MATR_B1C19.json new file mode 100644 index 0000000000000000000000000000000000000000..d6ff1cf4429164d9faa9003c6ab9be1612a2538e --- /dev/null +++ b/cells/MATR_B1C19.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C19", + "source": "MATR", + "source_cell_id": "b1c19", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C2.json b/cells/MATR_B1C2.json new file mode 100644 index 0000000000000000000000000000000000000000..a0d63b5e53919329d3ca03f90dcdf22a5df20a80 --- /dev/null +++ b/cells/MATR_B1C2.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C2", + "source": "MATR", + "source_cell_id": "b1c2", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C20.json b/cells/MATR_B1C20.json new file mode 100644 index 0000000000000000000000000000000000000000..86f493d70353b94b55f1af0de44ddeaf2f3a5ca8 --- /dev/null +++ b/cells/MATR_B1C20.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C20", + "source": "MATR", + "source_cell_id": "b1c20", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C21.json b/cells/MATR_B1C21.json new file mode 100644 index 0000000000000000000000000000000000000000..ef30bc1b90f04ff57f0562546efb68a8eedf1326 --- /dev/null +++ b/cells/MATR_B1C21.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C21", + "source": "MATR", + "source_cell_id": "b1c21", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C22.json b/cells/MATR_B1C22.json new file mode 100644 index 0000000000000000000000000000000000000000..144759d89df6add36b5f9881d835a16e25a58db3 --- /dev/null +++ b/cells/MATR_B1C22.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C22", + "source": "MATR", + "source_cell_id": "b1c22", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C23.json b/cells/MATR_B1C23.json new file mode 100644 index 0000000000000000000000000000000000000000..d37a11383aa33105d104ec3a133763ab8528b5be --- /dev/null +++ b/cells/MATR_B1C23.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C23", + "source": "MATR", + "source_cell_id": "b1c23", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C24.json b/cells/MATR_B1C24.json new file mode 100644 index 0000000000000000000000000000000000000000..3a22407faaf21a49904e21b349d57e1d7c96a117 --- /dev/null +++ b/cells/MATR_B1C24.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C24", + "source": "MATR", + "source_cell_id": "b1c24", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C25.json b/cells/MATR_B1C25.json new file mode 100644 index 0000000000000000000000000000000000000000..908cefb573e6e4761245e6ebe4c7bb6049bb55e0 --- /dev/null +++ b/cells/MATR_B1C25.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C25", + "source": "MATR", + "source_cell_id": "b1c25", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C26.json b/cells/MATR_B1C26.json new file mode 100644 index 0000000000000000000000000000000000000000..e40b8b3bc869607f510a39e359d36d9de38a7ca4 --- /dev/null +++ b/cells/MATR_B1C26.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C26", + "source": "MATR", + "source_cell_id": "b1c26", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C27.json b/cells/MATR_B1C27.json new file mode 100644 index 0000000000000000000000000000000000000000..17d5adfbe3cdd2dfa60ce3042a686f14e70986c7 --- /dev/null +++ b/cells/MATR_B1C27.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C27", + "source": "MATR", + "source_cell_id": "b1c27", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C28.json b/cells/MATR_B1C28.json new file mode 100644 index 0000000000000000000000000000000000000000..15dad69cf1de4c42f153bea134bef77f96d53865 --- /dev/null +++ b/cells/MATR_B1C28.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C28", + "source": "MATR", + "source_cell_id": "b1c28", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C29.json b/cells/MATR_B1C29.json new file mode 100644 index 0000000000000000000000000000000000000000..e262041bedd1fe042d4ec9ba689d48c83eed5e8e --- /dev/null +++ b/cells/MATR_B1C29.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C29", + "source": "MATR", + "source_cell_id": "b1c29", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C3.json b/cells/MATR_B1C3.json new file mode 100644 index 0000000000000000000000000000000000000000..5857689f780fdcbd529e86140514a2628de75e7d --- /dev/null +++ b/cells/MATR_B1C3.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C3", + "source": "MATR", + "source_cell_id": "b1c3", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C30.json b/cells/MATR_B1C30.json new file mode 100644 index 0000000000000000000000000000000000000000..155da5c5521b42cf3de303c04d2bf0da8f7b88eb --- /dev/null +++ b/cells/MATR_B1C30.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C30", + "source": "MATR", + "source_cell_id": "b1c30", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C31.json b/cells/MATR_B1C31.json new file mode 100644 index 0000000000000000000000000000000000000000..fcd446d0755764e87f7791d048af1d6718311cf6 --- /dev/null +++ b/cells/MATR_B1C31.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C31", + "source": "MATR", + "source_cell_id": "b1c31", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C32.json b/cells/MATR_B1C32.json new file mode 100644 index 0000000000000000000000000000000000000000..2b72d9800d08cf779366056863ab433ea16040b0 --- /dev/null +++ b/cells/MATR_B1C32.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C32", + "source": "MATR", + "source_cell_id": "b1c32", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C33.json b/cells/MATR_B1C33.json new file mode 100644 index 0000000000000000000000000000000000000000..9ffa3ec0cb5aa27e1f5f6b0d413e2588efb176d8 --- /dev/null +++ b/cells/MATR_B1C33.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C33", + "source": "MATR", + "source_cell_id": "b1c33", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C34.json b/cells/MATR_B1C34.json new file mode 100644 index 0000000000000000000000000000000000000000..26ed2e478a686e09993de751a5c92e7cb48325bd --- /dev/null +++ b/cells/MATR_B1C34.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C34", + "source": "MATR", + "source_cell_id": "b1c34", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C35.json b/cells/MATR_B1C35.json new file mode 100644 index 0000000000000000000000000000000000000000..fb4a627dd887e6e689a704c506a06622f87f4633 --- /dev/null +++ b/cells/MATR_B1C35.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C35", + "source": "MATR", + "source_cell_id": "b1c35", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C36.json b/cells/MATR_B1C36.json new file mode 100644 index 0000000000000000000000000000000000000000..911b639bd2705245f910995d1759058c4ef1a411 --- /dev/null +++ b/cells/MATR_B1C36.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C36", + "source": "MATR", + "source_cell_id": "b1c36", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C37.json b/cells/MATR_B1C37.json new file mode 100644 index 0000000000000000000000000000000000000000..7d6159116782ca40b346280e533e99886c3dca71 --- /dev/null +++ b/cells/MATR_B1C37.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C37", + "source": "MATR", + "source_cell_id": "b1c37", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C38.json b/cells/MATR_B1C38.json new file mode 100644 index 0000000000000000000000000000000000000000..747bad6e58ac02e9fc575a7fcfe226fec0a59482 --- /dev/null +++ b/cells/MATR_B1C38.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C38", + "source": "MATR", + "source_cell_id": "b1c38", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C39.json b/cells/MATR_B1C39.json new file mode 100644 index 0000000000000000000000000000000000000000..51e682273caa4ad4ec8972f68ff333ffd06e3261 --- /dev/null +++ b/cells/MATR_B1C39.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C39", + "source": "MATR", + "source_cell_id": "b1c39", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C4.json b/cells/MATR_B1C4.json new file mode 100644 index 0000000000000000000000000000000000000000..5918154456c74e73f333beb8867ed43abd8a7c6f --- /dev/null +++ b/cells/MATR_B1C4.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C4", + "source": "MATR", + "source_cell_id": "b1c4", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C40.json b/cells/MATR_B1C40.json new file mode 100644 index 0000000000000000000000000000000000000000..48f78bd9376d1514f6438fd9d800c76580bd6120 --- /dev/null +++ b/cells/MATR_B1C40.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C40", + "source": "MATR", + "source_cell_id": "b1c40", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C41.json b/cells/MATR_B1C41.json new file mode 100644 index 0000000000000000000000000000000000000000..08998a7a791d8a13b709d00c2dc60468ae10f9a3 --- /dev/null +++ b/cells/MATR_B1C41.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C41", + "source": "MATR", + "source_cell_id": "b1c41", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C42.json b/cells/MATR_B1C42.json new file mode 100644 index 0000000000000000000000000000000000000000..8fdb62a22ed924b386cf5a78a24b970c38ad9c3d --- /dev/null +++ b/cells/MATR_B1C42.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C42", + "source": "MATR", + "source_cell_id": "b1c42", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C43.json b/cells/MATR_B1C43.json new file mode 100644 index 0000000000000000000000000000000000000000..f9bd90f5267c82ad3894a19de72521fca327a05d --- /dev/null +++ b/cells/MATR_B1C43.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C43", + "source": "MATR", + "source_cell_id": "b1c43", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C44.json b/cells/MATR_B1C44.json new file mode 100644 index 0000000000000000000000000000000000000000..a8d6798f6d24ebb4df07e73da3cdfbf09ef367b7 --- /dev/null +++ b/cells/MATR_B1C44.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C44", + "source": "MATR", + "source_cell_id": "b1c44", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C45.json b/cells/MATR_B1C45.json new file mode 100644 index 0000000000000000000000000000000000000000..3918c714db0c756ce13017f27bbfdc1fad832ae0 --- /dev/null +++ b/cells/MATR_B1C45.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C45", + "source": "MATR", + "source_cell_id": "b1c45", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C5.json b/cells/MATR_B1C5.json new file mode 100644 index 0000000000000000000000000000000000000000..698e36b8d4feff3dd389d4bc02b06b0270c85946 --- /dev/null +++ b/cells/MATR_B1C5.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C5", + "source": "MATR", + "source_cell_id": "b1c5", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C6.json b/cells/MATR_B1C6.json new file mode 100644 index 0000000000000000000000000000000000000000..9efa266d8e13ad9ebe37b613dc5eed857cb9fd9b --- /dev/null +++ b/cells/MATR_B1C6.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C6", + "source": "MATR", + "source_cell_id": "b1c6", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C7.json b/cells/MATR_B1C7.json new file mode 100644 index 0000000000000000000000000000000000000000..e9d461dd39f7e56fb7f4c5b63a4850da50573438 --- /dev/null +++ b/cells/MATR_B1C7.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C7", + "source": "MATR", + "source_cell_id": "b1c7", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C8.json b/cells/MATR_B1C8.json new file mode 100644 index 0000000000000000000000000000000000000000..8e582adb5713ff2f2dfcc96f2040c9338e59dbc9 --- /dev/null +++ b/cells/MATR_B1C8.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C8", + "source": "MATR", + "source_cell_id": "b1c8", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B1C9.json b/cells/MATR_B1C9.json new file mode 100644 index 0000000000000000000000000000000000000000..decd8b77ff19d8704c2ed324ad2ca3739ddb3aac --- /dev/null +++ b/cells/MATR_B1C9.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B1C9", + "source": "MATR", + "source_cell_id": "b1c9", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C0.json b/cells/MATR_B2C0.json new file mode 100644 index 0000000000000000000000000000000000000000..95b91aad0f539fa95d34140279040a7ad87af20b --- /dev/null +++ b/cells/MATR_B2C0.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C0", + "source": "MATR", + "source_cell_id": "b2c0", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C1.json b/cells/MATR_B2C1.json new file mode 100644 index 0000000000000000000000000000000000000000..0d6e88661f2720166d693f58d4b04eff8ad06a38 --- /dev/null +++ b/cells/MATR_B2C1.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C1", + "source": "MATR", + "source_cell_id": "b2c1", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C10.json b/cells/MATR_B2C10.json new file mode 100644 index 0000000000000000000000000000000000000000..4613c0e12ba566e44a7333b54c437fb150d16801 --- /dev/null +++ b/cells/MATR_B2C10.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C10", + "source": "MATR", + "source_cell_id": "b2c10", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C11.json b/cells/MATR_B2C11.json new file mode 100644 index 0000000000000000000000000000000000000000..af558f842f9f6e7d3e8bb140f2f7d7524799a905 --- /dev/null +++ b/cells/MATR_B2C11.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C11", + "source": "MATR", + "source_cell_id": "b2c11", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C12.json b/cells/MATR_B2C12.json new file mode 100644 index 0000000000000000000000000000000000000000..eafcc1945ba368bd03df96af479d98fd5e1a5290 --- /dev/null +++ b/cells/MATR_B2C12.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C12", + "source": "MATR", + "source_cell_id": "b2c12", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C13.json b/cells/MATR_B2C13.json new file mode 100644 index 0000000000000000000000000000000000000000..dbfc9116ceb9cd84f1f5a8e2c0413852bc2de653 --- /dev/null +++ b/cells/MATR_B2C13.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C13", + "source": "MATR", + "source_cell_id": "b2c13", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C14.json b/cells/MATR_B2C14.json new file mode 100644 index 0000000000000000000000000000000000000000..56b36f83bfb2cff50e60964e727da9a6c9307b31 --- /dev/null +++ b/cells/MATR_B2C14.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C14", + "source": "MATR", + "source_cell_id": "b2c14", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C17.json b/cells/MATR_B2C17.json new file mode 100644 index 0000000000000000000000000000000000000000..d7c22b94129673e69f39781e2bbc94160ae95d69 --- /dev/null +++ b/cells/MATR_B2C17.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C17", + "source": "MATR", + "source_cell_id": "b2c17", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C18.json b/cells/MATR_B2C18.json new file mode 100644 index 0000000000000000000000000000000000000000..0b9e227a611eac7ab384ad3b0cd19f27681bdb36 --- /dev/null +++ b/cells/MATR_B2C18.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C18", + "source": "MATR", + "source_cell_id": "b2c18", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C19.json b/cells/MATR_B2C19.json new file mode 100644 index 0000000000000000000000000000000000000000..34dcf577f29aea669b07ab50d1002e10a280f13e --- /dev/null +++ b/cells/MATR_B2C19.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C19", + "source": "MATR", + "source_cell_id": "b2c19", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C2.json b/cells/MATR_B2C2.json new file mode 100644 index 0000000000000000000000000000000000000000..ee504d55e2736de9fa0b5bff3d6fed2a84b27cd5 --- /dev/null +++ b/cells/MATR_B2C2.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C2", + "source": "MATR", + "source_cell_id": "b2c2", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C20.json b/cells/MATR_B2C20.json new file mode 100644 index 0000000000000000000000000000000000000000..d15f6a797d2e5e3c7defd833464e51669a331909 --- /dev/null +++ b/cells/MATR_B2C20.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C20", + "source": "MATR", + "source_cell_id": "b2c20", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C21.json b/cells/MATR_B2C21.json new file mode 100644 index 0000000000000000000000000000000000000000..7e3db1c72851d81aa8bf9cab3a53b6811648c0a2 --- /dev/null +++ b/cells/MATR_B2C21.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C21", + "source": "MATR", + "source_cell_id": "b2c21", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C22.json b/cells/MATR_B2C22.json new file mode 100644 index 0000000000000000000000000000000000000000..1d234ba8d07335e6a1be4c58c6594ba632116215 --- /dev/null +++ b/cells/MATR_B2C22.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C22", + "source": "MATR", + "source_cell_id": "b2c22", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C23.json b/cells/MATR_B2C23.json new file mode 100644 index 0000000000000000000000000000000000000000..2fd7727e54bb42dc099bcfceba29189fc69cbf99 --- /dev/null +++ b/cells/MATR_B2C23.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C23", + "source": "MATR", + "source_cell_id": "b2c23", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C24.json b/cells/MATR_B2C24.json new file mode 100644 index 0000000000000000000000000000000000000000..4ec939a008822e398cc52e72b559794ffc30a4b3 --- /dev/null +++ b/cells/MATR_B2C24.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C24", + "source": "MATR", + "source_cell_id": "b2c24", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C25.json b/cells/MATR_B2C25.json new file mode 100644 index 0000000000000000000000000000000000000000..166873afa832ddd97d0d7e5888d138aea1975a44 --- /dev/null +++ b/cells/MATR_B2C25.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C25", + "source": "MATR", + "source_cell_id": "b2c25", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C26.json b/cells/MATR_B2C26.json new file mode 100644 index 0000000000000000000000000000000000000000..c3a23d747cebc36aaf7d3db3de2e92f173655aba --- /dev/null +++ b/cells/MATR_B2C26.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C26", + "source": "MATR", + "source_cell_id": "b2c26", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C27.json b/cells/MATR_B2C27.json new file mode 100644 index 0000000000000000000000000000000000000000..f7926dae63b21b30988ee759c0107edd4197e9a9 --- /dev/null +++ b/cells/MATR_B2C27.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C27", + "source": "MATR", + "source_cell_id": "b2c27", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C28.json b/cells/MATR_B2C28.json new file mode 100644 index 0000000000000000000000000000000000000000..1fefbfeab89ac89a0c51ad557da6c6df9d77f412 --- /dev/null +++ b/cells/MATR_B2C28.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C28", + "source": "MATR", + "source_cell_id": "b2c28", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C29.json b/cells/MATR_B2C29.json new file mode 100644 index 0000000000000000000000000000000000000000..b1152c107ddd6f4d3efa5491829fca4b50988941 --- /dev/null +++ b/cells/MATR_B2C29.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C29", + "source": "MATR", + "source_cell_id": "b2c29", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C3.json b/cells/MATR_B2C3.json new file mode 100644 index 0000000000000000000000000000000000000000..3504013aa01ceaacbc48f17bacfef8a953301b49 --- /dev/null +++ b/cells/MATR_B2C3.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C3", + "source": "MATR", + "source_cell_id": "b2c3", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C30.json b/cells/MATR_B2C30.json new file mode 100644 index 0000000000000000000000000000000000000000..0e54c99f3f1bf9a5649088e5fdbeb5aa2f0236ac --- /dev/null +++ b/cells/MATR_B2C30.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C30", + "source": "MATR", + "source_cell_id": "b2c30", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C31.json b/cells/MATR_B2C31.json new file mode 100644 index 0000000000000000000000000000000000000000..f80852a63b541e046dbe1611cf619a69f26cfaff --- /dev/null +++ b/cells/MATR_B2C31.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C31", + "source": "MATR", + "source_cell_id": "b2c31", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C32.json b/cells/MATR_B2C32.json new file mode 100644 index 0000000000000000000000000000000000000000..c0cfae63d9d3e70249226a55fb91c381cccdbd9c --- /dev/null +++ b/cells/MATR_B2C32.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C32", + "source": "MATR", + "source_cell_id": "b2c32", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C33.json b/cells/MATR_B2C33.json new file mode 100644 index 0000000000000000000000000000000000000000..d7338cc1047914ce92bf633d7998d3a6e531ea85 --- /dev/null +++ b/cells/MATR_B2C33.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C33", + "source": "MATR", + "source_cell_id": "b2c33", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C34.json b/cells/MATR_B2C34.json new file mode 100644 index 0000000000000000000000000000000000000000..831642e8f03b342cb9ddeb38c5a7c802bf035e10 --- /dev/null +++ b/cells/MATR_B2C34.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C34", + "source": "MATR", + "source_cell_id": "b2c34", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C35.json b/cells/MATR_B2C35.json new file mode 100644 index 0000000000000000000000000000000000000000..e89ec8eec3fb57184562a79b619159a439822e12 --- /dev/null +++ b/cells/MATR_B2C35.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C35", + "source": "MATR", + "source_cell_id": "b2c35", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C36.json b/cells/MATR_B2C36.json new file mode 100644 index 0000000000000000000000000000000000000000..f797bd0c1192a8b6b9a160fc3ea286ab51cf86b4 --- /dev/null +++ b/cells/MATR_B2C36.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C36", + "source": "MATR", + "source_cell_id": "b2c36", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C37.json b/cells/MATR_B2C37.json new file mode 100644 index 0000000000000000000000000000000000000000..10da31b98f36b56f64c2b94131173f2d8eaaedc8 --- /dev/null +++ b/cells/MATR_B2C37.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C37", + "source": "MATR", + "source_cell_id": "b2c37", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C38.json b/cells/MATR_B2C38.json new file mode 100644 index 0000000000000000000000000000000000000000..1be957451bf3c30c52a6e8a3f90a48b84c66a86f --- /dev/null +++ b/cells/MATR_B2C38.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C38", + "source": "MATR", + "source_cell_id": "b2c38", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C39.json b/cells/MATR_B2C39.json new file mode 100644 index 0000000000000000000000000000000000000000..bbf9fcbed1f82b97d84da909684060c07f18695f --- /dev/null +++ b/cells/MATR_B2C39.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C39", + "source": "MATR", + "source_cell_id": "b2c39", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C4.json b/cells/MATR_B2C4.json new file mode 100644 index 0000000000000000000000000000000000000000..c3d3ccad1595ae9ed555e342500e3d8942764d7a --- /dev/null +++ b/cells/MATR_B2C4.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C4", + "source": "MATR", + "source_cell_id": "b2c4", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C40.json b/cells/MATR_B2C40.json new file mode 100644 index 0000000000000000000000000000000000000000..300275217dca4e37c69f62fdcac80bbedc12f1f4 --- /dev/null +++ b/cells/MATR_B2C40.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C40", + "source": "MATR", + "source_cell_id": "b2c40", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C41.json b/cells/MATR_B2C41.json new file mode 100644 index 0000000000000000000000000000000000000000..bed000a8fbec36e7ca8a57e98515c1ef2472cb9c --- /dev/null +++ b/cells/MATR_B2C41.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C41", + "source": "MATR", + "source_cell_id": "b2c41", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C42.json b/cells/MATR_B2C42.json new file mode 100644 index 0000000000000000000000000000000000000000..724013f6cbc9300f488696c6ce680eb1e2258ad3 --- /dev/null +++ b/cells/MATR_B2C42.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C42", + "source": "MATR", + "source_cell_id": "b2c42", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C43.json b/cells/MATR_B2C43.json new file mode 100644 index 0000000000000000000000000000000000000000..9571fcdec5aefeea5b9417a0d570243fed6330c3 --- /dev/null +++ b/cells/MATR_B2C43.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C43", + "source": "MATR", + "source_cell_id": "b2c43", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C44.json b/cells/MATR_B2C44.json new file mode 100644 index 0000000000000000000000000000000000000000..92ce30e5f896adb2a623641b732e435d0b0d4e8d --- /dev/null +++ b/cells/MATR_B2C44.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C44", + "source": "MATR", + "source_cell_id": "b2c44", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C45.json b/cells/MATR_B2C45.json new file mode 100644 index 0000000000000000000000000000000000000000..3cf0bfbd3d23fbc12b842c71063d5f76e68ee3f8 --- /dev/null +++ b/cells/MATR_B2C45.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C45", + "source": "MATR", + "source_cell_id": "b2c45", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C46.json b/cells/MATR_B2C46.json new file mode 100644 index 0000000000000000000000000000000000000000..d4eb1259672177122c81c324b2c62d5a01ff8277 --- /dev/null +++ b/cells/MATR_B2C46.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C46", + "source": "MATR", + "source_cell_id": "b2c46", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C47.json b/cells/MATR_B2C47.json new file mode 100644 index 0000000000000000000000000000000000000000..a066defec3ba1da5472a53d6d81d1434ab33c259 --- /dev/null +++ b/cells/MATR_B2C47.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C47", + "source": "MATR", + "source_cell_id": "b2c47", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C5.json b/cells/MATR_B2C5.json new file mode 100644 index 0000000000000000000000000000000000000000..4dce5e32bedc9e68bd6458c519b6c770d2e2bdcc --- /dev/null +++ b/cells/MATR_B2C5.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C5", + "source": "MATR", + "source_cell_id": "b2c5", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B2C6.json b/cells/MATR_B2C6.json new file mode 100644 index 0000000000000000000000000000000000000000..7a32adc0faef87823592477b62cbe5f11f8a36b4 --- /dev/null +++ b/cells/MATR_B2C6.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B2C6", + "source": "MATR", + "source_cell_id": "b2c6", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C0.json b/cells/MATR_B3C0.json new file mode 100644 index 0000000000000000000000000000000000000000..181948a6369dfba6301217354c1e372b78082702 --- /dev/null +++ b/cells/MATR_B3C0.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C0", + "source": "MATR", + "source_cell_id": "b3c0", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C1.json b/cells/MATR_B3C1.json new file mode 100644 index 0000000000000000000000000000000000000000..accd5011a10e7ad738a89b7e8d6480b469b511f3 --- /dev/null +++ b/cells/MATR_B3C1.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C1", + "source": "MATR", + "source_cell_id": "b3c1", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C10.json b/cells/MATR_B3C10.json new file mode 100644 index 0000000000000000000000000000000000000000..38fa07e5106052b603be3cbc9385d7125e792405 --- /dev/null +++ b/cells/MATR_B3C10.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C10", + "source": "MATR", + "source_cell_id": "b3c10", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C11.json b/cells/MATR_B3C11.json new file mode 100644 index 0000000000000000000000000000000000000000..f798264899d507f3903baca28cf52d1409a86787 --- /dev/null +++ b/cells/MATR_B3C11.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C11", + "source": "MATR", + "source_cell_id": "b3c11", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C12.json b/cells/MATR_B3C12.json new file mode 100644 index 0000000000000000000000000000000000000000..c5d647103c91b7b19acc59a985353eca9911a982 --- /dev/null +++ b/cells/MATR_B3C12.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C12", + "source": "MATR", + "source_cell_id": "b3c12", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C13.json b/cells/MATR_B3C13.json new file mode 100644 index 0000000000000000000000000000000000000000..2154158fb8db9933e0f09ae6d920fabd0e885a32 --- /dev/null +++ b/cells/MATR_B3C13.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C13", + "source": "MATR", + "source_cell_id": "b3c13", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C14.json b/cells/MATR_B3C14.json new file mode 100644 index 0000000000000000000000000000000000000000..29a65fb55584ecb5f6966f5da2978eeaef29b903 --- /dev/null +++ b/cells/MATR_B3C14.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C14", + "source": "MATR", + "source_cell_id": "b3c14", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C15.json b/cells/MATR_B3C15.json new file mode 100644 index 0000000000000000000000000000000000000000..26bb306713a1f5fb52ce899a9d1e649d70823878 --- /dev/null +++ b/cells/MATR_B3C15.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C15", + "source": "MATR", + "source_cell_id": "b3c15", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C16.json b/cells/MATR_B3C16.json new file mode 100644 index 0000000000000000000000000000000000000000..7715094a90c045c5ceed8f8e9ff8e306bea15607 --- /dev/null +++ b/cells/MATR_B3C16.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C16", + "source": "MATR", + "source_cell_id": "b3c16", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C17.json b/cells/MATR_B3C17.json new file mode 100644 index 0000000000000000000000000000000000000000..eead5ac0e6e55364efaf93ad6a15e5f4f35d888e --- /dev/null +++ b/cells/MATR_B3C17.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C17", + "source": "MATR", + "source_cell_id": "b3c17", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C18.json b/cells/MATR_B3C18.json new file mode 100644 index 0000000000000000000000000000000000000000..7245f1f88620a181dccd4e56c6d292981e17ab44 --- /dev/null +++ b/cells/MATR_B3C18.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C18", + "source": "MATR", + "source_cell_id": "b3c18", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C19.json b/cells/MATR_B3C19.json new file mode 100644 index 0000000000000000000000000000000000000000..f65aef652ec6021c50be7a4acc18025dfeb82e5a --- /dev/null +++ b/cells/MATR_B3C19.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C19", + "source": "MATR", + "source_cell_id": "b3c19", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C2.json b/cells/MATR_B3C2.json new file mode 100644 index 0000000000000000000000000000000000000000..064f87249cb8b48866b6ba1a86f3e7e28a109f56 --- /dev/null +++ b/cells/MATR_B3C2.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C2", + "source": "MATR", + "source_cell_id": "b3c2", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C20.json b/cells/MATR_B3C20.json new file mode 100644 index 0000000000000000000000000000000000000000..2d93b330d925355d09d5ca75fc306e9cb76a3371 --- /dev/null +++ b/cells/MATR_B3C20.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C20", + "source": "MATR", + "source_cell_id": "b3c20", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C21.json b/cells/MATR_B3C21.json new file mode 100644 index 0000000000000000000000000000000000000000..2dae6f39c04bc43d5ba48466fd3b826e5fb12f5c --- /dev/null +++ b/cells/MATR_B3C21.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C21", + "source": "MATR", + "source_cell_id": "b3c21", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C22.json b/cells/MATR_B3C22.json new file mode 100644 index 0000000000000000000000000000000000000000..9ad3d64a44d5adbc1a8933f8b17881330ed6f425 --- /dev/null +++ b/cells/MATR_B3C22.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C22", + "source": "MATR", + "source_cell_id": "b3c22", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C23.json b/cells/MATR_B3C23.json new file mode 100644 index 0000000000000000000000000000000000000000..4490e7cf1954120443d8098cff0e83612a4c9eb8 --- /dev/null +++ b/cells/MATR_B3C23.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C23", + "source": "MATR", + "source_cell_id": "b3c23", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C24.json b/cells/MATR_B3C24.json new file mode 100644 index 0000000000000000000000000000000000000000..c3581a0c7f0b66a7e9f3c54b69aef4f8ef825075 --- /dev/null +++ b/cells/MATR_B3C24.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C24", + "source": "MATR", + "source_cell_id": "b3c24", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C25.json b/cells/MATR_B3C25.json new file mode 100644 index 0000000000000000000000000000000000000000..b063ce88f5b19f8539b80051820963efdc8b2e6d --- /dev/null +++ b/cells/MATR_B3C25.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C25", + "source": "MATR", + "source_cell_id": "b3c25", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C26.json b/cells/MATR_B3C26.json new file mode 100644 index 0000000000000000000000000000000000000000..ca9905d5791b7e9e6978b431807c61797e54cace --- /dev/null +++ b/cells/MATR_B3C26.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C26", + "source": "MATR", + "source_cell_id": "b3c26", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C27.json b/cells/MATR_B3C27.json new file mode 100644 index 0000000000000000000000000000000000000000..c6bc03229e024ab3b112a8f685eb2a74e8163d3c --- /dev/null +++ b/cells/MATR_B3C27.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C27", + "source": "MATR", + "source_cell_id": "b3c27", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C28.json b/cells/MATR_B3C28.json new file mode 100644 index 0000000000000000000000000000000000000000..3c071875431c8ef5fde58e295199c8e9a1996680 --- /dev/null +++ b/cells/MATR_B3C28.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C28", + "source": "MATR", + "source_cell_id": "b3c28", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C29.json b/cells/MATR_B3C29.json new file mode 100644 index 0000000000000000000000000000000000000000..7b7e713ee244b005476c0402873c680c817f8b12 --- /dev/null +++ b/cells/MATR_B3C29.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C29", + "source": "MATR", + "source_cell_id": "b3c29", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C3.json b/cells/MATR_B3C3.json new file mode 100644 index 0000000000000000000000000000000000000000..07c24b6d6e5c4f804ff57d8cd715ba4bf56a3be8 --- /dev/null +++ b/cells/MATR_B3C3.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C3", + "source": "MATR", + "source_cell_id": "b3c3", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C30.json b/cells/MATR_B3C30.json new file mode 100644 index 0000000000000000000000000000000000000000..817e0efc483f4adf2fe1a788fba10cfa5cc43357 --- /dev/null +++ b/cells/MATR_B3C30.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C30", + "source": "MATR", + "source_cell_id": "b3c30", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C31.json b/cells/MATR_B3C31.json new file mode 100644 index 0000000000000000000000000000000000000000..7ffa01bba2b6ae911bc8a818b7b6b08468b0b94a --- /dev/null +++ b/cells/MATR_B3C31.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C31", + "source": "MATR", + "source_cell_id": "b3c31", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C32.json b/cells/MATR_B3C32.json new file mode 100644 index 0000000000000000000000000000000000000000..4493ec197ab2450249a9184521c3d16f9d9fc9f9 --- /dev/null +++ b/cells/MATR_B3C32.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C32", + "source": "MATR", + "source_cell_id": "b3c32", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C33.json b/cells/MATR_B3C33.json new file mode 100644 index 0000000000000000000000000000000000000000..b819e94350d5fde9e44ba49f3c6e583a5163cafc --- /dev/null +++ b/cells/MATR_B3C33.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C33", + "source": "MATR", + "source_cell_id": "b3c33", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C34.json b/cells/MATR_B3C34.json new file mode 100644 index 0000000000000000000000000000000000000000..1dc797c58ee316a867f325bb88bfbd78df99d018 --- /dev/null +++ b/cells/MATR_B3C34.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C34", + "source": "MATR", + "source_cell_id": "b3c34", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C35.json b/cells/MATR_B3C35.json new file mode 100644 index 0000000000000000000000000000000000000000..f679f4185e3c87de0649d28d6cacf26c07ec6f44 --- /dev/null +++ b/cells/MATR_B3C35.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C35", + "source": "MATR", + "source_cell_id": "b3c35", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C36.json b/cells/MATR_B3C36.json new file mode 100644 index 0000000000000000000000000000000000000000..fbfb01da011e6f6c2464c3f554750f7a8d486b8d --- /dev/null +++ b/cells/MATR_B3C36.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C36", + "source": "MATR", + "source_cell_id": "b3c36", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C37.json b/cells/MATR_B3C37.json new file mode 100644 index 0000000000000000000000000000000000000000..f5b7ac56bf6e8261a91f564d8d38a111666c5942 --- /dev/null +++ b/cells/MATR_B3C37.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C37", + "source": "MATR", + "source_cell_id": "b3c37", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C38.json b/cells/MATR_B3C38.json new file mode 100644 index 0000000000000000000000000000000000000000..2c5a4e91e794bff1753482d0521556e54dbfe104 --- /dev/null +++ b/cells/MATR_B3C38.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C38", + "source": "MATR", + "source_cell_id": "b3c38", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C39.json b/cells/MATR_B3C39.json new file mode 100644 index 0000000000000000000000000000000000000000..57703cd26ba5f7db1439e94a3c5321d709209e7d --- /dev/null +++ b/cells/MATR_B3C39.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C39", + "source": "MATR", + "source_cell_id": "b3c39", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C4.json b/cells/MATR_B3C4.json new file mode 100644 index 0000000000000000000000000000000000000000..faed936b4ff64ae3622701896390ee9356d10ed3 --- /dev/null +++ b/cells/MATR_B3C4.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C4", + "source": "MATR", + "source_cell_id": "b3c4", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C40.json b/cells/MATR_B3C40.json new file mode 100644 index 0000000000000000000000000000000000000000..8a41cdf2b8960cb874f28b20ba39f80063d7b197 --- /dev/null +++ b/cells/MATR_B3C40.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C40", + "source": "MATR", + "source_cell_id": "b3c40", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C41.json b/cells/MATR_B3C41.json new file mode 100644 index 0000000000000000000000000000000000000000..9420cfbf06d6eed04f9afc3441026f7cb97e2575 --- /dev/null +++ b/cells/MATR_B3C41.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C41", + "source": "MATR", + "source_cell_id": "b3c41", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C42.json b/cells/MATR_B3C42.json new file mode 100644 index 0000000000000000000000000000000000000000..c5125b8db33f084c095ee1818716b87a71733b65 --- /dev/null +++ b/cells/MATR_B3C42.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C42", + "source": "MATR", + "source_cell_id": "b3c42", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C43.json b/cells/MATR_B3C43.json new file mode 100644 index 0000000000000000000000000000000000000000..44f97516533fab552a0cefea368cb86e998a113c --- /dev/null +++ b/cells/MATR_B3C43.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C43", + "source": "MATR", + "source_cell_id": "b3c43", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C44.json b/cells/MATR_B3C44.json new file mode 100644 index 0000000000000000000000000000000000000000..fa207306118e843365a216b3bcb10ef764e2d959 --- /dev/null +++ b/cells/MATR_B3C44.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C44", + "source": "MATR", + "source_cell_id": "b3c44", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C45.json b/cells/MATR_B3C45.json new file mode 100644 index 0000000000000000000000000000000000000000..8b711a1cae5e186f7a10241daf374153f6769680 --- /dev/null +++ b/cells/MATR_B3C45.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C45", + "source": "MATR", + "source_cell_id": "b3c45", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C5.json b/cells/MATR_B3C5.json new file mode 100644 index 0000000000000000000000000000000000000000..46fa0ce20d4d0913f57020a39a48b32328a80e59 --- /dev/null +++ b/cells/MATR_B3C5.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C5", + "source": "MATR", + "source_cell_id": "b3c5", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C6.json b/cells/MATR_B3C6.json new file mode 100644 index 0000000000000000000000000000000000000000..9e2a574b4f585f1a427aefeeb87be6b91b5b49dc --- /dev/null +++ b/cells/MATR_B3C6.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C6", + "source": "MATR", + "source_cell_id": "b3c6", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C7.json b/cells/MATR_B3C7.json new file mode 100644 index 0000000000000000000000000000000000000000..1f33dc9ec30b5e9c15554d70503fd972e0023dc1 --- /dev/null +++ b/cells/MATR_B3C7.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C7", + "source": "MATR", + "source_cell_id": "b3c7", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C8.json b/cells/MATR_B3C8.json new file mode 100644 index 0000000000000000000000000000000000000000..dd36fb473e6510475843d0a8bdb2620d7064964b --- /dev/null +++ b/cells/MATR_B3C8.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C8", + "source": "MATR", + "source_cell_id": "b3c8", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/MATR_B3C9.json b/cells/MATR_B3C9.json new file mode 100644 index 0000000000000000000000000000000000000000..b62a7121d789a776d2ca9571bfc91c6e53abc3a8 --- /dev/null +++ b/cells/MATR_B3C9.json @@ -0,0 +1,16 @@ +{ + "cell_id": "MATR_B3C9", + "source": "MATR", + "source_cell_id": "b3c9", + "manufacturer": "A123 Systems", + "model_number": "APR18650M1A", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 1.1, + "nominal_voltage_V": 3.3, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0 +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0005.json b/cells/NASA_PCOE_B0005.json new file mode 100644 index 0000000000000000000000000000000000000000..4a3e9067867aa94f936a1daefb666c2efcbc0738 --- /dev/null +++ b/cells/NASA_PCOE_B0005.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.7, + "cell_id": "NASA_PCOE_B0005", + "source_cell_id": "B0005" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0006.json b/cells/NASA_PCOE_B0006.json new file mode 100644 index 0000000000000000000000000000000000000000..84ee25492f125277bb6b567be37814019a978e71 --- /dev/null +++ b/cells/NASA_PCOE_B0006.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5, + "cell_id": "NASA_PCOE_B0006", + "source_cell_id": "B0006" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0007.json b/cells/NASA_PCOE_B0007.json new file mode 100644 index 0000000000000000000000000000000000000000..a6f333fa685d55279386caa8af7ff1c27af2283b --- /dev/null +++ b/cells/NASA_PCOE_B0007.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.2, + "cell_id": "NASA_PCOE_B0007", + "source_cell_id": "B0007" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0018.json b/cells/NASA_PCOE_B0018.json new file mode 100644 index 0000000000000000000000000000000000000000..9157bd42c1be705d1a371e922885858a710845a2 --- /dev/null +++ b/cells/NASA_PCOE_B0018.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5, + "cell_id": "NASA_PCOE_B0018", + "source_cell_id": "B0018" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0025.json b/cells/NASA_PCOE_B0025.json new file mode 100644 index 0000000000000000000000000000000000000000..1dab2c7cfb96f0016ad989933b4c29fc4edcdeae --- /dev/null +++ b/cells/NASA_PCOE_B0025.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.0, + "cell_id": "NASA_PCOE_B0025", + "source_cell_id": "B0025" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0026.json b/cells/NASA_PCOE_B0026.json new file mode 100644 index 0000000000000000000000000000000000000000..8ffdad32190bad0bc7c0830509b9b6a682a31a6b --- /dev/null +++ b/cells/NASA_PCOE_B0026.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.2, + "cell_id": "NASA_PCOE_B0026", + "source_cell_id": "B0026" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0027.json b/cells/NASA_PCOE_B0027.json new file mode 100644 index 0000000000000000000000000000000000000000..24dc8ff4cc132290da2b11b413e1d7ca215b7ca5 --- /dev/null +++ b/cells/NASA_PCOE_B0027.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5, + "cell_id": "NASA_PCOE_B0027", + "source_cell_id": "B0027" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0028.json b/cells/NASA_PCOE_B0028.json new file mode 100644 index 0000000000000000000000000000000000000000..35546419b6ef954bb3176dff46629db17739f285 --- /dev/null +++ b/cells/NASA_PCOE_B0028.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.7, + "cell_id": "NASA_PCOE_B0028", + "source_cell_id": "B0028" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0029.json b/cells/NASA_PCOE_B0029.json new file mode 100644 index 0000000000000000000000000000000000000000..89817359671494b7d0742e508228272069671fe2 --- /dev/null +++ b/cells/NASA_PCOE_B0029.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.0, + "cell_id": "NASA_PCOE_B0029", + "source_cell_id": "B0029" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0030.json b/cells/NASA_PCOE_B0030.json new file mode 100644 index 0000000000000000000000000000000000000000..e88b03fc370be3625d2a0182fb84478b3192eedb --- /dev/null +++ b/cells/NASA_PCOE_B0030.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.2, + "cell_id": "NASA_PCOE_B0030", + "source_cell_id": "B0030" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0031.json b/cells/NASA_PCOE_B0031.json new file mode 100644 index 0000000000000000000000000000000000000000..5ad12aa3702532bb4cb1abd473115ba55a3d6b34 --- /dev/null +++ b/cells/NASA_PCOE_B0031.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5, + "cell_id": "NASA_PCOE_B0031", + "source_cell_id": "B0031" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0032.json b/cells/NASA_PCOE_B0032.json new file mode 100644 index 0000000000000000000000000000000000000000..3e3cac6b855e68b5e6c2d013afaef213a03b61f8 --- /dev/null +++ b/cells/NASA_PCOE_B0032.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.7, + "cell_id": "NASA_PCOE_B0032", + "source_cell_id": "B0032" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0033.json b/cells/NASA_PCOE_B0033.json new file mode 100644 index 0000000000000000000000000000000000000000..e043dbba1eb3168fc7507deb5b4b8ad31a5857e2 --- /dev/null +++ b/cells/NASA_PCOE_B0033.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.0, + "cell_id": "NASA_PCOE_B0033", + "source_cell_id": "B0033" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0034.json b/cells/NASA_PCOE_B0034.json new file mode 100644 index 0000000000000000000000000000000000000000..581236dc4666c2781f176a7544ede093ee728822 --- /dev/null +++ b/cells/NASA_PCOE_B0034.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.2, + "cell_id": "NASA_PCOE_B0034", + "source_cell_id": "B0034" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0036.json b/cells/NASA_PCOE_B0036.json new file mode 100644 index 0000000000000000000000000000000000000000..8746cba9c2f8bccd086976c45f54a100dbcbd86f --- /dev/null +++ b/cells/NASA_PCOE_B0036.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.7, + "cell_id": "NASA_PCOE_B0036", + "source_cell_id": "B0036" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0038.json b/cells/NASA_PCOE_B0038.json new file mode 100644 index 0000000000000000000000000000000000000000..d776e44b4044bb57001acd7c079e6be700f4e1ee --- /dev/null +++ b/cells/NASA_PCOE_B0038.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.2, + "cell_id": "NASA_PCOE_B0038", + "source_cell_id": "B0038" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0039.json b/cells/NASA_PCOE_B0039.json new file mode 100644 index 0000000000000000000000000000000000000000..cb4b78ecaf8e24cbff13e99742bbe6ac5bb255a0 --- /dev/null +++ b/cells/NASA_PCOE_B0039.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5, + "cell_id": "NASA_PCOE_B0039", + "source_cell_id": "B0039" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0040.json b/cells/NASA_PCOE_B0040.json new file mode 100644 index 0000000000000000000000000000000000000000..a0a5a1abf0448222ffb4af455bd20f21de8ad52a --- /dev/null +++ b/cells/NASA_PCOE_B0040.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.7, + "cell_id": "NASA_PCOE_B0040", + "source_cell_id": "B0040" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0041.json b/cells/NASA_PCOE_B0041.json new file mode 100644 index 0000000000000000000000000000000000000000..93a6a592c0838c834e78370ed3de3da0d6bded39 --- /dev/null +++ b/cells/NASA_PCOE_B0041.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.0, + "cell_id": "NASA_PCOE_B0041", + "source_cell_id": "B0041" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0042.json b/cells/NASA_PCOE_B0042.json new file mode 100644 index 0000000000000000000000000000000000000000..023b4d3e9fb0515d0cedfc8407973babe431d808 --- /dev/null +++ b/cells/NASA_PCOE_B0042.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.2, + "cell_id": "NASA_PCOE_B0042", + "source_cell_id": "B0042" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0043.json b/cells/NASA_PCOE_B0043.json new file mode 100644 index 0000000000000000000000000000000000000000..4aa3f099c07b6dee9bc99aee2f24a17ddfc29c3f --- /dev/null +++ b/cells/NASA_PCOE_B0043.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5, + "cell_id": "NASA_PCOE_B0043", + "source_cell_id": "B0043" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0044.json b/cells/NASA_PCOE_B0044.json new file mode 100644 index 0000000000000000000000000000000000000000..007ba7131bb99f009ac8ac4e74f5fbc0dfd6e353 --- /dev/null +++ b/cells/NASA_PCOE_B0044.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.7, + "cell_id": "NASA_PCOE_B0044", + "source_cell_id": "B0044" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0045.json b/cells/NASA_PCOE_B0045.json new file mode 100644 index 0000000000000000000000000000000000000000..b6c567abf48ce1a554567e8f16e630ab36f94270 --- /dev/null +++ b/cells/NASA_PCOE_B0045.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.0, + "cell_id": "NASA_PCOE_B0045", + "source_cell_id": "B0045" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0046.json b/cells/NASA_PCOE_B0046.json new file mode 100644 index 0000000000000000000000000000000000000000..6274687bc7b02db42e6de9a643e0dbe8037b0dca --- /dev/null +++ b/cells/NASA_PCOE_B0046.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.2, + "cell_id": "NASA_PCOE_B0046", + "source_cell_id": "B0046" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0047.json b/cells/NASA_PCOE_B0047.json new file mode 100644 index 0000000000000000000000000000000000000000..429dd45b2d39608fabbf099b95104d71eb96ef12 --- /dev/null +++ b/cells/NASA_PCOE_B0047.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5, + "cell_id": "NASA_PCOE_B0047", + "source_cell_id": "B0047" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0048.json b/cells/NASA_PCOE_B0048.json new file mode 100644 index 0000000000000000000000000000000000000000..4401de1c00e2d2d5b600c01610fd1ebd895c86b8 --- /dev/null +++ b/cells/NASA_PCOE_B0048.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.7, + "cell_id": "NASA_PCOE_B0048", + "source_cell_id": "B0048" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0049.json b/cells/NASA_PCOE_B0049.json new file mode 100644 index 0000000000000000000000000000000000000000..883e5234907864357f334881ae0eb185bbeeec43 --- /dev/null +++ b/cells/NASA_PCOE_B0049.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.0, + "cell_id": "NASA_PCOE_B0049", + "source_cell_id": "B0049" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0050.json b/cells/NASA_PCOE_B0050.json new file mode 100644 index 0000000000000000000000000000000000000000..3bfe6f7bb1e480f394ff2faeadc867aca4c1393e --- /dev/null +++ b/cells/NASA_PCOE_B0050.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.2, + "cell_id": "NASA_PCOE_B0050", + "source_cell_id": "B0050" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0051.json b/cells/NASA_PCOE_B0051.json new file mode 100644 index 0000000000000000000000000000000000000000..436e77d644a4565f0e67f7c25c779f1e927c8cb1 --- /dev/null +++ b/cells/NASA_PCOE_B0051.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5, + "cell_id": "NASA_PCOE_B0051", + "source_cell_id": "B0051" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0052.json b/cells/NASA_PCOE_B0052.json new file mode 100644 index 0000000000000000000000000000000000000000..57083c3e756a06b616c57a1ab7677b348fb711cd --- /dev/null +++ b/cells/NASA_PCOE_B0052.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.7, + "cell_id": "NASA_PCOE_B0052", + "source_cell_id": "B0052" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0053.json b/cells/NASA_PCOE_B0053.json new file mode 100644 index 0000000000000000000000000000000000000000..dd48f3d8289c89adf72baf8f20baf0db55a4bb91 --- /dev/null +++ b/cells/NASA_PCOE_B0053.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.0, + "cell_id": "NASA_PCOE_B0053", + "source_cell_id": "B0053" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0054.json b/cells/NASA_PCOE_B0054.json new file mode 100644 index 0000000000000000000000000000000000000000..93a0e73bd39d04b2f44f93da8682ed8ac4f0d4b2 --- /dev/null +++ b/cells/NASA_PCOE_B0054.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.2, + "cell_id": "NASA_PCOE_B0054", + "source_cell_id": "B0054" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0055.json b/cells/NASA_PCOE_B0055.json new file mode 100644 index 0000000000000000000000000000000000000000..1f2e245a3f5feded3c35c0a97d3e05739ae79284 --- /dev/null +++ b/cells/NASA_PCOE_B0055.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.5, + "cell_id": "NASA_PCOE_B0055", + "source_cell_id": "B0055" +} \ No newline at end of file diff --git a/cells/NASA_PCOE_B0056.json b/cells/NASA_PCOE_B0056.json new file mode 100644 index 0000000000000000000000000000000000000000..8acc592130a0c6fe8861c306dedfccae0692d875 --- /dev/null +++ b/cells/NASA_PCOE_B0056.json @@ -0,0 +1,16 @@ +{ + "source": "NASA_PCOE", + "manufacturer": "Unknown (NASA-undisclosed 18650 Li-ion)", + "model_number": null, + "chemistry": "LCO", + "cathode": null, + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 2.0, + "nominal_voltage_V": 3.7, + "max_voltage_V": 4.2, + "min_voltage_V": 2.7, + "cell_id": "NASA_PCOE_B0056", + "source_cell_id": "B0056" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T0_SOC50.json b/cells/NAUMANN_CAL_T0_SOC50.json new file mode 100644 index 0000000000000000000000000000000000000000..daf124c215f862e24bd67a6e7a70b984b5d2df56 --- /dev/null +++ b/cells/NAUMANN_CAL_T0_SOC50.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T0_SOC50", + "source_cell_id": "TP_0\u00b0C,50%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T10_SOC50.json b/cells/NAUMANN_CAL_T10_SOC50.json new file mode 100644 index 0000000000000000000000000000000000000000..dce1657605b84055bc8f2ce997cfb6ad1eb65923 --- /dev/null +++ b/cells/NAUMANN_CAL_T10_SOC50.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T10_SOC50", + "source_cell_id": "TP_10\u00b0C,50%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T25_SOC0.json b/cells/NAUMANN_CAL_T25_SOC0.json new file mode 100644 index 0000000000000000000000000000000000000000..f92e65e74cffbd967fff00a03dc2a9527deda061 --- /dev/null +++ b/cells/NAUMANN_CAL_T25_SOC0.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T25_SOC0", + "source_cell_id": "TP_25\u00b0C,0%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T25_SOC100.json b/cells/NAUMANN_CAL_T25_SOC100.json new file mode 100644 index 0000000000000000000000000000000000000000..bbc243bfef463ba2f2b25a1895d4cb55946e7f0c --- /dev/null +++ b/cells/NAUMANN_CAL_T25_SOC100.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T25_SOC100", + "source_cell_id": "TP_25\u00b0C,100%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T25_SOC50.json b/cells/NAUMANN_CAL_T25_SOC50.json new file mode 100644 index 0000000000000000000000000000000000000000..b1b9608454c6671005f6ae09fab1ea48fb426472 --- /dev/null +++ b/cells/NAUMANN_CAL_T25_SOC50.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T25_SOC50", + "source_cell_id": "TP_25\u00b0C,50%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T40_SOC0.json b/cells/NAUMANN_CAL_T40_SOC0.json new file mode 100644 index 0000000000000000000000000000000000000000..39ae580c98ee3653960ac67218d3d33f76b8cecd --- /dev/null +++ b/cells/NAUMANN_CAL_T40_SOC0.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T40_SOC0", + "source_cell_id": "TP_40\u00b0C,0%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T40_SOC100.json b/cells/NAUMANN_CAL_T40_SOC100.json new file mode 100644 index 0000000000000000000000000000000000000000..fa033e991313478e59111d68a15aa3d69357c7a7 --- /dev/null +++ b/cells/NAUMANN_CAL_T40_SOC100.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T40_SOC100", + "source_cell_id": "TP_40\u00b0C,100%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T40_SOC12.5.json b/cells/NAUMANN_CAL_T40_SOC12.5.json new file mode 100644 index 0000000000000000000000000000000000000000..834ca0ed6e83f223ceb3bb08f8a6a3b0af77a89b --- /dev/null +++ b/cells/NAUMANN_CAL_T40_SOC12.5.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T40_SOC12.5", + "source_cell_id": "TP_40\u00b0C,12.5%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T40_SOC25.json b/cells/NAUMANN_CAL_T40_SOC25.json new file mode 100644 index 0000000000000000000000000000000000000000..3203e1ec2dac4593eee71f7ecc339b4686e66018 --- /dev/null +++ b/cells/NAUMANN_CAL_T40_SOC25.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T40_SOC25", + "source_cell_id": "TP_40\u00b0C,25%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T40_SOC37.5.json b/cells/NAUMANN_CAL_T40_SOC37.5.json new file mode 100644 index 0000000000000000000000000000000000000000..dd70c84e926146cd08a10688340ce4d781f90925 --- /dev/null +++ b/cells/NAUMANN_CAL_T40_SOC37.5.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T40_SOC37.5", + "source_cell_id": "TP_40\u00b0C,37.5%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T40_SOC50.json b/cells/NAUMANN_CAL_T40_SOC50.json new file mode 100644 index 0000000000000000000000000000000000000000..018bb90cde2599d2c34937070f15a68b9805954f --- /dev/null +++ b/cells/NAUMANN_CAL_T40_SOC50.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T40_SOC50", + "source_cell_id": "TP_40\u00b0C,50%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T40_SOC62.5.json b/cells/NAUMANN_CAL_T40_SOC62.5.json new file mode 100644 index 0000000000000000000000000000000000000000..8bd35d0c9553605b9facf61d9de412304795944a --- /dev/null +++ b/cells/NAUMANN_CAL_T40_SOC62.5.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T40_SOC62.5", + "source_cell_id": "TP_40\u00b0C,62.5%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T40_SOC75.json b/cells/NAUMANN_CAL_T40_SOC75.json new file mode 100644 index 0000000000000000000000000000000000000000..9889231f2579cb2cfbd3a877b275e408eea55813 --- /dev/null +++ b/cells/NAUMANN_CAL_T40_SOC75.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T40_SOC75", + "source_cell_id": "TP_40\u00b0C,75%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T40_SOC87.5.json b/cells/NAUMANN_CAL_T40_SOC87.5.json new file mode 100644 index 0000000000000000000000000000000000000000..b07d2c83a888b88f6133292824d5841e94995b34 --- /dev/null +++ b/cells/NAUMANN_CAL_T40_SOC87.5.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T40_SOC87.5", + "source_cell_id": "TP_40\u00b0C,87.5%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T60_SOC0.json b/cells/NAUMANN_CAL_T60_SOC0.json new file mode 100644 index 0000000000000000000000000000000000000000..7996221793c7b63a672b8ab478d7bccf7f6b0d5b --- /dev/null +++ b/cells/NAUMANN_CAL_T60_SOC0.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T60_SOC0", + "source_cell_id": "TP_60\u00b0C,0%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T60_SOC100.json b/cells/NAUMANN_CAL_T60_SOC100.json new file mode 100644 index 0000000000000000000000000000000000000000..e7151de6fa4e6d05a145c8d71fa77ff33f9ed6ee --- /dev/null +++ b/cells/NAUMANN_CAL_T60_SOC100.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T60_SOC100", + "source_cell_id": "TP_60\u00b0C,100%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CAL_T60_SOC50.json b/cells/NAUMANN_CAL_T60_SOC50.json new file mode 100644 index 0000000000000000000000000000000000000000..d2b2efcbb44deb2b8fe584413cc33736fa9ddf61 --- /dev/null +++ b/cells/NAUMANN_CAL_T60_SOC50.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CAL_T60_SOC50", + "source_cell_id": "TP_60\u00b0C,50%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CYC_T25_SOC50_D100_C1_C1.json b/cells/NAUMANN_CYC_T25_SOC50_D100_C1_C1.json new file mode 100644 index 0000000000000000000000000000000000000000..5cce4185eb2c21afb8c06f455481a2183bf8d7ce --- /dev/null +++ b/cells/NAUMANN_CYC_T25_SOC50_D100_C1_C1.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CYC_T25_SOC50_D100_C1_C1", + "source_cell_id": "Testpoint Cyclization_25\u00b0C_50%SOC_100%DOD_1C_1C_CC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CYC_T25_SOC50_D80_C1_C1.json b/cells/NAUMANN_CYC_T25_SOC50_D80_C1_C1.json new file mode 100644 index 0000000000000000000000000000000000000000..4a2ef2219e6c12e2375dfb20ed698e0aa35d29f2 --- /dev/null +++ b/cells/NAUMANN_CYC_T25_SOC50_D80_C1_C1.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CYC_T25_SOC50_D80_C1_C1", + "source_cell_id": "Testpoint Cyclization_25\u00b0C_50%SOC_80%DOD_1C_1C_CC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CYC_T40_SOC25_D20_C1_C1.json b/cells/NAUMANN_CYC_T40_SOC25_D20_C1_C1.json new file mode 100644 index 0000000000000000000000000000000000000000..b89cd234bc9e31482862356ce0d44b031b0e560a --- /dev/null +++ b/cells/NAUMANN_CYC_T40_SOC25_D20_C1_C1.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CYC_T40_SOC25_D20_C1_C1", + "source_cell_id": "Testpoint Cyclization_40\u00b0C_25%SOC_20%DOD_1C_1C_CC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CYC_T40_SOC50_D100_C1_C1.json b/cells/NAUMANN_CYC_T40_SOC50_D100_C1_C1.json new file mode 100644 index 0000000000000000000000000000000000000000..91ec2da8e1b83abde92b7591289d43cd7248adae --- /dev/null +++ b/cells/NAUMANN_CYC_T40_SOC50_D100_C1_C1.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CYC_T40_SOC50_D100_C1_C1", + "source_cell_id": "Testpoint Cyclization_40\u00b0C_50%SOC_100%DOD_1C_1C_CC+CV" +} \ No newline at end of file diff --git a/cells/NAUMANN_CYC_T40_SOC50_D10_C1_C1.json b/cells/NAUMANN_CYC_T40_SOC50_D10_C1_C1.json new file mode 100644 index 0000000000000000000000000000000000000000..04048b0d1a38b5841fa287e7c3c626e04f421e3a --- /dev/null +++ b/cells/NAUMANN_CYC_T40_SOC50_D10_C1_C1.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CYC_T40_SOC50_D10_C1_C1", + "source_cell_id": "Testpoint Cyclization_40\u00b0C_50%SOC_10%DOD_1C_1C_CC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CYC_T40_SOC50_D20_C1_C1.json b/cells/NAUMANN_CYC_T40_SOC50_D20_C1_C1.json new file mode 100644 index 0000000000000000000000000000000000000000..c289b04ed83b30d89864b8adf22cef946bd075bf --- /dev/null +++ b/cells/NAUMANN_CYC_T40_SOC50_D20_C1_C1.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CYC_T40_SOC50_D20_C1_C1", + "source_cell_id": "Testpoint Cyclization_40\u00b0C_50%SOC_20%DOD_1C_1C_CC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CYC_T40_SOC50_D40_C1_C1.json b/cells/NAUMANN_CYC_T40_SOC50_D40_C1_C1.json new file mode 100644 index 0000000000000000000000000000000000000000..1266cb6726e4cc769ebf2408d58ed39e93243773 --- /dev/null +++ b/cells/NAUMANN_CYC_T40_SOC50_D40_C1_C1.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CYC_T40_SOC50_D40_C1_C1", + "source_cell_id": "Testpoint Cyclization_40\u00b0C_50%SOC_40%DOD_1C_1C_CC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CYC_T40_SOC50_D5_C1_C1.json b/cells/NAUMANN_CYC_T40_SOC50_D5_C1_C1.json new file mode 100644 index 0000000000000000000000000000000000000000..859f8ed1c05c648a62d30b6c7dac863e97868bb1 --- /dev/null +++ b/cells/NAUMANN_CYC_T40_SOC50_D5_C1_C1.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CYC_T40_SOC50_D5_C1_C1", + "source_cell_id": "Testpoint Cyclization_40\u00b0C_50%SOC_5%DOD_1C_1C_CC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CYC_T40_SOC50_D80_C0.2_C0.2.json b/cells/NAUMANN_CYC_T40_SOC50_D80_C0.2_C0.2.json new file mode 100644 index 0000000000000000000000000000000000000000..4bb403221f889a5dc7717ee96529be30fe60c8ba --- /dev/null +++ b/cells/NAUMANN_CYC_T40_SOC50_D80_C0.2_C0.2.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CYC_T40_SOC50_D80_C0.2_C0.2", + "source_cell_id": "Testpoint Cyclization_40\u00b0C_50%SOC_80%DOD_0.2C_0.2C_CC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CYC_T40_SOC50_D80_C0.5_C0.5.json b/cells/NAUMANN_CYC_T40_SOC50_D80_C0.5_C0.5.json new file mode 100644 index 0000000000000000000000000000000000000000..78c041286ac955afad312117888ee1cfc9f6667d --- /dev/null +++ b/cells/NAUMANN_CYC_T40_SOC50_D80_C0.5_C0.5.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CYC_T40_SOC50_D80_C0.5_C0.5", + "source_cell_id": "Testpoint Cyclization_40\u00b0C_50%SOC_80%DOD_0.5C_0.5C_CC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CYC_T40_SOC50_D80_C0.5_C1.json b/cells/NAUMANN_CYC_T40_SOC50_D80_C0.5_C1.json new file mode 100644 index 0000000000000000000000000000000000000000..e913132c2ed479830cfbb72d0a0cc96531b01028 --- /dev/null +++ b/cells/NAUMANN_CYC_T40_SOC50_D80_C0.5_C1.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CYC_T40_SOC50_D80_C0.5_C1", + "source_cell_id": "Testpoint Cyclization_40\u00b0C_50%SOC_80%DOD_0.5C_1C_CC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CYC_T40_SOC50_D80_C1_C0.5.json b/cells/NAUMANN_CYC_T40_SOC50_D80_C1_C0.5.json new file mode 100644 index 0000000000000000000000000000000000000000..6633b3e325b31fa4813096a31bcab1e20df4d8b6 --- /dev/null +++ b/cells/NAUMANN_CYC_T40_SOC50_D80_C1_C0.5.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CYC_T40_SOC50_D80_C1_C0.5", + "source_cell_id": "Testpoint Cyclization_40\u00b0C_50%SOC_80%DOD_1C_0.5C_CC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CYC_T40_SOC50_D80_C1_C1.json b/cells/NAUMANN_CYC_T40_SOC50_D80_C1_C1.json new file mode 100644 index 0000000000000000000000000000000000000000..30d158aa1532a209204b5e093ecd7ec0320af4b3 --- /dev/null +++ b/cells/NAUMANN_CYC_T40_SOC50_D80_C1_C1.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CYC_T40_SOC50_D80_C1_C1", + "source_cell_id": "Testpoint Cyclization_40\u00b0C_50%SOC_80%DOD_1C_1C_CC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CYC_T40_SOC50_D80_C1_C2.json b/cells/NAUMANN_CYC_T40_SOC50_D80_C1_C2.json new file mode 100644 index 0000000000000000000000000000000000000000..32284628f7ec8ddbf5543b0e4a3b70874d356df0 --- /dev/null +++ b/cells/NAUMANN_CYC_T40_SOC50_D80_C1_C2.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CYC_T40_SOC50_D80_C1_C2", + "source_cell_id": "Testpoint Cyclization_40\u00b0C_50%SOC_80%DOD_1C_2C_CC" +} \ No newline at end of file diff --git a/cells/NAUMANN_CYC_T40_SOC75_D20_C1_C1.json b/cells/NAUMANN_CYC_T40_SOC75_D20_C1_C1.json new file mode 100644 index 0000000000000000000000000000000000000000..306d7ca34635f7a7cc1a90cce0c19439603a99c4 --- /dev/null +++ b/cells/NAUMANN_CYC_T40_SOC75_D20_C1_C1.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_CYC_T40_SOC75_D20_C1_C1", + "source_cell_id": "Testpoint Cyclization_40\u00b0C_75%SOC_20%DOD_1C_1C_CC" +} \ No newline at end of file diff --git a/cells/NAUMANN_LOAD_PVBattery_T40_SOC51.4.json b/cells/NAUMANN_LOAD_PVBattery_T40_SOC51.4.json new file mode 100644 index 0000000000000000000000000000000000000000..8ae87e11987f10db5cf7804ab136590a8c977437 --- /dev/null +++ b/cells/NAUMANN_LOAD_PVBattery_T40_SOC51.4.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_LOAD_PVBattery_T40_SOC51.4", + "source_cell_id": "Testpoint LoadSpectrumPVBattery_40\u00b0C_51.4%SOC" +} \ No newline at end of file diff --git a/cells/NAUMANN_LOAD_PVPRLBattery_T40_SOC51.2.json b/cells/NAUMANN_LOAD_PVPRLBattery_T40_SOC51.2.json new file mode 100644 index 0000000000000000000000000000000000000000..d24b469fede9288df424a5d1a9e55b73a3763f67 --- /dev/null +++ b/cells/NAUMANN_LOAD_PVPRLBattery_T40_SOC51.2.json @@ -0,0 +1,16 @@ +{ + "source": "NAUMANN", + "manufacturer": "Sony-Murata", + "model_number": "US26650FTC1", + "chemistry": "LFP", + "cathode": "LFP", + "anode": "graphite", + "electrolyte": null, + "form_factor": "cylindrical", + "nominal_capacity_Ah": 3.0, + "nominal_voltage_V": 3.2, + "max_voltage_V": 3.6, + "min_voltage_V": 2.0, + "cell_id": "NAUMANN_LOAD_PVPRLBattery_T40_SOC51.2", + "source_cell_id": "Testpoint LoadSpectrumPVPRLBattery_40\u00b0C_51.2%SOC" +} \ No newline at end of file diff --git a/cells/ORNL_LEAF_2013.json b/cells/ORNL_LEAF_2013.json new file mode 100644 index 0000000000000000000000000000000000000000..d38e469d78f6bba77b1e3af32062afc263a731d8 --- /dev/null +++ b/cells/ORNL_LEAF_2013.json @@ -0,0 +1,16 @@ +{ + "cell_id": "ORNL_LEAF_2013", + "source": "ORNL", + "source_cell_id": "2013_Nissan_Leaf", + "manufacturer": "AESC", + "model_number": null, + "chemistry": "mixed", + "cathode": null, + "anode": null, + "electrolyte": null, + "form_factor": "pouch", + "nominal_capacity_Ah": 33.1, + "nominal_voltage_V": null, + "max_voltage_V": null, + "min_voltage_V": null +} \ No newline at end of file diff --git a/cycle_summary.parquet b/cycle_summary.parquet new file mode 100644 index 0000000000000000000000000000000000000000..212ed5310d69a20f3c4e89f45dd2efc49f9db5e5 --- /dev/null +++ b/cycle_summary.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d73019d2bd98f82b36a4bce182f956a1b072dc19b118bbb39e6cc2cc863602c8 +size 36373 diff --git a/tests/BILLS_EVTOL_VAH01_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH01_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..78e1f4dc0d82f6af0f4b5d52c3746fbfdd70078d --- /dev/null +++ b/tests/BILLS_EVTOL_VAH01_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH01_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH01", + "test_type": "drive_cycle", + "temperature_C_min": 19.984808, + "temperature_C_max": 67.949303, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 249, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 1091477, + "duration_s": 6370155.11077753, + "voltage_observed_min_V": 2.4999928, + "voltage_observed_max_V": 4.2002068, + "current_observed_min_A": -21.622623, + "current_observed_max_A": 2.9958022, + "temperature_observed_min_C": 19.984808, + "temperature_observed_max_C": 67.949303, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0000001098960638, + "sample_dt_max_s": 30.0620031360304, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH02_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH02_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..e4da999c59e30531779492f5433074cfadcd5e37 --- /dev/null +++ b/tests/BILLS_EVTOL_VAH02_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH02_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH02", + "test_type": "drive_cycle", + "temperature_C_min": 19.723864, + "temperature_C_max": 67.849167, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 249, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 1004761, + "duration_s": 5302941.65949479, + "voltage_observed_min_V": 2.5000141, + "voltage_observed_max_V": 4.2000971, + "current_observed_min_A": -21.608490000000003, + "current_observed_max_A": 2.994189, + "temperature_observed_min_C": 19.723864, + "temperature_observed_max_C": 67.849167, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0000001101288944, + "sample_dt_max_s": 30.060003579827026, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH05_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH05_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..914590b763fe19ea9ea2e8748aadde2832e94fb7 --- /dev/null +++ b/tests/BILLS_EVTOL_VAH05_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH05_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH05", + "test_type": "drive_cycle", + "temperature_C_min": 20.634619, + "temperature_C_max": 61.178902, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 499, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 1015444, + "duration_s": 12493235.6923373, + "voltage_observed_min_V": 2.499969, + "voltage_observed_max_V": 4.2003059, + "current_observed_min_A": -19.433045, + "current_observed_max_A": 3.0085698, + "temperature_observed_min_C": 20.634619, + "temperature_observed_max_C": 61.178902, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 9.99999220110476, + "sample_dt_max_s": 30.064003140083514, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH06_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH06_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..d60fea8d831147a73749ea1f6677c7f395366819 --- /dev/null +++ b/tests/BILLS_EVTOL_VAH06_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH06_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH06", + "test_type": "drive_cycle", + "temperature_C_min": 21.152241, + "temperature_C_max": 68.622726, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 249, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 809016, + "duration_s": 9679444.91622978, + "voltage_observed_min_V": 2.4999301, + "voltage_observed_max_V": 4.2012539, + "current_observed_min_A": -21.596363, + "current_observed_max_A": 1.5243951, + "temperature_observed_min_C": 21.152241, + "temperature_observed_max_C": 68.622726, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 10.000001039821655, + "sample_dt_max_s": 30.064003580017015, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH07_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH07_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..98cbcc7ab065c6d98abdcb699bd4732eeeac4ec2 --- /dev/null +++ b/tests/BILLS_EVTOL_VAH07_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH07_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH07", + "test_type": "drive_cycle", + "temperature_C_min": 21.228424, + "temperature_C_max": 58.258018, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 249, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 205487, + "duration_s": 1901953.4763447, + "voltage_observed_min_V": 2.500021, + "voltage_observed_max_V": 4.2007132, + "current_observed_min_A": -21.584965, + "current_observed_max_A": 3.0088125, + "temperature_observed_min_C": 21.228424, + "temperature_observed_max_C": 58.258018, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0000001199077815, + "sample_dt_max_s": 30.05800151170115, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH09_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH09_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..454a5d9e6974f8208b4350bcc3a16380af4112c1 --- /dev/null +++ b/tests/BILLS_EVTOL_VAH09_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH09_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH09", + "test_type": "drive_cycle", + "temperature_C_min": 18.782757, + "temperature_C_max": 64.056488, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 249, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 680849, + "duration_s": 6657569.84036472, + "voltage_observed_min_V": 2.4998846, + "voltage_observed_max_V": 4.2009983, + "current_observed_min_A": -21.596035, + "current_observed_max_A": 3.0075283, + "temperature_observed_min_C": 18.782757, + "temperature_observed_max_C": 64.056488, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0000001196749508, + "sample_dt_max_s": 158.28201650996925, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH10_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH10_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..e18429d948f737114c7b094829d613553101ec9e --- /dev/null +++ b/tests/BILLS_EVTOL_VAH10_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH10_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH10", + "test_type": "drive_cycle", + "temperature_C_min": 29.150253, + "temperature_C_max": 69.837273, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 407, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 949302, + "duration_s": 11769463.698803, + "voltage_observed_min_V": 2.4999659, + "voltage_observed_max_V": 4.214139, + "current_observed_min_A": -19.883937999999997, + "current_observed_max_A": 3.0108782, + "temperature_observed_min_C": 29.150253, + "temperature_observed_max_C": 69.837273, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 9.999992249533534, + "sample_dt_max_s": 25238.03863253072, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH11_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH11_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..36b3fd4a39888d8a5c2155642289589ee4645645 --- /dev/null +++ b/tests/BILLS_EVTOL_VAH11_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH11_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH11", + "test_type": "drive_cycle", + "temperature_C_min": 14.466017, + "temperature_C_max": 48.26561, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 499, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 1381245, + "duration_s": 16918445.8044153, + "voltage_observed_min_V": 2.4999337, + "voltage_observed_max_V": 4.2029877, + "current_observed_min_A": -17.278006, + "current_observed_max_A": 3.0088835, + "temperature_observed_min_C": 14.466017, + "temperature_observed_max_C": 48.26561, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.9980005994439125, + "sample_dt_max_s": 30.06200357992202, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH12_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH12_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..21bf49a7e5aca3f79aa3d5ae015769b7904fce84 --- /dev/null +++ b/tests/BILLS_EVTOL_VAH12_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH12_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH12", + "test_type": "drive_cycle", + "temperature_C_min": 16.315432, + "temperature_C_max": 60.041779, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 499, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 1331202, + "duration_s": 15963088.6434649, + "voltage_observed_min_V": 2.4999564, + "voltage_observed_max_V": 4.2011089, + "current_observed_min_A": -19.382643, + "current_observed_max_A": 3.0168452, + "temperature_observed_min_C": 16.315432, + "temperature_observed_max_C": 60.041779, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0000001201406121, + "sample_dt_max_s": 30.056003579869866, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH13_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH13_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..38debe09b5db5106b77062107324a23978618119 --- /dev/null +++ b/tests/BILLS_EVTOL_VAH13_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH13_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH13", + "test_type": "drive_cycle", + "temperature_C_min": 20.437376, + "temperature_C_max": 61.135674, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 249, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 647633, + "duration_s": 7681809.55917471, + "voltage_observed_min_V": 2.4999251, + "voltage_observed_max_V": 4.2010455, + "current_observed_min_A": -21.594115000000002, + "current_observed_max_A": 3.0073174, + "temperature_observed_min_C": 20.437376, + "temperature_observed_max_C": 61.135674, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0000001201406121, + "sample_dt_max_s": 30.056001430377364, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH15_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH15_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..d64e16e56683bac5cfb8052d0cf3aefc6290ddbb --- /dev/null +++ b/tests/BILLS_EVTOL_VAH15_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH15_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH15", + "test_type": "drive_cycle", + "temperature_C_min": 21.438393, + "temperature_C_max": 61.283398, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 249, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 365851, + "duration_s": 4282740.60632795, + "voltage_observed_min_V": 2.5000141, + "voltage_observed_max_V": 4.2000575, + "current_observed_min_A": -20.565662, + "current_observed_max_A": 3.0002942, + "temperature_observed_min_C": 21.438393, + "temperature_observed_max_C": 61.283398, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0000001201406121, + "sample_dt_max_s": 30.05800358997658, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH16_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH16_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..e82f398e822e34fb76ab7cf51f565b0b632f20f9 --- /dev/null +++ b/tests/BILLS_EVTOL_VAH16_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH16_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH16", + "test_type": "drive_cycle", + "temperature_C_min": 22.007627, + "temperature_C_max": 58.12714, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 249, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 343414, + "duration_s": 3761133.29614848, + "voltage_observed_min_V": 2.4999714, + "voltage_observed_max_V": 4.2000589, + "current_observed_min_A": -19.818604999999998, + "current_observed_max_A": 4.4923989, + "temperature_observed_min_C": 22.007627, + "temperature_observed_max_C": 58.12714, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0000001201406121, + "sample_dt_max_s": 30.060003580059856, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH17_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH17_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..e8a0f2ae5adf4d7dd98f3a4603e2d8d722eb6d9b --- /dev/null +++ b/tests/BILLS_EVTOL_VAH17_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH17_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH17", + "test_type": "drive_cycle", + "temperature_C_min": 20.925753, + "temperature_C_max": 65.909271, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 480, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 650381, + "duration_s": 7721188.25444604, + "voltage_observed_min_V": 2.4999928, + "voltage_observed_max_V": 4.2001281, + "current_observed_min_A": -21.621639, + "current_observed_max_A": 2.9950142, + "temperature_observed_min_C": 20.925753, + "temperature_observed_max_C": 65.909271, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0000001201406121, + "sample_dt_max_s": 30.05800313601503, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH20_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH20_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..8a25f101c3d7f59343c93d21ef9a933817dc6778 --- /dev/null +++ b/tests/BILLS_EVTOL_VAH20_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH20_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH20", + "test_type": "drive_cycle", + "temperature_C_min": 21.5529, + "temperature_C_max": 67.582344, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 499, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 392502, + "duration_s": 4245008.36765902, + "voltage_observed_min_V": 2.4999714, + "voltage_observed_max_V": 4.2000985, + "current_observed_min_A": -21.60825, + "current_observed_max_A": 4.4922017, + "temperature_observed_min_C": 21.5529, + "temperature_observed_max_C": 67.582344, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0000001199077815, + "sample_dt_max_s": 30.062003139872104, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH22_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH22_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..5c749b913ea3434dc76e9b2ad5dbc76b367f3c71 --- /dev/null +++ b/tests/BILLS_EVTOL_VAH22_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH22_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH22", + "test_type": "drive_cycle", + "temperature_C_min": 20.07151, + "temperature_C_max": 64.111969, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 499, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 385429, + "duration_s": 4399664.3467811, + "voltage_observed_min_V": 2.5000141, + "voltage_observed_max_V": 4.2000575, + "current_observed_min_A": -21.611442999999998, + "current_observed_max_A": 3.0014758, + "temperature_observed_min_C": 20.07151, + "temperature_observed_max_C": 64.111969, + "sample_dt_min_s": 0.001999989617615938, + "sample_dt_median_s": 1.0000001201406121, + "sample_dt_max_s": 36.886001750361174, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH23_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH23_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..787c0ff646b6a1846f368b54bf50f111dc780cd1 --- /dev/null +++ b/tests/BILLS_EVTOL_VAH23_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH23_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH23", + "test_type": "drive_cycle", + "temperature_C_min": 15.319803, + "temperature_C_max": 61.297874, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 249, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 528761, + "duration_s": 5699813.23680546, + "voltage_observed_min_V": 2.4999516, + "voltage_observed_max_V": 4.2009249, + "current_observed_min_A": -21.594393, + "current_observed_max_A": 3.0087998, + "temperature_observed_min_C": 15.319803, + "temperature_observed_max_C": 61.297874, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 10.000000503001502, + "sample_dt_max_s": 30.05400358978659, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH24_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH24_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..69d7b92177a736e3725100ab7488b989fcb0dbec --- /dev/null +++ b/tests/BILLS_EVTOL_VAH24_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH24_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH24", + "test_type": "drive_cycle", + "temperature_C_min": 16.492706, + "temperature_C_max": 66.11557, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 249, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 653075, + "duration_s": 8210134.03587932, + "voltage_observed_min_V": 2.4999301, + "voltage_observed_max_V": 4.2008209, + "current_observed_min_A": -21.594789000000002, + "current_observed_max_A": 1.5247891999999998, + "temperature_observed_min_C": 16.492706, + "temperature_observed_max_C": 66.11557, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 10.000001040287316, + "sample_dt_max_s": 30.056001511606155, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH25_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH25_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..f692fca14adadaf085119717397e010f3e3a9d84 --- /dev/null +++ b/tests/BILLS_EVTOL_VAH25_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH25_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH25", + "test_type": "drive_cycle", + "temperature_C_min": 18.814306, + "temperature_C_max": 61.611389, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 249, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 401297, + "duration_s": 4431968.74330689, + "voltage_observed_min_V": 2.4999242, + "voltage_observed_max_V": 4.2008801, + "current_observed_min_A": -21.594262, + "current_observed_max_A": 3.0083168999999996, + "temperature_observed_min_C": 18.814306, + "temperature_observed_max_C": 61.611389, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0000001201406121, + "sample_dt_max_s": 30.09000313002616, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH26_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH26_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..1859d40be00f745c34377010f91b51901943382b --- /dev/null +++ b/tests/BILLS_EVTOL_VAH26_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH26_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH26", + "test_type": "drive_cycle", + "temperature_C_min": 16.546406, + "temperature_C_max": 62.422203, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 249, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 718345, + "duration_s": 8060177.2775746, + "voltage_observed_min_V": 2.4999251, + "voltage_observed_max_V": 4.2038031, + "current_observed_min_A": -21.594901999999998, + "current_observed_max_A": 3.0067263, + "temperature_observed_min_C": 16.546406, + "temperature_observed_max_C": 62.422203, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0000001201406121, + "sample_dt_max_s": 30.054003139957786, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH27_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH27_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..1d1c0f1d4db98cacab0f7cee0345eba8549a44ab --- /dev/null +++ b/tests/BILLS_EVTOL_VAH27_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH27_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH27", + "test_type": "drive_cycle", + "temperature_C_min": 17.573141, + "temperature_C_max": 64.897156, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 249, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 391649, + "duration_s": 4291400.91455539, + "voltage_observed_min_V": 2.4999928, + "voltage_observed_max_V": 7.1800418, + "current_observed_min_A": -21.606074, + "current_observed_max_A": 2.9952109, + "temperature_observed_min_C": 17.573141, + "temperature_observed_max_C": 64.897156, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0000001201406121, + "sample_dt_max_s": 166.5060173679958, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH28_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH28_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..818b8a4583a3b69b6baf129495546ccae5da1443 --- /dev/null +++ b/tests/BILLS_EVTOL_VAH28_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH28_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH28", + "test_type": "drive_cycle", + "temperature_C_min": 16.380507, + "temperature_C_max": 44.95961, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 249, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 770958, + "duration_s": 8594090.10315945, + "voltage_observed_min_V": 2.499969, + "voltage_observed_max_V": 4.2326088, + "current_observed_min_A": -17.394133, + "current_observed_max_A": 3.0058137, + "temperature_observed_min_C": 16.380507, + "temperature_observed_max_C": 44.95961, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0000001201406121, + "sample_dt_max_s": 30.056003133999184, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/BILLS_EVTOL_VAH30_DRIVE_CYCLE.json b/tests/BILLS_EVTOL_VAH30_DRIVE_CYCLE.json new file mode 100644 index 0000000000000000000000000000000000000000..cab87b298b6d7c1ee3dc8ccd6e7e7a338189369b --- /dev/null +++ b/tests/BILLS_EVTOL_VAH30_DRIVE_CYCLE.json @@ -0,0 +1,34 @@ +{ + "test_id": "BILLS_EVTOL_VAH30_DRIVE_CYCLE", + "cell_id": "BILLS_EVTOL_VAH30", + "test_type": "drive_cycle", + "temperature_C_min": 34.016865, + "temperature_C_max": 68.078293, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": null, + "protocol_description": "eVTOL mission profile (54 W takeoff 75 s + 16 W cruise 800 s + 54 W landing 105 s) repeated until EOL. Interspersed RPTs every 50 missions with C/5 capacity test + DCIR pulses.", + "num_cycles": 249, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2020, + "n_samples": 591239, + "duration_s": 6925019.4059046, + "voltage_observed_min_V": 2.5000141, + "voltage_observed_max_V": 4.2001367, + "current_observed_min_A": -19.308162, + "current_observed_max_A": 3.0032483, + "temperature_observed_min_C": 34.016865, + "temperature_observed_max_C": 68.078293, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0000001201406121, + "sample_dt_max_s": 186.20601942299982, + "source_doi": "10.1184/R1/14226830", + "source_url": "https://kilthub.cmu.edu/articles/dataset/eVTOL_Battery_Dataset/14226830", + "source_citation": "Bills, A., Sripad, S., Fredericks, W. L., et al. (2023). A battery dataset for electric vertical takeoff and landing aircraft. Scientific Data 10, 344. https://doi.org/10.1038/s41597-023-02180-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C0_CYCLING.json b/tests/CLO_B4C0_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..f2327f29e1fbda766afa5d792e99d13154b5fced --- /dev/null +++ b/tests/CLO_B4C0_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C0_CYCLING", + "cell_id": "CLO_B4C0", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 4.8-5.2-5.2-4.16. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 857, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 772114, + "duration_s": 2443832.267300003, + "voltage_observed_min_V": 1.9967723, + "voltage_observed_max_V": 3.6026626, + "current_observed_min_A": -4.001056454545454, + "current_observed_max_A": 5.2119966363636365, + "temperature_observed_min_C": 29.552334, + "temperature_observed_max_C": 34.13625269054208, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.001399999950081, + "sample_dt_max_s": 2408266.7791000004, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C10_CYCLING.json b/tests/CLO_B4C10_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..8b1becd1dd059fa30fc63a3ef9670b97e2eb2994 --- /dev/null +++ b/tests/CLO_B4C10_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C10_CYCLING", + "cell_id": "CLO_B4C10", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 4.8-5.2-5.2-4.16. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 873, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 907206, + "duration_s": 3031819.4333999995, + "voltage_observed_min_V": 1.9961948, + "voltage_observed_max_V": 3.6043568, + "current_observed_min_A": -4.004424727272727, + "current_observed_max_A": 5.207606272727272, + "temperature_observed_min_C": 29.379953, + "temperature_observed_max_C": 40.303112, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.001200000056997, + "sample_dt_max_s": 2638819.3611, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C11_CYCLING.json b/tests/CLO_B4C11_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..9063c37d961366e040cb97f91ad3e46c4c4d27b0 --- /dev/null +++ b/tests/CLO_B4C11_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C11_CYCLING", + "cell_id": "CLO_B4C11", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 4.8-5.2-5.2-4.16. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 864, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 737318, + "duration_s": 2484343.1236999957, + "voltage_observed_min_V": 1.9960799, + "voltage_observed_max_V": 3.601933, + "current_observed_min_A": -4.001683727272727, + "current_observed_max_A": 5.226013909090908, + "temperature_observed_min_C": 30.503246, + "temperature_observed_max_C": 40.124645, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.003299999982119, + "sample_dt_max_s": 2408197.5371000003, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C12_CYCLING.json b/tests/CLO_B4C12_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..be269f96423247fd7e0e89b55749c6d82962c6e0 --- /dev/null +++ b/tests/CLO_B4C12_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C12_CYCLING", + "cell_id": "CLO_B4C12", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 6-5.6-4.4-3.834. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 819, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 710429, + "duration_s": 2409123.8077999996, + "voltage_observed_min_V": 1.9963164, + "voltage_observed_max_V": 3.6015735, + "current_observed_min_A": -4.001621363636363, + "current_observed_max_A": 6.01015609090909, + "temperature_observed_min_C": 30.559748, + "temperature_observed_max_C": 42.728656546274316, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.0037999999767635, + "sample_dt_max_s": 2408195.9768000003, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C13_CYCLING.json b/tests/CLO_B4C13_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..910c492170d7ee4845c3dfacc893efe42097b632 --- /dev/null +++ b/tests/CLO_B4C13_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C13_CYCLING", + "cell_id": "CLO_B4C13", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 6-5.6-4.4-3.834. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 772, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 712933, + "duration_s": 2409253.654400002, + "voltage_observed_min_V": 1.9963679, + "voltage_observed_max_V": 3.603826, + "current_observed_min_A": -4.001994090909091, + "current_observed_max_A": 6.015711727272727, + "temperature_observed_min_C": 30.00537278685765, + "temperature_observed_max_C": 35.223183, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.00359999993816, + "sample_dt_max_s": 2408200.8654, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C14_CYCLING.json b/tests/CLO_B4C14_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..5952707a4e0bcd6bb5dd6b2bf14828360a115c2c --- /dev/null +++ b/tests/CLO_B4C14_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C14_CYCLING", + "cell_id": "CLO_B4C14", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 8-4.4-4.4-3.94. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 608, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 688364, + "duration_s": 2163657.6456000027, + "voltage_observed_min_V": 1.9962435, + "voltage_observed_max_V": 3.602828, + "current_observed_min_A": -4.0010070909090905, + "current_observed_max_A": 8.019135181818182, + "temperature_observed_min_C": 29.970485033254015, + "temperature_observed_max_C": 41.874668, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.001600000003236, + "sample_dt_max_s": 1994249.7218000004, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C15_CYCLING.json b/tests/CLO_B4C15_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..a5fa475ed4a4f41e2b93adaf3967d8e1f79a3f5e --- /dev/null +++ b/tests/CLO_B4C15_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C15_CYCLING", + "cell_id": "CLO_B4C15", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 8-4.4-4.4-3.94. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 676, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 787490, + "duration_s": 2443396.8056999976, + "voltage_observed_min_V": 1.9964714, + "voltage_observed_max_V": 3.6029091, + "current_observed_min_A": -4.0042968181818175, + "current_observed_max_A": 8.43807218181818, + "temperature_observed_min_C": 29.457115, + "temperature_observed_max_C": 40.206214466852536, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.001000000163913, + "sample_dt_max_s": 2408197.4009000002, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C16_CYCLING.json b/tests/CLO_B4C16_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..ca3f1e23610da04962de996740b7dc46f4b5830f --- /dev/null +++ b/tests/CLO_B4C16_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C16_CYCLING", + "cell_id": "CLO_B4C16", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 7-4.8-4.8-3.652. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 910, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 745666, + "duration_s": 2484103.8942999966, + "voltage_observed_min_V": 1.9960961, + "voltage_observed_max_V": 3.6012864, + "current_observed_min_A": -4.001394636363636, + "current_observed_max_A": 7.011753454545454, + "temperature_observed_min_C": 30.2440885009929, + "temperature_observed_max_C": 39.433645866533865, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.0032000000355765, + "sample_dt_max_s": 2408187.9962000004, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C17_CYCLING.json b/tests/CLO_B4C17_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..c7e7484c164bf7dfd8d4c93690c405e1689a1d88 --- /dev/null +++ b/tests/CLO_B4C17_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C17_CYCLING", + "cell_id": "CLO_B4C17", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 7-4.8-4.8-3.652. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 828, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 699493, + "duration_s": 2256470.3261999963, + "voltage_observed_min_V": 1.9961982, + "voltage_observed_max_V": 3.6021457, + "current_observed_min_A": -4.001770909090909, + "current_observed_max_A": 7.022323636363636, + "temperature_observed_min_C": 30.712252, + "temperature_observed_max_C": 41.471306, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.002399999997579, + "sample_dt_max_s": 2197072.7307, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C18_CYCLING.json b/tests/CLO_B4C18_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..53b1aecf80f6e79f45c54b47990c8d6e9ae21b42 --- /dev/null +++ b/tests/CLO_B4C18_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C18_CYCLING", + "cell_id": "CLO_B4C18", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 3.6-6-5.6-4.755. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 907, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 842326, + "duration_s": 2511292.3427999956, + "voltage_observed_min_V": 1.9947238, + "voltage_observed_max_V": 3.6032939, + "current_observed_min_A": -4.002081272727272, + "current_observed_max_A": 6.017965818181818, + "temperature_observed_min_C": 30.35546177101866, + "temperature_observed_max_C": 36.192215, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.8316999999806285, + "sample_dt_max_s": 2408188.3572, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C19_CYCLING.json b/tests/CLO_B4C19_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..2b294b724162ef5cec35b891dba4dd88a30a3cc7 --- /dev/null +++ b/tests/CLO_B4C19_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C19_CYCLING", + "cell_id": "CLO_B4C19", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 7-4.8-4.8-3.652. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 992, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 829660, + "duration_s": 2644888.0577000002, + "voltage_observed_min_V": 1.9958801, + "voltage_observed_max_V": 3.6015654, + "current_observed_min_A": -4.002257727272727, + "current_observed_max_A": 7.016171545454545, + "temperature_observed_min_C": 30.807409248460285, + "temperature_observed_max_C": 41.97165565167732, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.0019000000320375, + "sample_dt_max_s": 2638768.9119, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C1_CYCLING.json b/tests/CLO_B4C1_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..66ef7142390c1805891aa0c4d3a56f35aa22db1e --- /dev/null +++ b/tests/CLO_B4C1_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C1_CYCLING", + "cell_id": "CLO_B4C1", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 3.6-6-5.6-4.755. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 761, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 721320, + "duration_s": 2163033.1749999984, + "voltage_observed_min_V": 1.9970112, + "voltage_observed_max_V": 3.6024694, + "current_observed_min_A": -4.001077272727272, + "current_observed_max_A": 6.012087727272727, + "temperature_observed_min_C": 30.042332797673147, + "temperature_observed_max_C": 42.070934, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.8131999999750406, + "sample_dt_max_s": 1994313.7762, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C20_CYCLING.json b/tests/CLO_B4C20_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..4c46537958f48f5f4b5d672f6964252a106222e2 --- /dev/null +++ b/tests/CLO_B4C20_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C20_CYCLING", + "cell_id": "CLO_B4C20", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 3.6-6-5.6-4.755. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 748, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 626039, + "duration_s": 1897020.735000003, + "voltage_observed_min_V": 1.9955192, + "voltage_observed_max_V": 3.6019731, + "current_observed_min_A": -4.001661181818181, + "current_observed_max_A": 6.003691909090908, + "temperature_observed_min_C": 30.62336452414511, + "temperature_observed_max_C": 39.39422198187444, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.000300000014249, + "sample_dt_max_s": 1805003.0354, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C21_CYCLING.json b/tests/CLO_B4C21_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..ce37baa145800b19267cd0a1bc65a2cba3735c57 --- /dev/null +++ b/tests/CLO_B4C21_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C21_CYCLING", + "cell_id": "CLO_B4C21", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 4.8-5.2-5.2-4.16. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 774, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 734817, + "duration_s": 2409423.8531999975, + "voltage_observed_min_V": 1.9970284, + "voltage_observed_max_V": 3.6038303, + "current_observed_min_A": -4.002557272727272, + "current_observed_max_A": 5.2135918181818175, + "temperature_observed_min_C": 29.48479174699613, + "temperature_observed_max_C": 32.851973286404565, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.002200000104494, + "sample_dt_max_s": 2408237.8105, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C22_CYCLING.json b/tests/CLO_B4C22_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..419b20b5163c6ee9d341e5b2f8629209c4cb1333 --- /dev/null +++ b/tests/CLO_B4C22_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C22_CYCLING", + "cell_id": "CLO_B4C22", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 8-6-4.8-3. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 672, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 585384, + "duration_s": 1896772.4932000004, + "voltage_observed_min_V": 1.9962859, + "voltage_observed_max_V": 3.6038251, + "current_observed_min_A": -4.001964636363636, + "current_observed_max_A": 8.009730272727273, + "temperature_observed_min_C": 30.609194, + "temperature_observed_max_C": 42.55387016100679, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.002499999944121, + "sample_dt_max_s": 1804999.7559, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C23_CYCLING.json b/tests/CLO_B4C23_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..07026bd79af23e9bd3318b531a30c79b024f4e62 --- /dev/null +++ b/tests/CLO_B4C23_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C23_CYCLING", + "cell_id": "CLO_B4C23", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 6-5.6-4.4-3.834. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 1039, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 799366, + "duration_s": 2645977.3012000048, + "voltage_observed_min_V": 1.9969707, + "voltage_observed_max_V": 3.6001973, + "current_observed_min_A": -4.001930818181818, + "current_observed_max_A": 6.013967363636363, + "temperature_observed_min_C": 30.3049964685604, + "temperature_observed_max_C": 38.283739327493905, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.002999999909662, + "sample_dt_max_s": 2638766.5579000004, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C24_CYCLING.json b/tests/CLO_B4C24_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..cb3bc6a085644934096125a4fb599748638eccd4 --- /dev/null +++ b/tests/CLO_B4C24_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C24_CYCLING", + "cell_id": "CLO_B4C24", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 4.4-5.6-5.2-4.252. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 989, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 849298, + "duration_s": 2644840.160600005, + "voltage_observed_min_V": 1.9964595, + "voltage_observed_max_V": 3.6040187, + "current_observed_min_A": -4.002031454545454, + "current_observed_max_A": 5.608159818181818, + "temperature_observed_min_C": 30.05113353862605, + "temperature_observed_max_C": 36.96494222123118, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.0010999999940395, + "sample_dt_max_s": 2638766.6996, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C25_CYCLING.json b/tests/CLO_B4C25_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..e0e19540602a1ee9770a07aa76e8a8b0fb803fb2 --- /dev/null +++ b/tests/CLO_B4C25_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C25_CYCLING", + "cell_id": "CLO_B4C25", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 8-7-5.2-2.68. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 454, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 497384, + "duration_s": 1539689.2964999995, + "voltage_observed_min_V": 1.9964089, + "voltage_observed_max_V": 3.6038785, + "current_observed_min_A": -4.000780818181818, + "current_observed_max_A": 8.010354454545453, + "temperature_observed_min_C": 30.244255397732747, + "temperature_observed_max_C": 34.99901918436782, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.0010999999940395, + "sample_dt_max_s": 1469719.0425, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C26_CYCLING.json b/tests/CLO_B4C26_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..9fc5e9305dd222b419fdaaf2ea9a9b07d3e57b25 --- /dev/null +++ b/tests/CLO_B4C26_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C26_CYCLING", + "cell_id": "CLO_B4C26", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 8-7-5.2-2.68. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 477, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 490659, + "duration_s": 1540717.744900001, + "voltage_observed_min_V": 1.9955111, + "voltage_observed_max_V": 3.6036444, + "current_observed_min_A": -4.001447909090909, + "current_observed_max_A": 8.076553363636362, + "temperature_observed_min_C": 30.599693, + "temperature_observed_max_C": 40.069751248366536, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.001700000022538, + "sample_dt_max_s": 1469720.1743, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C27_CYCLING.json b/tests/CLO_B4C27_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..7821e8837c571948f63690a365e3c0f0ff207615 --- /dev/null +++ b/tests/CLO_B4C27_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C27_CYCLING", + "cell_id": "CLO_B4C27", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 8-6-4.8-3. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 501, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 459703, + "duration_s": 1540461.821299999, + "voltage_observed_min_V": 1.9963222, + "voltage_observed_max_V": 3.6031842, + "current_observed_min_A": -4.001039636363636, + "current_observed_max_A": 8.00800327272727, + "temperature_observed_min_C": 30.283255102998904, + "temperature_observed_max_C": 33.40713816001436, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.003999999957159, + "sample_dt_max_s": 1469719.9574, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C28_CYCLING.json b/tests/CLO_B4C28_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..e1234675a28b68b0d2f2a83dd055fd6a5e53f45f --- /dev/null +++ b/tests/CLO_B4C28_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C28_CYCLING", + "cell_id": "CLO_B4C28", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 6-5.6-4.4-3.834. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 829, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 702476, + "duration_s": 2409475.0075000003, + "voltage_observed_min_V": 1.9965405, + "voltage_observed_max_V": 3.6018128, + "current_observed_min_A": -4.001615272727273, + "current_observed_max_A": 6.013960363636363, + "temperature_observed_min_C": 30.328297, + "temperature_observed_max_C": 35.360762573516205, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.003000000026077, + "sample_dt_max_s": 2408179.6373, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C29_CYCLING.json b/tests/CLO_B4C29_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..0bd5d621e513a494ba119323d325bca767091552 --- /dev/null +++ b/tests/CLO_B4C29_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C29_CYCLING", + "cell_id": "CLO_B4C29", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 5.2-5.2-4.8-4.16. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 888, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 748807, + "duration_s": 2510920.3351000044, + "voltage_observed_min_V": 1.9950461, + "voltage_observed_max_V": 3.6014953, + "current_observed_min_A": -4.002711090909091, + "current_observed_max_A": 5.210994363636363, + "temperature_observed_min_C": 30.694842729224398, + "temperature_observed_max_C": 40.850673286888025, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.002399999997579, + "sample_dt_max_s": 2408179.4879, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C2_CYCLING.json b/tests/CLO_B4C2_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..b3b37ed2b2ebb8199aca57ab50e8c65a8c17c348 --- /dev/null +++ b/tests/CLO_B4C2_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C2_CYCLING", + "cell_id": "CLO_B4C2", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 3.6-6-5.6-4.755. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 743, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 600601, + "duration_s": 1897484.4767000019, + "voltage_observed_min_V": 1.9959044, + "voltage_observed_max_V": 3.6020846, + "current_observed_min_A": -4.010972090909091, + "current_observed_max_A": 6.0993333636363625, + "temperature_observed_min_C": 30.465247463787488, + "temperature_observed_max_C": 44.709492, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.001599999843165, + "sample_dt_max_s": 1805072.4484, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C30_CYCLING.json b/tests/CLO_B4C30_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..0ce3df205876c134d1166ff34e712857a0121813 --- /dev/null +++ b/tests/CLO_B4C30_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C30_CYCLING", + "cell_id": "CLO_B4C30", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 3.6-6-5.6-4.755. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 616, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 610835, + "duration_s": 1896352.7234000014, + "voltage_observed_min_V": 1.9966321, + "voltage_observed_max_V": 3.603642, + "current_observed_min_A": -4.001122363636363, + "current_observed_max_A": 6.010749090909091, + "temperature_observed_min_C": 29.976402, + "temperature_observed_max_C": 34.243400440442656, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.000799999921583, + "sample_dt_max_s": 1804992.8233, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C31_CYCLING.json b/tests/CLO_B4C31_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..2d430c0375c74068b509eade4121632a4154f068 --- /dev/null +++ b/tests/CLO_B4C31_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C31_CYCLING", + "cell_id": "CLO_B4C31", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 8-6-4.8-3. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 560, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 777995, + "duration_s": 2256897.351600003, + "voltage_observed_min_V": 1.9413867, + "voltage_observed_max_V": 3.6039243, + "current_observed_min_A": -4.001416272727273, + "current_observed_max_A": 8.015268454545454, + "temperature_observed_min_C": 29.467106, + "temperature_observed_max_C": 33.307426, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 3.3285000000614673, + "sample_dt_max_s": 2197066.0447, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C32_CYCLING.json b/tests/CLO_B4C32_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..9de84cace74a98c282a7376bb9fc89cdc69c0040 --- /dev/null +++ b/tests/CLO_B4C32_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C32_CYCLING", + "cell_id": "CLO_B4C32", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 7-4.8-4.8-3.652. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 755, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 670194, + "duration_s": 2255851.485600002, + "voltage_observed_min_V": 1.9968424, + "voltage_observed_max_V": 3.6021452, + "current_observed_min_A": -4.004428636363635, + "current_observed_max_A": 7.010976636363636, + "temperature_observed_min_C": 29.674244, + "temperature_observed_max_C": 33.86035849536012, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.003099999972619, + "sample_dt_max_s": 2197118.7921, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C33_CYCLING.json b/tests/CLO_B4C33_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..30e5179c478d1729da145a26247c9a5959bb194f --- /dev/null +++ b/tests/CLO_B4C33_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C33_CYCLING", + "cell_id": "CLO_B4C33", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 8-7-5.2-2.68. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 506, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 438178, + "duration_s": 1540730.239400002, + "voltage_observed_min_V": 1.9961038, + "voltage_observed_max_V": 3.6032805, + "current_observed_min_A": -4.001562363636363, + "current_observed_max_A": 8.017064909090907, + "temperature_observed_min_C": 30.37178444532631, + "temperature_observed_max_C": 40.799202, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.00559999991674, + "sample_dt_max_s": 1469716.4143, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C34_CYCLING.json b/tests/CLO_B4C34_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..d5cb000dbf62fed1243614ef1eb5d476ace4c162 --- /dev/null +++ b/tests/CLO_B4C34_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C34_CYCLING", + "cell_id": "CLO_B4C34", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 5.2-5.2-4.8-4.16. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 892, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 761483, + "duration_s": 2409701.848499998, + "voltage_observed_min_V": 1.9958963, + "voltage_observed_max_V": 3.6015787, + "current_observed_min_A": -4.005277818181818, + "current_observed_max_A": 5.223867272727273, + "temperature_observed_min_C": 30.023989, + "temperature_observed_max_C": 34.956468406259994, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.0019000000320375, + "sample_dt_max_s": 2408068.939, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C35_CYCLING.json b/tests/CLO_B4C35_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..cc657db52d85b415965d4235b5cd39bfdb089c80 --- /dev/null +++ b/tests/CLO_B4C35_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C35_CYCLING", + "cell_id": "CLO_B4C35", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 4.8-5.2-5.2-4.16. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 1082, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 843098, + "duration_s": 2830490.221699997, + "voltage_observed_min_V": 1.9932542, + "voltage_observed_max_V": 3.6021304, + "current_observed_min_A": -4.002895818181818, + "current_observed_max_A": 5.217521, + "temperature_observed_min_C": 30.187782005316944, + "temperature_observed_max_C": 35.634529, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.002199999988079, + "sample_dt_max_s": 2638645.2056, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C36_CYCLING.json b/tests/CLO_B4C36_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..5d752b2d9402f4c9d5d547ba81ced5eff40d6c2d --- /dev/null +++ b/tests/CLO_B4C36_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C36_CYCLING", + "cell_id": "CLO_B4C36", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 8-7-5.2-2.68. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 600, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 611385, + "duration_s": 1897495.5802000016, + "voltage_observed_min_V": 1.9965086, + "voltage_observed_max_V": 3.6045532, + "current_observed_min_A": -4.001887454545454, + "current_observed_max_A": 8.008703727272728, + "temperature_observed_min_C": 30.26116895158737, + "temperature_observed_max_C": 36.19424321937645, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.001300000119954, + "sample_dt_max_s": 1804888.6300000001, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C37_CYCLING.json b/tests/CLO_B4C37_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..8a2bb4d7d84c2a42ff411956ea2a525ef14098c9 --- /dev/null +++ b/tests/CLO_B4C37_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C37_CYCLING", + "cell_id": "CLO_B4C37", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 7-4.8-4.8-3.652. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 864, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 771275, + "duration_s": 2409729.8464000067, + "voltage_observed_min_V": 1.9961886, + "voltage_observed_max_V": 3.6025567, + "current_observed_min_A": -4.0021961818181815, + "current_observed_max_A": 7.020159636363636, + "temperature_observed_min_C": 30.510013368914954, + "temperature_observed_max_C": 38.61993, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.001599999843165, + "sample_dt_max_s": 2408070.8022, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C38_CYCLING.json b/tests/CLO_B4C38_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..da44ef0cb7c971465692eeccb891fd4599798e77 --- /dev/null +++ b/tests/CLO_B4C38_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C38_CYCLING", + "cell_id": "CLO_B4C38", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 5.2-5.2-4.8-4.16. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 1166, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 934289, + "duration_s": 3117743.9245000035, + "voltage_observed_min_V": 1.9961243, + "voltage_observed_max_V": 3.600688, + "current_observed_min_A": -4.002701999999999, + "current_observed_max_A": 5.220919545454545, + "temperature_observed_min_C": 30.032038, + "temperature_observed_max_C": 34.160816, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.001800000201911, + "sample_dt_max_s": 2638646.0801, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C39_CYCLING.json b/tests/CLO_B4C39_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..e00a78ee2f11dd49b0e1fbbe7672f591c67baf30 --- /dev/null +++ b/tests/CLO_B4C39_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C39_CYCLING", + "cell_id": "CLO_B4C39", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 8-4.4-4.4-3.94. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 739, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 578735, + "duration_s": 1896811.5984000007, + "voltage_observed_min_V": 1.9964337, + "voltage_observed_max_V": 3.6006722, + "current_observed_min_A": -4.00211809090909, + "current_observed_max_A": 8.01214390909091, + "temperature_observed_min_C": 30.118124304994254, + "temperature_observed_max_C": 42.58729551074443, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.003100000089034, + "sample_dt_max_s": 1804889.8202, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C3_CYCLING.json b/tests/CLO_B4C3_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..458f75c703be7f4ddc4ebb068a443eedefae073a --- /dev/null +++ b/tests/CLO_B4C3_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C3_CYCLING", + "cell_id": "CLO_B4C3", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 8-4.4-4.4-3.94. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 778, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 740568, + "duration_s": 2256013.8464, + "voltage_observed_min_V": 1.9958987, + "voltage_observed_max_V": 3.602551, + "current_observed_min_A": -4.007651545454546, + "current_observed_max_A": 8.137574636363636, + "temperature_observed_min_C": 30.641024, + "temperature_observed_max_C": 44.340336, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.000800000037998, + "sample_dt_max_s": 2197144.4631000003, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C40_CYCLING.json b/tests/CLO_B4C40_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..28dae73ba180f252dee51badf10aa858d505537b --- /dev/null +++ b/tests/CLO_B4C40_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C40_CYCLING", + "cell_id": "CLO_B4C40", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 4.4-5.6-5.2-4.252. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 1089, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 848094, + "duration_s": 2876629.420300001, + "voltage_observed_min_V": 1.9959836, + "voltage_observed_max_V": 3.6004195, + "current_observed_min_A": -4.003294636363636, + "current_observed_max_A": 5.608794454545454, + "temperature_observed_min_C": 29.530758377519597, + "temperature_observed_max_C": 34.266092654453594, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.001699999906123, + "sample_dt_max_s": 2201199.6010000003, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C41_CYCLING.json b/tests/CLO_B4C41_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..09620564ced3f41d571e72e705d2f18c74555ed4 --- /dev/null +++ b/tests/CLO_B4C41_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C41_CYCLING", + "cell_id": "CLO_B4C41", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 5.2-5.2-4.8-4.16. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 837, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 834144, + "duration_s": 2644062.2416000073, + "voltage_observed_min_V": 1.9956794, + "voltage_observed_max_V": 3.6033645, + "current_observed_min_A": -4.008384636363636, + "current_observed_max_A": 5.254773181818182, + "temperature_observed_min_C": 29.359445049997007, + "temperature_observed_max_C": 41.141438, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.0015000000130385, + "sample_dt_max_s": 2638819.3713, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C42_CYCLING.json b/tests/CLO_B4C42_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..574be05834dbf53f6e157868afb286821bbec566 --- /dev/null +++ b/tests/CLO_B4C42_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C42_CYCLING", + "cell_id": "CLO_B4C42", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 5.2-5.2-4.8-4.16. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 775, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 768611, + "duration_s": 2409370.4763999935, + "voltage_observed_min_V": 1.9954734, + "voltage_observed_max_V": 3.6031995, + "current_observed_min_A": -4.002182272727272, + "current_observed_max_A": 5.336716363636364, + "temperature_observed_min_C": 29.942446, + "temperature_observed_max_C": 43.266361, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.001300000119954, + "sample_dt_max_s": 2408237.7545, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C43_CYCLING.json b/tests/CLO_B4C43_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..c4da00117cac45aa326fa86b3aec65f1c366e264 --- /dev/null +++ b/tests/CLO_B4C43_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C43_CYCLING", + "cell_id": "CLO_B4C43", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 4.4-5.6-5.2-4.252. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 751, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 781367, + "duration_s": 2444638.2804000014, + "voltage_observed_min_V": 1.9956594, + "voltage_observed_max_V": 3.6049104, + "current_observed_min_A": -4.002207818181819, + "current_observed_max_A": 5.606193545454545, + "temperature_observed_min_C": 29.159082828907263, + "temperature_observed_max_C": 33.78723419569476, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.00089999998454, + "sample_dt_max_s": 2408236.2631, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C44_CYCLING.json b/tests/CLO_B4C44_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..177e1a5f8b95d1001378ba4a05a1990455785725 --- /dev/null +++ b/tests/CLO_B4C44_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C44_CYCLING", + "cell_id": "CLO_B4C44", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 6-5.6-4.4-3.834. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 943, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 828007, + "duration_s": 2645327.5986999995, + "voltage_observed_min_V": 1.9965553, + "voltage_observed_max_V": 3.6030235, + "current_observed_min_A": -4.001193909090909, + "current_observed_max_A": 6.016575181818181, + "temperature_observed_min_C": 29.900755, + "temperature_observed_max_C": 40.579613, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.001599999843165, + "sample_dt_max_s": 2638849.6111000003, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C4_CYCLING.json b/tests/CLO_B4C4_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..fbfe62735f268cce8ec2fc2284cde5bcefc8cfda --- /dev/null +++ b/tests/CLO_B4C4_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C4_CYCLING", + "cell_id": "CLO_B4C4", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 8-6-4.8-3. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 657, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 778827, + "duration_s": 2256447.1676000063, + "voltage_observed_min_V": 1.9959559, + "voltage_observed_max_V": 3.604876, + "current_observed_min_A": -4.005712181818182, + "current_observed_max_A": 8.013406272727272, + "temperature_observed_min_C": 30.444103, + "temperature_observed_max_C": 41.434898, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 3.395950000063749, + "sample_dt_max_s": 2197144.6925, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C5_CYCLING.json b/tests/CLO_B4C5_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..f5c96b505b822bdd7ead5094f465275987147755 --- /dev/null +++ b/tests/CLO_B4C5_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C5_CYCLING", + "cell_id": "CLO_B4C5", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 4.4-5.6-5.2-4.252. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 914, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 802007, + "duration_s": 2484462.4966999996, + "voltage_observed_min_V": 1.9951553, + "voltage_observed_max_V": 3.6032486, + "current_observed_min_A": -4.000949, + "current_observed_max_A": 5.613073909090909, + "temperature_observed_min_C": 29.52895982850237, + "temperature_observed_max_C": 41.172146, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.000900000100955, + "sample_dt_max_s": 2408263.4718, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C6_CYCLING.json b/tests/CLO_B4C6_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..3e047877790b50ad452cc25210edc261bd597f1f --- /dev/null +++ b/tests/CLO_B4C6_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C6_CYCLING", + "cell_id": "CLO_B4C6", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 8-4.4-4.4-3.94. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 707, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 584101, + "duration_s": 1897141.002099999, + "voltage_observed_min_V": 1.9953732, + "voltage_observed_max_V": 3.6017871, + "current_observed_min_A": -4.001736636363636, + "current_observed_max_A": 8.01196009090909, + "temperature_observed_min_C": 30.40218913724009, + "temperature_observed_max_C": 42.19384575221856, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.002600000007078, + "sample_dt_max_s": 1805071.1613, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C7_CYCLING.json b/tests/CLO_B4C7_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..81263d58eab5b0c2775ccc006a056c229792eb16 --- /dev/null +++ b/tests/CLO_B4C7_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C7_CYCLING", + "cell_id": "CLO_B4C7", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 8-6-4.8-3. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 530, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 444914, + "duration_s": 1539548.9132000005, + "voltage_observed_min_V": 1.9963055, + "voltage_observed_max_V": 3.6016731, + "current_observed_min_A": -4.002740636363636, + "current_observed_max_A": 8.028151727272727, + "temperature_observed_min_C": 30.440786, + "temperature_observed_max_C": 37.18582106449682, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.005400000023656, + "sample_dt_max_s": 1469730.7023, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C8_CYCLING.json b/tests/CLO_B4C8_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..93b9601ee89b6f46376e484b7b651deab26d5015 --- /dev/null +++ b/tests/CLO_B4C8_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C8_CYCLING", + "cell_id": "CLO_B4C8", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 4.4-5.6-5.2-4.252. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 678, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 565797, + "duration_s": 1896436.424599999, + "voltage_observed_min_V": 1.9962759, + "voltage_observed_max_V": 3.6017447, + "current_observed_min_A": -4.001547181818181, + "current_observed_max_A": 5.604480363636363, + "temperature_observed_min_C": 30.340754, + "temperature_observed_max_C": 39.111355, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.003899999894202, + "sample_dt_max_s": 1805010.1156, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/CLO_B4C9_CYCLING.json b/tests/CLO_B4C9_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..fcec131f4373aad31a903f462f2f68202d9adc27 --- /dev/null +++ b/tests/CLO_B4C9_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "CLO_B4C9_CYCLING", + "cell_id": "CLO_B4C9", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 4.0, + "protocol_description": "Closed-loop Bayesian-optimized fast-charge aging at 30 degC. Charge policy (BO-selected): 8-7-5.2-2.68. 4C CC-CV discharge. Cycled toward 80% capacity retention (EOL); some cells do not reach EOL within the campaign window.", + "num_cycles": 443, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 485048, + "duration_s": 1539318.2592, + "voltage_observed_min_V": 1.9960766, + "voltage_observed_max_V": 3.6045914, + "current_observed_min_A": -4.001124090909091, + "current_observed_max_A": 8.008735, + "temperature_observed_min_C": 30.462302639691092, + "temperature_observed_max_C": 38.53202050055873, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 5.001700000138953, + "sample_dt_max_s": 1469730.8262999998, + "source_doi": "10.1038/s41586-020-1994-5", + "source_url": "https://data.matr.io/1/projects/5d80e633f405260001c0b60a", + "source_citation": "Attia, P. M., Grover, A., Jin, N., et al. (2020). Closed-loop optimization of fast-charging protocols for batteries with machine learning. Nature 578, 397-402. https://doi.org/10.1038/s41586-020-1994-5", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_1.json b/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_1.json new file mode 100644 index 0000000000000000000000000000000000000000..39239539acae69e17e5d8643a4fcee309d345c04 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_1.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_1", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "capacity_check", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.6223896551724137, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 1.0, + "protocol_description": "1C constant-current discharge capacity check", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 380, + "duration_s": 3774.380996078253, + "voltage_observed_min_V": 2.49948, + "voltage_observed_max_V": 4.0442, + "current_observed_min_A": -2.89982, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 24.98062, + "temperature_observed_max_C": 32.92724, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 9.999996051192284, + "sample_dt_max_s": 10.01099981367588, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_2.json b/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_2.json new file mode 100644 index 0000000000000000000000000000000000000000..583414fe2183c8a381852b83805c41e8d99cd03a --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_2.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_2", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "capacity_check", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.8417379310344828, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 1.0, + "protocol_description": "1C constant-current discharge capacity check", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 374, + "duration_s": 3716.5679924190044, + "voltage_observed_min_V": 2.49948, + "voltage_observed_max_V": 4.0532, + "current_observed_min_A": -2.89982, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 25.61949, + "temperature_observed_max_C": 32.54616, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 9.999996051192284, + "sample_dt_max_s": 10.010004043579102, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_4.json b/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_4.json new file mode 100644 index 0000000000000000000000000000000000000000..68ca5eed752f3cd9d7e896898967bb0e1c0ed4ab --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_4.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_4", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "capacity_check", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.17008620689655163, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 1.0, + "protocol_description": "1C constant-current discharge capacity check", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 335, + "duration_s": 3322.2140058875084, + "voltage_observed_min_V": 2.49948, + "voltage_observed_max_V": 3.95284, + "current_observed_min_A": -2.89982, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 24.57713, + "temperature_observed_max_C": 33.35315, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 9.999996051192284, + "sample_dt_max_s": 10.013001412153244, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_5.json b/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_5.json new file mode 100644 index 0000000000000000000000000000000000000000..b7b616ea8eae6143311f75a45471f2d58c0cf482 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_5.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_5", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "capacity_check", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.9917172413793104, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 1.0, + "protocol_description": "1C constant-current discharge capacity check", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 3200, + "duration_s": 98160.03600172698, + "voltage_observed_min_V": 2.71822, + "voltage_observed_max_V": 3.97343, + "current_observed_min_A": -2.89982, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 24.76767, + "temperature_observed_max_C": 32.51254, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 9.999996051192284, + "sample_dt_max_s": 7521.863003075123, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_6.json b/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_6.json new file mode 100644 index 0000000000000000000000000000000000000000..8149a3863db11a8182d9067ba2b740c45c67980c --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_6.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_6", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "capacity_check", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.9762172413793103, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 1.0, + "protocol_description": "1C constant-current discharge capacity check", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 325, + "duration_s": 3222.9609936475754, + "voltage_observed_min_V": 2.49948, + "voltage_observed_max_V": 3.96313, + "current_observed_min_A": -2.89982, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 24.99183, + "temperature_observed_max_C": 33.56611, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 10.00000610947609, + "sample_dt_max_s": 10.013997182250023, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_Rp.json b/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_Rp.json new file mode 100644 index 0000000000000000000000000000000000000000..2c3360f446442ed567f097d3a15da73e70282610 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_Rp.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_CAP_CHECK_DIS1C_25C_Rp", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "capacity_check", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.9933137931034483, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 1.0, + "protocol_description": "1C constant-current discharge capacity check", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 3200, + "duration_s": 89221.58699892461, + "voltage_observed_min_V": 3.24256, + "voltage_observed_max_V": 4.05513, + "current_observed_min_A": -2.89982, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 25.42895, + "temperature_observed_max_C": 29.37424, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 9.999996051192284, + "sample_dt_max_s": 6455.948004126549, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_OCV_C20_25C.json b/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_OCV_C20_25C.json new file mode 100644 index 0000000000000000000000000000000000000000..8ab46d2a14f60b1ee8efb6e19017d0998540d7be --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_CAP_CHECK_OCV_C20_25C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_CAP_CHECK_OCV_C20_25C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "capacity_check", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.0, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": 0.05, + "protocol_description": "C/20 constant-current OCV characterization (capacity check)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 2453, + "duration_s": 195824.47700500488, + "voltage_observed_min_V": 2.49948, + "voltage_observed_max_V": 4.20007, + "current_observed_min_A": -0.14536, + "current_observed_max_A": 0.14537, + "temperature_observed_min_C": 11.416263, + "temperature_observed_max_C": 26.09024, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 59.99999642372131, + "sample_dt_max_s": 48969.41300332546, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_1.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_1.json new file mode 100644 index 0000000000000000000000000000000000000000..f4057b90562eb79f1e35823c685ef2688c598345 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_1.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_1", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -10.0, + "temperature_C_max": -10.0, + "soc_range_min": 0.29999655172413797, + "soc_range_max": 0.9999827586206896, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 60234, + "duration_s": 6034.534005448222, + "voltage_observed_min_V": 2.49755, + "voltage_observed_max_V": 4.11064, + "current_observed_min_A": -14.36026, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -10.1702428, + "temperature_observed_max_C": 1.3998716999999998, + "sample_dt_min_s": 0.0049989670515060425, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.23500095307827, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_2.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_2.json new file mode 100644 index 0000000000000000000000000000000000000000..5cdff64fe3517bcf4cfb2849948cffffc28f66e2 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_2.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_2", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -10.0, + "temperature_C_max": -10.0, + "soc_range_min": 0.29998620689655164, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 59712, + "duration_s": 5982.340997457504, + "voltage_observed_min_V": 2.4969, + "voltage_observed_max_V": 4.06478, + "current_observed_min_A": -14.19285, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -9.928149999999999, + "temperature_observed_max_C": 0.3357659999999998, + "sample_dt_min_s": 0.0049989670515060425, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.2220056504011154, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_3.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_3.json new file mode 100644 index 0000000000000000000000000000000000000000..bfe9ad0f4069dd6e2fc73ba3e2bd5e3536f13682 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_3.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_3", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -10.0, + "temperature_C_max": -10.0, + "soc_range_min": 0.29998620689655164, + "soc_range_max": 0.9999862068965517, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 56857, + "duration_s": 5696.786994114518, + "voltage_observed_min_V": 2.49497, + "voltage_observed_max_V": 4.11754, + "current_observed_min_A": -13.53792, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -10.158135999999999, + "temperature_observed_max_C": 2.8715124000000003, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.256002649664879, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_4.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_4.json new file mode 100644 index 0000000000000000000000000000000000000000..56b9dd8424368540e901d69ef880c4c2c724221e --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_4.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-10C_4", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -10.0, + "temperature_C_max": -10.0, + "soc_range_min": 0.29999655172413797, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 61102, + "duration_s": 6119.451006129384, + "voltage_observed_min_V": 2.49883, + "voltage_observed_max_V": 4.17287, + "current_observed_min_A": -14.71549, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -10.158135999999999, + "temperature_observed_max_C": -0.08308099999999996, + "sample_dt_min_s": 0.0049989670515060425, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.2360067814588547, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_1.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_1.json new file mode 100644 index 0000000000000000000000000000000000000000..9f36ebe4f748560469b4301c1b2eb9aa72818c44 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_1.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_1", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.3999896551724138, + "soc_range_max": 0.9999827586206896, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 50712, + "duration_s": 5080.106995627284, + "voltage_observed_min_V": 2.49562, + "voltage_observed_max_V": 4.07894, + "current_observed_min_A": -14.80777, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -20.3431684, + "temperature_observed_max_C": -3.1373151999999997, + "sample_dt_min_s": 0.006990507245063782, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.1649952977895737, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_2.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_2.json new file mode 100644 index 0000000000000000000000000000000000000000..d98ab97a9020a045092ae3091d698988a394880d --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_2.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_2", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.3999931034482759, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 50375, + "duration_s": 5046.646002307534, + "voltage_observed_min_V": 2.49755, + "voltage_observed_max_V": 4.04613, + "current_observed_min_A": -15.19484, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -20.331744399999998, + "temperature_observed_max_C": -4.2751708, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.112993970513344, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_3.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_3.json new file mode 100644 index 0000000000000000000000000000000000000000..337d2a17b160d878bdcb937b561cec8464010fa3 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_3.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_3", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.3999931034482759, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 50147, + "duration_s": 5023.740001022816, + "voltage_observed_min_V": 2.49562, + "voltage_observed_max_V": 4.1169, + "current_observed_min_A": -15.40227, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -20.5260952, + "temperature_observed_max_C": -6.538786, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.1590005606412888, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_4.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_4.json new file mode 100644 index 0000000000000000000000000000000000000000..91a92a757f7bf2ad3988761719a7609c60340c1b --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_4.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_4", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.39996896551724137, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 50345, + "duration_s": 5043.403000384569, + "voltage_observed_min_V": 2.48854, + "voltage_observed_max_V": 4.17223, + "current_observed_min_A": -14.89188, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -20.3431684, + "temperature_observed_max_C": -5.1951472, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.132004126906395, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_5.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_5.json new file mode 100644 index 0000000000000000000000000000000000000000..6277fece2de711232d646b6a0594cf154def81c5 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_5.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_5", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.19997931034482763, + "soc_range_max": 0.9999896551724138, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 69365, + "duration_s": 6947.4409930408, + "voltage_observed_min_V": 2.63072, + "voltage_observed_max_V": 4.08923, + "current_observed_min_A": -13.62367, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -19.9316086, + "temperature_observed_max_C": 12.852410333333333, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.2569984197616577, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_6.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_6.json new file mode 100644 index 0000000000000000000000000000000000000000..0ef218d3dc8d4b88b57486387fa93fa5444489c0 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_6.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_6", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.19998965517241374, + "soc_range_max": 0.9999724137931034, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 69545, + "duration_s": 6967.456997931004, + "voltage_observed_min_V": 2.49626, + "voltage_observed_max_V": 4.06864, + "current_observed_min_A": -13.73228, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -19.9316086, + "temperature_observed_max_C": 12.006937, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.1949991583824158, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_7.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_7.json new file mode 100644 index 0000000000000000000000000000000000000000..5519dbf3fbd4b0fe5988fc5cfe8840594d2b929a --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_7.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_7", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.199996551724138, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 60760, + "duration_s": 6088.7860044837, + "voltage_observed_min_V": 2.49047, + "voltage_observed_max_V": 4.12076, + "current_observed_min_A": -14.12099, + "current_observed_max_A": 0.00163, + "temperature_observed_min_C": -20.1373936, + "temperature_observed_max_C": 16.53542733333333, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.1409962326288223, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_8.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_8.json new file mode 100644 index 0000000000000000000000000000000000000000..596fa171c426b99eab41d5e6ac22806fb932b138 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_8.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_-20C_8", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.1999931034482758, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 75832, + "duration_s": 7595.800994709134, + "voltage_observed_min_V": 2.49562, + "voltage_observed_max_V": 4.17158, + "current_observed_min_A": -13.63755, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -19.9316086, + "temperature_observed_max_C": 12.863983666666666, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.1239977329969406, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_1.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_1.json new file mode 100644 index 0000000000000000000000000000000000000000..24b5bc097b6d7fdbe3a403a103aa6be5587326bb --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_1.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_1", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 0.0, + "temperature_C_max": 0.0, + "soc_range_min": 0.09999999999999998, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 88007, + "duration_s": 8815.586995705962, + "voltage_observed_min_V": 2.46859, + "voltage_observed_max_V": 4.14263, + "current_observed_min_A": -12.56288, + "current_observed_max_A": 0.00163, + "temperature_observed_min_C": 0.3244539999999996, + "temperature_observed_max_C": 8.1580847, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.2619973868131638, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_2.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_2.json new file mode 100644 index 0000000000000000000000000000000000000000..515606f8af71a96dcd1ba2ec145d6e59742a3d70 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_2.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_2", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 0.0, + "temperature_C_max": 0.0, + "soc_range_min": 0.09999999999999998, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 83732, + "duration_s": 8388.674998283386, + "voltage_observed_min_V": 2.28588, + "voltage_observed_max_V": 4.12204, + "current_observed_min_A": -12.43222, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 0.3357659999999998, + "temperature_observed_max_C": 9.227301333333333, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.249997854232788, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_3.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_3.json new file mode 100644 index 0000000000000000000000000000000000000000..5a18569ff8427f1bbc0228c1f63cca24f2bacb4e --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_3.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_3", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 0.0, + "temperature_C_max": 0.0, + "soc_range_min": 0.1999586206896551, + "soc_range_max": 0.9999862068965517, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 62466, + "duration_s": 6259.332997351885, + "voltage_observed_min_V": 2.49369, + "voltage_observed_max_V": 4.13813, + "current_observed_min_A": -12.87074, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 0.9697026000000002, + "temperature_observed_max_C": 12.667092333333333, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.1860070526599884, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_4.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_4.json new file mode 100644 index 0000000000000000000000000000000000000000..d3bf9f5260cecb1b5391c868266fc52b136fd80e --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_4.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_0C_4", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 0.0, + "temperature_C_max": 0.0, + "soc_range_min": 0.19995517241379313, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 77052, + "duration_s": 7717.784994095564, + "voltage_observed_min_V": 2.48854, + "voltage_observed_max_V": 4.1748, + "current_observed_min_A": -12.87238, + "current_observed_max_A": 0.00163, + "temperature_observed_min_C": 0.743301, + "temperature_observed_max_C": 7.3203907, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.178000658750534, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_1.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_1.json new file mode 100644 index 0000000000000000000000000000000000000000..7ac967040c7f7afd180677a744bb6c7448a4227c --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_1.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_1", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.2444827586206897, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 93794, + "duration_s": 9395.735005661845, + "voltage_observed_min_V": 2.50462, + "voltage_observed_max_V": 4.27277, + "current_observed_min_A": -19.73852, + "current_observed_max_A": 9.23157, + "temperature_observed_min_C": 10.559206, + "temperature_observed_max_C": 15.296171333333334, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09899362921714783, + "sample_dt_max_s": 2.3650042712688446, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_2.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_2.json new file mode 100644 index 0000000000000000000000000000000000000000..721faa75e0a8d9b49447209bcf3b4b9ddfd37362 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_2.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_2", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.26505862068965513, + "soc_range_max": 0.9999724137931034, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 81096, + "duration_s": 8123.496995866299, + "voltage_observed_min_V": 2.50462, + "voltage_observed_max_V": 4.30494, + "current_observed_min_A": -21.06144, + "current_observed_max_A": 9.43002, + "temperature_observed_min_C": 10.524465333333334, + "temperature_observed_max_C": 17.033442333333333, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09899362921714783, + "sample_dt_max_s": 2.112993970513344, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_3.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_3.json new file mode 100644 index 0000000000000000000000000000000000000000..3cfc275bc6fda223bcbd6d3b1bfa92db9e2ae954 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_3.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_3", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.12392758620689648, + "soc_range_max": 0.9999862068965517, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 100796, + "duration_s": 10097.820998355746, + "voltage_observed_min_V": 2.50784, + "voltage_observed_max_V": 4.211, + "current_observed_min_A": -18.86228, + "current_observed_max_A": 9.39408, + "temperature_observed_min_C": 10.524465333333334, + "temperature_observed_max_C": 15.956337000000001, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09899362921714783, + "sample_dt_max_s": 2.1870028227567673, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_4.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_4.json new file mode 100644 index 0000000000000000000000000000000000000000..9883c3b66bfee641ce00353efec3ff5f33a38869 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_4.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_4", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.14284827586206894, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 98987, + "duration_s": 9917.012996971607, + "voltage_observed_min_V": 2.50269, + "voltage_observed_max_V": 4.22645, + "current_observed_min_A": -19.98922, + "current_observed_max_A": 9.54353, + "temperature_observed_min_C": 10.559206, + "temperature_observed_max_C": 16.396444, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09899362921714783, + "sample_dt_max_s": 2.2209998220205307, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_5.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_5.json new file mode 100644 index 0000000000000000000000000000000000000000..57adbd5949f7608db7174c8c64840130ee6686c8 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_5.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_5", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.199996551724138, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 98001, + "duration_s": 9818.329997733235, + "voltage_observed_min_V": 2.69892, + "voltage_observed_max_V": 4.24832, + "current_observed_min_A": -12.74172, + "current_observed_max_A": 9.27077, + "temperature_observed_min_C": 10.084347999999999, + "temperature_observed_max_C": 27.28951, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.10000951588153839, + "sample_dt_max_s": 2.1359972655773163, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_6.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_6.json new file mode 100644 index 0000000000000000000000000000000000000000..bf997a8f5dfbe30b15a3e2a621063b9cc07e1935 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_6.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_6", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.1999827586206896, + "soc_range_max": 0.9999758620689655, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 98166, + "duration_s": 9834.960997849703, + "voltage_observed_min_V": 2.94983, + "voltage_observed_max_V": 4.202, + "current_observed_min_A": -12.72212, + "current_observed_max_A": 9.2332, + "temperature_observed_min_C": 9.875883333333334, + "temperature_observed_max_C": 25.18237, + "sample_dt_min_s": 0.011003762483596802, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.235996723175049, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_7.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_7.json new file mode 100644 index 0000000000000000000000000000000000000000..001db16b5aeeade3de444b0acaf89ef370dd4857 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_7.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_7", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.199996551724138, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 98079, + "duration_s": 9826.276997476816, + "voltage_observed_min_V": 2.97428, + "voltage_observed_max_V": 4.20779, + "current_observed_min_A": -12.71967, + "current_observed_max_A": 9.52883, + "temperature_observed_min_C": 10.084347999999999, + "temperature_observed_max_C": 23.936202, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.168998494744301, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_8.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_8.json new file mode 100644 index 0000000000000000000000000000000000000000..3a8af1780be1ccdc250c1a1b5bab663d64133db0 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_8.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_10C_8", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.19998965517241374, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 96444, + "duration_s": 9662.699007242918, + "voltage_observed_min_V": 2.90866, + "voltage_observed_max_V": 4.22259, + "current_observed_min_A": -13.32152, + "current_observed_max_A": 9.09927, + "temperature_observed_min_C": 10.084347999999999, + "temperature_observed_max_C": 25.39533, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.146005257964134, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_1.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_1.json new file mode 100644 index 0000000000000000000000000000000000000000..3dba6eabfb153c60798ea22b4d1fe9cd2cb95b8b --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_1.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_1", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.07049310344827586, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 109641, + "duration_s": 10983.911997824907, + "voltage_observed_min_V": 2.50205, + "voltage_observed_max_V": 4.21744, + "current_observed_min_A": -19.43637, + "current_observed_max_A": 10.70564, + "temperature_observed_min_C": 21.770407666666667, + "temperature_observed_max_C": 30.02432, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.348991483449936, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_2.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_2.json new file mode 100644 index 0000000000000000000000000000000000000000..0c0c96432f70a55f62f69d2c79cc1f6addbd4da6 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_2.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_2", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.06503448275862078, + "soc_range_max": 0.9999724137931034, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 111268, + "duration_s": 11147.045995295048, + "voltage_observed_min_V": 2.50527, + "voltage_observed_max_V": 4.20586, + "current_observed_min_A": -18.20817, + "current_observed_max_A": 9.8702, + "temperature_observed_min_C": 25.61949, + "temperature_observed_max_C": 29.5984, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.10099522769451141, + "sample_dt_max_s": 2.2590000182390213, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_3.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_3.json new file mode 100644 index 0000000000000000000000000000000000000000..9ac27ff950357a768257b2afe21b8dbfded52170 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_3.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_3", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.1274793103448275, + "soc_range_max": 0.9999862068965517, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 102441, + "duration_s": 10264.102001488209, + "voltage_observed_min_V": 2.50848, + "voltage_observed_max_V": 4.20907, + "current_observed_min_A": -17.23313, + "current_observed_max_A": 9.51822, + "temperature_observed_min_C": 25.42895, + "temperature_observed_max_C": 29.40786, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.10099522769451141, + "sample_dt_max_s": 2.2999975830316544, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_4.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_4.json new file mode 100644 index 0000000000000000000000000000000000000000..e2f6676bef2a38b5214c1dc00b5eb463911cbd6f --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_4.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_CYCLE_25C_4", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.03511379310344831, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Repeated charge/discharge under drive-cycle loading (Kollmeyer cycling)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 120863, + "duration_s": 12106.507005169988, + "voltage_observed_min_V": 2.50848, + "voltage_observed_max_V": 4.22001, + "current_observed_min_A": -17.85213, + "current_observed_max_A": 10.05885, + "temperature_observed_min_C": 25.41774, + "temperature_observed_max_C": 29.19491, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.1029960364103317, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_-10C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_-10C.json new file mode 100644 index 0000000000000000000000000000000000000000..fe281d2ba927559b992325d720da4c17038fcf06 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_-10C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_-10C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -10.0, + "temperature_C_max": -10.0, + "soc_range_min": 0.2999793103448275, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Highway Fuel Economy Test (HWFET) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 51385, + "duration_s": 12279.868999868631, + "voltage_observed_min_V": 2.6912, + "voltage_observed_max_V": 4.1827, + "current_observed_min_A": -5.39296, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -10.1702428, + "temperature_observed_max_C": 16.998691333333333, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 60.00399962067604, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_-20C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_-20C.json new file mode 100644 index 0000000000000000000000000000000000000000..0516b634cb2b25d0dd7b50a0ce118f278abb76e9 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_-20C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_-20C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.4, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Highway Fuel Economy Test (HWFET) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 42313, + "duration_s": 11370.83100154996, + "voltage_observed_min_V": 2.49948, + "voltage_observed_max_V": 4.18077, + "current_observed_min_A": -5.83883, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -20.3431684, + "temperature_observed_max_C": 16.118477333333335, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 60.00800281763077, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_0C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_0C.json new file mode 100644 index 0000000000000000000000000000000000000000..47700042ff3b7db99163be4f9dee2600b34cc9cd --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_0C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_0C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 0.0, + "temperature_C_max": 0.0, + "soc_range_min": 0.19998620689655167, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Highway Fuel Economy Test (HWFET) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 59854, + "duration_s": 5998.209006339312, + "voltage_observed_min_V": 2.55094, + "voltage_observed_max_V": 4.1748, + "current_observed_min_A": -6.03482, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 0.5282113999999996, + "temperature_observed_max_C": 5.611026300000001, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.1390046924352646, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_10C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_10C.json new file mode 100644 index 0000000000000000000000000000000000000000..dd664171d79992cdf2ff05849062c191e7c217b5 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_10C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_10C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.12117931034482765, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Highway Fuel Economy Test (HWFET) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 70406, + "duration_s": 10591.391002759337, + "voltage_observed_min_V": 2.50977, + "voltage_observed_max_V": 4.21487, + "current_observed_min_A": -5.34233, + "current_observed_max_A": 5.41285, + "temperature_observed_min_C": 10.559206, + "temperature_observed_max_C": 23.727726999999998, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09899362921714783, + "sample_dt_max_s": 60.00899858772755, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_25C_1.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_25C_1.json new file mode 100644 index 0000000000000000000000000000000000000000..0c0de3840379dedaffb1746ff1939f98386c9747 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_25C_1.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_25C_1", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.0661793103448276, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Highway Fuel Economy Test (HWFET) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 75955, + "duration_s": 7612.046993896365, + "voltage_observed_min_V": 2.50205, + "voltage_observed_max_V": 4.20843, + "current_observed_min_A": -5.53832, + "current_observed_max_A": 5.5427, + "temperature_observed_min_C": 25.61949, + "temperature_observed_max_C": 29.83378, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.10099522769451141, + "sample_dt_max_s": 2.2890038788318634, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_25C_2.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_25C_2.json new file mode 100644 index 0000000000000000000000000000000000000000..0f65b09a482235148d10f6fa379a4c602dce8a72 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_25C_2.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_HWFET_25C_2", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.06791724137931032, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Highway Fuel Economy Test (HWFET) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 75811, + "duration_s": 7597.359998524189, + "voltage_observed_min_V": 2.50334, + "voltage_observed_max_V": 4.2065, + "current_observed_min_A": -5.59058, + "current_observed_max_A": 5.44143, + "temperature_observed_min_C": 25.60828, + "temperature_observed_max_C": 29.82257, + "sample_dt_min_s": 0.012995302677154541, + "sample_dt_median_s": 0.09899362921714783, + "sample_dt_max_s": 2.199002355337143, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_-10C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_-10C.json new file mode 100644 index 0000000000000000000000000000000000000000..3a5a258c7eef8385fdca4a8852a5b96df2cb305e --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_-10C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_-10C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -10.0, + "temperature_C_max": -10.0, + "soc_range_min": 0.29999655172413797, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "LA92 (Unified / California) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 69568, + "duration_s": 14093.951998651028, + "voltage_observed_min_V": 2.49755, + "voltage_observed_max_V": 4.18205, + "current_observed_min_A": -10.20856, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -10.158135999999999, + "temperature_observed_max_C": 17.010275, + "sample_dt_min_s": 0.007996335625648499, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 60.005005449056625, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_-20C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_-20C.json new file mode 100644 index 0000000000000000000000000000000000000000..f7d4986f54aec50a27fe9be737219925b324bb10 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_-20C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_-20C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.39998275862068955, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "LA92 (Unified / California) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 57146, + "duration_s": 12849.694997817278, + "voltage_observed_min_V": 2.49755, + "voltage_observed_max_V": 4.18077, + "current_observed_min_A": -10.53766, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -20.1145252, + "temperature_observed_max_C": 16.106893666666664, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 60.005005449056625, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_0C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_0C.json new file mode 100644 index 0000000000000000000000000000000000000000..388820a7b3120de6b2b26b928d517308dac977ef --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_0C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_0C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 0.0, + "temperature_C_max": 0.0, + "soc_range_min": 0.1999931034482758, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "LA92 (Unified / California) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 82666, + "duration_s": 15405.804006010294, + "voltage_observed_min_V": 2.52135, + "voltage_observed_max_V": 4.1827, + "current_observed_min_A": -9.43931, + "current_observed_max_A": 0.00163, + "temperature_observed_min_C": 0.30180980000000024, + "temperature_observed_max_C": 18.284282, + "sample_dt_min_s": 0.007996335625648499, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 60.00700704753399, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_10C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_10C.json new file mode 100644 index 0000000000000000000000000000000000000000..3298bb47566bdde4c5061621fda3daffe2e9a57f --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_10C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_10C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.18162068965517242, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "LA92 (Unified / California) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 125951, + "duration_s": 16145.181005448103, + "voltage_observed_min_V": 2.50269, + "voltage_observed_max_V": 4.32296, + "current_observed_min_A": -10.47478, + "current_observed_max_A": 9.46432, + "temperature_observed_min_C": 10.304406666666667, + "temperature_observed_max_C": 23.924618333333335, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09899362921714783, + "sample_dt_max_s": 60.013001784682274, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_25C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_25C.json new file mode 100644 index 0000000000000000000000000000000000000000..7ae1f16b8949f2250dbb9ba1942a5330b90acdf2 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_25C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_LA92_25C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.10792068965517243, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "LA92 (Unified / California) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 140874, + "duration_s": 14103.979001194239, + "voltage_observed_min_V": 2.50141, + "voltage_observed_max_V": 4.2361, + "current_observed_min_A": -10.45518, + "current_observed_max_A": 9.733, + "temperature_observed_min_C": 25.61949, + "temperature_observed_max_C": 27.9508, + "sample_dt_min_s": 0.009002164006233215, + "sample_dt_median_s": 0.09899362921714783, + "sample_dt_max_s": 2.3649942129850388, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_-10C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_-10C.json new file mode 100644 index 0000000000000000000000000000000000000000..b5dc962ae1fd092e4225e12b2edee14e44031ab3 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_-10C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_-10C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -10.0, + "temperature_C_max": -10.0, + "soc_range_min": 0.29993793103448274, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Neural Network (NN) randomized drive cycle \u2014 Kollmeyer training profile", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 52522, + "duration_s": 5267.28499867022, + "voltage_observed_min_V": 2.48661, + "voltage_observed_max_V": 4.17223, + "current_observed_min_A": -15.28712, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -10.1702428, + "temperature_observed_max_C": 0.5508556, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.3810070008039474, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_-20C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_-20C.json new file mode 100644 index 0000000000000000000000000000000000000000..133b07df4aefffff08c6f1ba992522bc981da7b6 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_-20C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_-20C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.39995862068965515, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Neural Network (NN) randomized drive cycle \u2014 Kollmeyer training profile", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 45363, + "duration_s": 11678.962995484471, + "voltage_observed_min_V": 2.45573, + "voltage_observed_max_V": 4.18141, + "current_observed_min_A": -15.38675, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -20.3431684, + "temperature_observed_max_C": 16.570168000000002, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 60.006001219153404, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_0C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_0C.json new file mode 100644 index 0000000000000000000000000000000000000000..7f577140badc0260f5ecb67429883896d52cf692 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_0C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_0C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 0.0, + "temperature_C_max": 0.0, + "soc_range_min": 0.1999931034482758, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Neural Network (NN) randomized drive cycle \u2014 Kollmeyer training profile", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 63279, + "duration_s": 13476.171000301838, + "voltage_observed_min_V": 2.49304, + "voltage_observed_max_V": 4.18334, + "current_observed_min_A": -15.3157, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 0.3131318999999999, + "temperature_observed_max_C": 18.272698333333334, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 60.00899858772755, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_10C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_10C.json new file mode 100644 index 0000000000000000000000000000000000000000..1b9dc6dc322a93dbcb79141d552a507e56a22604 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_10C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_10C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.18588620689655166, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Neural Network (NN) randomized drive cycle \u2014 Kollmeyer training profile", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 105109, + "duration_s": 14078.54400537908, + "voltage_observed_min_V": 2.50334, + "voltage_observed_max_V": 4.23417, + "current_observed_min_A": -15.13931, + "current_observed_max_A": 7.78444, + "temperature_observed_min_C": 10.524465333333334, + "temperature_observed_max_C": 23.484511333333334, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09899362921714783, + "sample_dt_max_s": 60.00800281763077, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_25C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_25C.json new file mode 100644 index 0000000000000000000000000000000000000000..2393764c285e3f54c3190248d7b5b358e3cf7661 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_25C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_NN_25C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.12082068965517234, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Neural Network (NN) randomized drive cycle \u2014 Kollmeyer training profile", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 116982, + "duration_s": 11733.22799988091, + "voltage_observed_min_V": 2.50205, + "voltage_observed_max_V": 4.23095, + "current_observed_min_A": -14.66486, + "current_observed_max_A": 7.9347, + "temperature_observed_min_C": 25.40653, + "temperature_observed_max_C": 29.81136, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09899362921714783, + "sample_dt_max_s": 2.2259987890720367, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_-10C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_-10C.json new file mode 100644 index 0000000000000000000000000000000000000000..51c53ef7d36efd55e15c3b3c4795b064de8609c5 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_-10C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_-10C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -10.0, + "temperature_C_max": -10.0, + "soc_range_min": 0.2999896551724137, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Urban Dynamometer Driving Schedule (UDDS) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 109717, + "duration_s": 18114.498004317284, + "voltage_observed_min_V": 2.62751, + "voltage_observed_max_V": 4.18141, + "current_observed_min_A": -7.19687, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -10.3881328, + "temperature_observed_max_C": 16.790226666666666, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 60.006001219153404, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_-20C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_-20C.json new file mode 100644 index 0000000000000000000000000000000000000000..e6ec08f24c85f590cbf701b46e0ab98fd6a43291 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_-20C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_-20C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.39997241379310344, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Urban Dynamometer Driving Schedule (UDDS) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 89405, + "duration_s": 16081.913002207875, + "voltage_observed_min_V": 2.4969, + "voltage_observed_max_V": 4.18141, + "current_observed_min_A": -7.33896, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -20.125959400000003, + "temperature_observed_max_C": 16.326952333333335, + "sample_dt_min_s": 0.007000565528869629, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 60.00700704753399, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_0C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_0C.json new file mode 100644 index 0000000000000000000000000000000000000000..229c9de68681597e6fc737409419e72d89ceabcd --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_0C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_0C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 0.0, + "temperature_C_max": 0.0, + "soc_range_min": 0.19996551724137923, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Urban Dynamometer Driving Schedule (UDDS) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 128522, + "duration_s": 12868.684001639485, + "voltage_observed_min_V": 2.49819, + "voltage_observed_max_V": 4.17416, + "current_observed_min_A": -7.44921, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 0.5395334999999997, + "temperature_observed_max_C": 3.505449, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.2890038788318634, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_10C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_10C.json new file mode 100644 index 0000000000000000000000000000000000000000..7335ed3ad90788304c88130300c04f7944d903f1 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_10C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_10C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.11090344827586196, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Urban Dynamometer Driving Schedule (UDDS) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 210465, + "duration_s": 24609.7570002079, + "voltage_observed_min_V": 2.50012, + "voltage_observed_max_V": 4.20714, + "current_observed_min_A": -6.8939, + "current_observed_max_A": 4.25563, + "temperature_observed_min_C": 10.536038666666666, + "temperature_observed_max_C": 23.716143333333335, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.10099522769451141, + "sample_dt_max_s": 60.009994357824326, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_25C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_25C.json new file mode 100644 index 0000000000000000000000000000000000000000..9ebd39c66cf3e28711657c1ae5fcf83461c1b98c --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_25C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_UDDS_25C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.06845172413793099, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Urban Dynamometer Driving Schedule (UDDS) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 224187, + "duration_s": 22447.86600060761, + "voltage_observed_min_V": 2.50334, + "voltage_observed_max_V": 4.20779, + "current_observed_min_A": -7.52923, + "current_observed_max_A": 4.12497, + "temperature_observed_min_C": 25.61949, + "temperature_observed_max_C": 27.11018, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09899362921714783, + "sample_dt_max_s": 2.323000878095627, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_-10C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_-10C.json new file mode 100644 index 0000000000000000000000000000000000000000..02cbadb8252180812b081b0aeb294fd0b60f285e --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_-10C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_-10C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -10.0, + "temperature_C_max": -10.0, + "soc_range_min": 0.2999793103448275, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "US06 Supplemental Federal Test Procedure (high-acceleration) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 31197, + "duration_s": 10257.189003378153, + "voltage_observed_min_V": 2.49626, + "voltage_observed_max_V": 4.1827, + "current_observed_min_A": -13.38767, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -10.158135999999999, + "temperature_observed_max_C": 16.998691333333333, + "sample_dt_min_s": 0.005994737148284912, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 60.00399962067604, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_-20C_1.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_-20C_1.json new file mode 100644 index 0000000000000000000000000000000000000000..9f9e56e049dcb8233d3b0b4222f685964fe3e4d6 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_-20C_1.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_-20C_1", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.39995862068965515, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "US06 Supplemental Federal Test Procedure (high-acceleration) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 26557, + "duration_s": 2661.1450005322695, + "voltage_observed_min_V": 2.48725, + "voltage_observed_max_V": 4.17223, + "current_observed_min_A": -13.34438, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -20.1145252, + "temperature_observed_max_C": -0.10572520000000019, + "sample_dt_min_s": 0.007000565528869629, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.080002799630165, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_-20C_2.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_-20C_2.json new file mode 100644 index 0000000000000000000000000000000000000000..dfa9a09bc48c97428c9a82a436d02637819e2444 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_-20C_2.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_-20C_2", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.1999827586206896, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "US06 Supplemental Federal Test Procedure (high-acceleration) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 35246, + "duration_s": 3533.911006897688, + "voltage_observed_min_V": 2.47824, + "voltage_observed_max_V": 4.17158, + "current_observed_min_A": -13.58937, + "current_observed_max_A": 0.00163, + "temperature_observed_min_C": -19.9316086, + "temperature_observed_max_C": 12.840826666666667, + "sample_dt_min_s": 0.010007992386817932, + "sample_dt_median_s": 0.10099522769451141, + "sample_dt_max_s": 2.2379983216524124, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_0C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_0C.json new file mode 100644 index 0000000000000000000000000000000000000000..59608ef5fce56db98cbfdff782890f679062db1b --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_0C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_0C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 0.0, + "temperature_C_max": 0.0, + "soc_range_min": 0.1999724137931035, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "US06 Supplemental Federal Test Procedure (high-acceleration) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 36632, + "duration_s": 3672.339002788067, + "voltage_observed_min_V": 2.4924, + "voltage_observed_max_V": 4.1748, + "current_observed_min_A": -13.43748, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 0.5395334999999997, + "temperature_observed_max_C": 13.987423666666666, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.09999945759773254, + "sample_dt_max_s": 2.153991535305977, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_10C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_10C.json new file mode 100644 index 0000000000000000000000000000000000000000..29b74ff3736ea5badaf234974606bf99650f67a2 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_10C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_10C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.21403793103448276, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "US06 Supplemental Federal Test Procedure (high-acceleration) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 42000, + "duration_s": 4210.936000943184, + "voltage_observed_min_V": 2.50141, + "voltage_observed_max_V": 4.2258, + "current_observed_min_A": -20.76011, + "current_observed_max_A": 7.46431, + "temperature_observed_min_C": 10.547622333333333, + "temperature_observed_max_C": 18.990772, + "sample_dt_min_s": 0.04099756479263306, + "sample_dt_median_s": 0.09899362921714783, + "sample_dt_max_s": 2.0990028977394104, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_25C.json b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_25C.json new file mode 100644 index 0000000000000000000000000000000000000000..2a7341b58bc1a4f298edf27583262230ed827b3d --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_25C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_DRIVE_CYCLE_US06_25C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "drive_cycle", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.10828965517241373, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "US06 Supplemental Federal Test Procedure (high-acceleration) drive cycle", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 48061, + "duration_s": 4818.869999796152, + "voltage_observed_min_V": 2.49369, + "voltage_observed_max_V": 4.22259, + "current_observed_min_A": -20.82217, + "current_observed_max_A": 7.57456, + "temperature_observed_min_C": 25.60828, + "temperature_observed_max_C": 32.97207, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.10099522769451141, + "sample_dt_max_s": 2.3409951478242874, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_HPPC_-10C.json b/tests/HNEI_PANASONIC_18650PF_HPPC_-10C.json new file mode 100644 index 0000000000000000000000000000000000000000..4c8c2871680a8b7ed73e0831e6b0eeb54b1ec007 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_HPPC_-10C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_HPPC_-10C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "hppc", + "temperature_C_min": -10.0, + "temperature_C_max": -10.0, + "soc_range_min": 0.19644137931034478, + "soc_range_max": 1.0, + "soc_step": 0.1, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "5-pulse HPPC at 10% SOC steps (Kollmeyer / HNEI protocol)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 78494, + "duration_s": 78433.99500846863, + "voltage_observed_min_V": 2.49175, + "voltage_observed_max_V": 4.17176, + "current_observed_min_A": -17.40298, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -10.1944564, + "temperature_observed_max_C": -6.768772, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.9980030357837677, + "sample_dt_max_s": 3918.41999553144, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_HPPC_-20C.json b/tests/HNEI_PANASONIC_18650PF_HPPC_-20C.json new file mode 100644 index 0000000000000000000000000000000000000000..79a5a62f1baac37574766f8bcb61a2b279613f49 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_HPPC_-20C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_HPPC_-20C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "hppc", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.24752413793103456, + "soc_range_max": 1.0, + "soc_step": 0.1, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "5-pulse HPPC at 10% SOC steps (Kollmeyer / HNEI protocol)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 49655, + "duration_s": 58194.96300369501, + "voltage_observed_min_V": 2.48532, + "voltage_observed_max_V": 4.17884, + "current_observed_min_A": -11.60008, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -20.4003394, + "temperature_observed_max_C": -18.433963, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.9980030357837677, + "sample_dt_max_s": 4076.986003294587, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_HPPC_0C.json b/tests/HNEI_PANASONIC_18650PF_HPPC_0C.json new file mode 100644 index 0000000000000000000000000000000000000000..a415efb12cd33f6401ef4d6c3f719705c1490f8f --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_HPPC_0C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_HPPC_0C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "hppc", + "temperature_C_min": 0.0, + "temperature_C_max": 0.0, + "soc_range_min": 0.14629999999999999, + "soc_range_max": 1.0, + "soc_step": 0.1, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "5-pulse HPPC at 10% SOC steps (Kollmeyer / HNEI protocol)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 85260, + "duration_s": 83098.7589944154, + "voltage_observed_min_V": 2.49883, + "voltage_observed_max_V": 4.15889, + "current_observed_min_A": -17.40298, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 0.12068649999999992, + "temperature_observed_max_C": 4.3657872, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.9960014373064041, + "sample_dt_max_s": 3750.181006640196, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_HPPC_10C.json b/tests/HNEI_PANASONIC_18650PF_HPPC_10C.json new file mode 100644 index 0000000000000000000000000000000000000000..5a09c5a433a762e09613ed826bb122d3a119e179 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_HPPC_10C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_HPPC_10C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "hppc", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.09594827586206889, + "soc_range_max": 1.0, + "soc_step": 0.1, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "5-pulse HPPC at 10% SOC steps (Kollmeyer / HNEI protocol)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 91371, + "duration_s": 88792.27099120617, + "voltage_observed_min_V": 2.49883, + "voltage_observed_max_V": 4.15825, + "current_observed_min_A": -17.40217, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 10.107515333333332, + "temperature_observed_max_C": 13.790532333333335, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.9960014373064041, + "sample_dt_max_s": 3749.8719960451126, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_HPPC_25C.json b/tests/HNEI_PANASONIC_18650PF_HPPC_25C.json new file mode 100644 index 0000000000000000000000000000000000000000..ba3db6798f6c57d62c3b2aff971d4a889110bbc9 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_HPPC_25C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_HPPC_25C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "hppc", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.04386206896551714, + "soc_range_max": 1.0, + "soc_step": 0.1, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "5-pulse HPPC at 10% SOC steps (Kollmeyer / HNEI protocol)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 102800, + "duration_s": 97599.39900040627, + "voltage_observed_min_V": 2.49819, + "voltage_observed_max_V": 4.17497, + "current_observed_min_A": -17.40298, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 25.33929, + "temperature_observed_max_C": 27.93959, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.9960014373064041, + "sample_dt_max_s": 3748.5449966043234, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_-10C.json b/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_-10C.json new file mode 100644 index 0000000000000000000000000000000000000000..6ee583df0efb3c93989f6cc4f61488210e9c94b3 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_-10C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_-10C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "hppc", + "temperature_C_min": -10.0, + "temperature_C_max": -10.0, + "soc_range_min": 0.1817965517241379, + "soc_range_max": 0.9950034482758621, + "soc_step": 0.1, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "5-pulse discharge at 10% SOC steps (mini-HPPC characterization)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 443, + "duration_s": 228149.9310001731, + "voltage_observed_min_V": 2.49948, + "voltage_observed_max_V": 4.07268, + "current_observed_min_A": -0.8697, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -10.1823496, + "temperature_observed_max_C": -7.0108756, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 60.0010022521019, + "sample_dt_max_s": 31154.551002010703, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_-20C.json b/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_-20C.json new file mode 100644 index 0000000000000000000000000000000000000000..4ef20dae9bc9d4de6b6f729be6af893b2106c05a --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_-20C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_-20C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "hppc", + "temperature_C_min": -20.0, + "temperature_C_max": -20.0, + "soc_range_min": 0.22920344827586203, + "soc_range_max": 0.9950034482758621, + "soc_step": 0.1, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "5-pulse discharge at 10% SOC steps (mini-HPPC characterization)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 1990, + "duration_s": 612060.6049954891, + "voltage_observed_min_V": -0.00064, + "voltage_observed_max_V": 4.04951, + "current_observed_min_A": -0.8697, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": -20.1488176, + "temperature_observed_max_C": 5.158213, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 299.9990064650774, + "sample_dt_max_s": 33805.84899298847, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_0C_1.json b/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_0C_1.json new file mode 100644 index 0000000000000000000000000000000000000000..6f2ddfda44d3aaf25b69cca7aafab6f7824ed90b --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_0C_1.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_0C_1", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "hppc", + "temperature_C_min": 0.0, + "temperature_C_max": 0.0, + "soc_range_min": 0.1369379310344827, + "soc_range_max": 0.9574689655172414, + "soc_step": 0.1, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "5-pulse discharge at 10% SOC steps (mini-HPPC characterization)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 197, + "duration_s": 78230.96299767494, + "voltage_observed_min_V": 2.49948, + "voltage_observed_max_V": 4.08426, + "current_observed_min_A": -0.8697, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 0.3357659999999998, + "temperature_observed_max_C": 3.7205386, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 60.00299882143736, + "sample_dt_max_s": 6117.881994321942, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_0C_2.json b/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_0C_2.json new file mode 100644 index 0000000000000000000000000000000000000000..6f27f418508ed813cb28653303d52716210882fc --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_0C_2.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_0C_2", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "hppc", + "temperature_C_min": 0.0, + "temperature_C_max": 0.0, + "soc_range_min": 0.1797586206896552, + "soc_range_max": 0.9950034482758621, + "soc_step": 0.1, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "5-pulse discharge at 10% SOC steps (mini-HPPC characterization)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 254, + "duration_s": 128907.02599771321, + "voltage_observed_min_V": 2.49948, + "voltage_observed_max_V": 4.03922, + "current_observed_min_A": -0.8697, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 0.3357659999999998, + "temperature_observed_max_C": 11.14988, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 60.0010022521019, + "sample_dt_max_s": 10865.061998739839, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_10C.json b/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_10C.json new file mode 100644 index 0000000000000000000000000000000000000000..2031bb8fecb5b483049b5526a220f090ca3b1557 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_10C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_10C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "hppc", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.08614137931034482, + "soc_range_max": 0.9573655172413793, + "soc_step": 0.1, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "5-pulse discharge at 10% SOC steps (mini-HPPC characterization)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 203, + "duration_s": 83930.01500666142, + "voltage_observed_min_V": 2.49948, + "voltage_observed_max_V": 4.09326, + "current_observed_min_A": -0.8697, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 10.536038666666666, + "temperature_observed_max_C": 13.790532333333335, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 60.00500041991472, + "sample_dt_max_s": 6119.8959946632385, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_25C_1.json b/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_25C_1.json new file mode 100644 index 0000000000000000000000000000000000000000..9217a429d38b9dd0dae92bfd123d783b5ea6b3f4 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_25C_1.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_25C_1", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "hppc", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.023227586206896467, + "soc_range_max": 0.9950034482758621, + "soc_step": 0.1, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "5-pulse discharge at 10% SOC steps (mini-HPPC characterization)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 511, + "duration_s": 163640.95000103116, + "voltage_observed_min_V": 2.49948, + "voltage_observed_max_V": 4.12011, + "current_observed_min_A": -0.8697, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 25.41774, + "temperature_observed_max_C": 27.51368, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 60.00399962067604, + "sample_dt_max_s": 12604.699002206326, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_25C_2.json b/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_25C_2.json new file mode 100644 index 0000000000000000000000000000000000000000..8be09ca16bc96ea1a58c9600afc1d33bab97d36d --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_25C_2.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_HPPC_DIS5_10P_25C_2", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "hppc", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.0338172413793103, + "soc_range_max": 0.9950034482758621, + "soc_step": 0.1, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "5-pulse discharge at 10% SOC steps (mini-HPPC characterization)", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 305, + "duration_s": 177172.6060051471, + "voltage_observed_min_V": 2.49948, + "voltage_observed_max_V": 4.09905, + "current_observed_min_A": -0.8697, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 23.970942666666666, + "temperature_observed_max_C": 27.52489, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 60.00200305134058, + "sample_dt_max_s": 10865.06800353527, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/HNEI_PANASONIC_18650PF_HPPC_DISPULSE_0C.json b/tests/HNEI_PANASONIC_18650PF_HPPC_DISPULSE_0C.json new file mode 100644 index 0000000000000000000000000000000000000000..6497bf95eb6eea3a71515269c9fa8508f71c24b6 --- /dev/null +++ b/tests/HNEI_PANASONIC_18650PF_HPPC_DISPULSE_0C.json @@ -0,0 +1,34 @@ +{ + "test_id": "HNEI_PANASONIC_18650PF_HPPC_DISPULSE_0C", + "cell_id": "HNEI_PANASONIC_18650PF", + "test_type": "hppc", + "temperature_C_min": 0.0, + "temperature_C_max": 0.0, + "soc_range_min": 0.14629999999999999, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Single discharge pulse characterization", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2017, + "n_samples": 85260, + "duration_s": 83098.7589944154, + "voltage_observed_min_V": 2.49883, + "voltage_observed_max_V": 4.15889, + "current_observed_min_A": -17.40298, + "current_observed_max_A": 0.0, + "temperature_observed_min_C": 0.12068649999999992, + "temperature_observed_max_C": 4.3657872, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.9960014373064041, + "sample_dt_max_s": 3750.181006640196, + "source_doi": "10.17632/wykht8y7tg.1", + "source_url": "https://data.mendeley.com/datasets/wykht8y7tg/1", + "source_citation": "Kollmeyer, P. (2018). Panasonic 18650PF Li-ion Battery Data. Mendeley Data, v1. https://doi.org/10.17632/wykht8y7tg.1", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C0_CYCLING.json b/tests/MATR_B1C0_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..12105fc4b2a8a6a7122ca717cb9fbf94598cef71 --- /dev/null +++ b/tests/MATR_B1C0_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C0_CYCLING", + "cell_id": "MATR_B1C0", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 3.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 3.6C(80%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1190, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1295876, + "duration_s": 3840253.5773000005, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6004658, + "current_observed_min_A": -4.012288636363636, + "current_observed_max_A": 3.6075314545454544, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 38.928616, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.996900000143796, + "sample_dt_max_s": 24444.01569999999, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C10_CYCLING.json b/tests/MATR_B1C10_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..f8bd7ba90a0c21ceb95d86b5e7c6a5f55b489a44 --- /dev/null +++ b/tests/MATR_B1C10_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C10_CYCLING", + "cell_id": "MATR_B1C10", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.4C(50%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 906, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 966019, + "duration_s": 2780081.8963, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6004553, + "current_observed_min_A": -4.002372545454545, + "current_observed_max_A": 5.419765818181818, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 41.307274, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.996099999989383, + "sample_dt_max_s": 24532.324900000007, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C11_CYCLING.json b/tests/MATR_B1C11_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..586b9532710cc146bfd15cdb27955e896f1c15f6 --- /dev/null +++ b/tests/MATR_B1C11_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C11_CYCLING", + "cell_id": "MATR_B1C11", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.4C(50%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 788, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 835014, + "duration_s": 2412808.2087, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6130934, + "current_observed_min_A": -4.0030149999999995, + "current_observed_max_A": 5.522696727272727, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 41.479763, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.996099999872968, + "sample_dt_max_s": 24532.329900000004, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C12_CYCLING.json b/tests/MATR_B1C12_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..383f94027a6f301f7d893aad65be9ba6250ab308 --- /dev/null +++ b/tests/MATR_B1C12_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C12_CYCLING", + "cell_id": "MATR_B1C12", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.4C(50%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 902, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 953668, + "duration_s": 2711069.6569999987, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6004758, + "current_observed_min_A": -4.265465727272727, + "current_observed_max_A": 5.404385636363636, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 42.208515, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.9953999999997905, + "sample_dt_max_s": 5.077199999999721, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C13_CYCLING.json b/tests/MATR_B1C13_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..392b851f3ab95eb7c0e5aaf7e753943ae6d4ddf9 --- /dev/null +++ b/tests/MATR_B1C13_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C13_CYCLING", + "cell_id": "MATR_B1C13", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.4C(50%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 897, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 947363, + "duration_s": 2711374.003199993, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6004586, + "current_observed_min_A": -4.014475545454545, + "current_observed_max_A": 5.406445545454544, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 39.469055, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995600000023842, + "sample_dt_max_s": 5.075299999996787, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C14_CYCLING.json b/tests/MATR_B1C14_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..362fcf904269926abd1dc13677d36cdd4202ac9e --- /dev/null +++ b/tests/MATR_B1C14_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C14_CYCLING", + "cell_id": "MATR_B1C14", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.4C(60%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 880, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 911264, + "duration_s": 2608886.205000003, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6144662, + "current_observed_min_A": -4.004212272727273, + "current_observed_max_A": 5.4134091818181815, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 41.579632, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995600000023842, + "sample_dt_max_s": 24541.341400000005, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C15_CYCLING.json b/tests/MATR_B1C15_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..6462d2a77076092441cd36d27e3a73d24ca0383b --- /dev/null +++ b/tests/MATR_B1C15_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C15_CYCLING", + "cell_id": "MATR_B1C15", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.4C(60%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 719, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 752979, + "duration_s": 2174204.1442000004, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6160011, + "current_observed_min_A": -4.007261454545454, + "current_observed_max_A": 5.532965181818181, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 42.38578, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995800000033341, + "sample_dt_max_s": 24541.336600000002, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C16_CYCLING.json b/tests/MATR_B1C16_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..8987307b465de3bf00fe5d683eb1735166de054a --- /dev/null +++ b/tests/MATR_B1C16_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C16_CYCLING", + "cell_id": "MATR_B1C16", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.4C(60%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 862, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 896661, + "duration_s": 2576735.7361000013, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.611691, + "current_observed_min_A": -4.00371809090909, + "current_observed_max_A": 5.406168181818182, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 41.539963, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.9953000000678, + "sample_dt_max_s": 24572.277800000003, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C17_CYCLING.json b/tests/MATR_B1C17_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..8c9dbc9f14d4929272bf068af4eaf491290f18ec --- /dev/null +++ b/tests/MATR_B1C17_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C17_CYCLING", + "cell_id": "MATR_B1C17", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.4C(60%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 857, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 891614, + "duration_s": 2545087.709600003, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6104994, + "current_observed_min_A": -4.005319454545455, + "current_observed_max_A": 5.415042545454545, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 41.198109, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.9953000000678, + "sample_dt_max_s": 6.93660000001546, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C18_CYCLING.json b/tests/MATR_B1C18_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..93d0091ad5ae7e0c9d65e8c6e5504fcb6431456d --- /dev/null +++ b/tests/MATR_B1C18_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C18_CYCLING", + "cell_id": "MATR_B1C18", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.4C(70%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 691, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 857172, + "duration_s": 11535360.812100008, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 6.6061416, + "current_observed_min_A": -4.007367636363636, + "current_observed_max_A": 5.438076363636363, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 39.733044, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.0095000006258488, + "sample_dt_max_s": 240766.5058, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C19_CYCLING.json b/tests/MATR_B1C19_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..4a77d69b5b5216dad6301fd0f410d7406a2e4f8d --- /dev/null +++ b/tests/MATR_B1C19_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C19_CYCLING", + "cell_id": "MATR_B1C19", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.4C(70%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 788, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 822929, + "duration_s": 2361353.5118999965, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6119728, + "current_observed_min_A": -4.1471208181818175, + "current_observed_max_A": 5.601126909090909, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 41.897102, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995400000130758, + "sample_dt_max_s": 5.079299999997602, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C1_CYCLING.json b/tests/MATR_B1C1_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..57e47cd9300dbfae3a931e41ec45c9585f367fe6 --- /dev/null +++ b/tests/MATR_B1C1_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C1_CYCLING", + "cell_id": "MATR_B1C1", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 3.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 3.6C(80%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1179, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1286818, + "duration_s": 3838732.7779, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6004648, + "current_observed_min_A": -4.013103181818182, + "current_observed_max_A": 3.6135681818181813, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 37.484043, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.9972999999299645, + "sample_dt_max_s": 24448.556899999996, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C20_CYCLING.json b/tests/MATR_B1C20_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..aa43859a4bcce4cc4177a723d0b183cbf5a2cc6b --- /dev/null +++ b/tests/MATR_B1C20_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C20_CYCLING", + "cell_id": "MATR_B1C20", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.4C(80%)-5.4C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 534, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 530553, + "duration_s": 1501979.1655999993, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6075883, + "current_observed_min_A": -4.001678545454546, + "current_observed_max_A": 5.405748545454545, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 39.196651, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.993800000054762, + "sample_dt_max_s": 24526.536900000006, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C21_CYCLING.json b/tests/MATR_B1C21_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..e5fe3fc7f37e023585275ae3b778a21b50141ddd --- /dev/null +++ b/tests/MATR_B1C21_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C21_CYCLING", + "cell_id": "MATR_B1C21", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.4C(80%)-5.4C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 559, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 562135, + "duration_s": 1614511.0360999978, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6006136, + "current_observed_min_A": -4.037403636363637, + "current_observed_max_A": 5.693886454545455, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 42.364117, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.994899999932386, + "sample_dt_max_s": 24526.544599999994, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C22_CYCLING.json b/tests/MATR_B1C22_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..505c2d13bee70090447199a638cd01a68b023d18 --- /dev/null +++ b/tests/MATR_B1C22_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C22_CYCLING", + "cell_id": "MATR_B1C22", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(30%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 891, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 949232, + "duration_s": 2707338.3859999976, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6004615, + "current_observed_min_A": -4.239118727272727, + "current_observed_max_A": 6.015032, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 41.77565, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995599999965634, + "sample_dt_max_s": 5.763199999986682, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C23_CYCLING.json b/tests/MATR_B1C23_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..4cedab2bcd50a68bd01e4b054b35fac2c11037a9 --- /dev/null +++ b/tests/MATR_B1C23_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C23_CYCLING", + "cell_id": "MATR_B1C23", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(30%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1014, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1067097, + "duration_s": 3045990.623499999, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6163535, + "current_observed_min_A": -4.257122818181818, + "current_observed_max_A": 6.014022818181818, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 39.723873, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995699999853969, + "sample_dt_max_s": 15855.180700000376, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C24_CYCLING.json b/tests/MATR_B1C24_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..23da17489ac90aec46a25e98c65220143ce1f91e --- /dev/null +++ b/tests/MATR_B1C24_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C24_CYCLING", + "cell_id": "MATR_B1C24", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(40%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1017, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1062853, + "duration_s": 3041897.0851999973, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6172829, + "current_observed_min_A": -4.06626309090909, + "current_observed_max_A": 6.0318131818181815, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 41.223072, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.9954999999608845, + "sample_dt_max_s": 15855.299399999902, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C25_CYCLING.json b/tests/MATR_B1C25_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..85ea22836537083f8c317cc83ce580426d0a1234 --- /dev/null +++ b/tests/MATR_B1C25_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C25_CYCLING", + "cell_id": "MATR_B1C25", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(40%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 854, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 898484, + "duration_s": 2580560.9465999994, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6004925, + "current_observed_min_A": -4.105617363636363, + "current_observed_max_A": 6.056303545454545, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 43.419384, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995899999979883, + "sample_dt_max_s": 369.2082000002265, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C26_CYCLING.json b/tests/MATR_B1C26_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..940f096417087afedb44eabc2bfa78f0371ef001 --- /dev/null +++ b/tests/MATR_B1C26_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C26_CYCLING", + "cell_id": "MATR_B1C26", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(40%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 870, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 922650, + "duration_s": 2622415.6994000003, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6150422, + "current_observed_min_A": -4.006529727272727, + "current_observed_max_A": 6.022848636363635, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 41.141823, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995600000023842, + "sample_dt_max_s": 6.3444000000017695, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C27_CYCLING.json b/tests/MATR_B1C27_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..92ed856c1e7aaac4ab3dfbf7b073bf7b0a0c6820 --- /dev/null +++ b/tests/MATR_B1C27_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C27_CYCLING", + "cell_id": "MATR_B1C27", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(40%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 842, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 886894, + "duration_s": 2531426.3402, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6081672, + "current_observed_min_A": -4.009338272727272, + "current_observed_max_A": 6.016155545454545, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 42.863762, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995800000033341, + "sample_dt_max_s": 5.858699999982491, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C28_CYCLING.json b/tests/MATR_B1C28_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..576910942d2fc782dca812ba40a5930d543cdfed --- /dev/null +++ b/tests/MATR_B1C28_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C28_CYCLING", + "cell_id": "MATR_B1C28", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(50%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 860, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 894161, + "duration_s": 2552374.1381000006, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6097636, + "current_observed_min_A": -4.093923545454545, + "current_observed_max_A": 6.010440454545455, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 42.737, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.9950999999418855, + "sample_dt_max_s": 396.44900000002235, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C29_CYCLING.json b/tests/MATR_B1C29_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..cd7269c1f5ef443653c79c5f695ed6a26a9121c5 --- /dev/null +++ b/tests/MATR_B1C29_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C29_CYCLING", + "cell_id": "MATR_B1C29", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(50%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 917, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 941922, + "duration_s": 2702343.5723999995, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6145883, + "current_observed_min_A": -4.019067090909091, + "current_observed_max_A": 6.059625818181818, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 40.052227, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995200000004843, + "sample_dt_max_s": 396.1938999998383, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C2_CYCLING.json b/tests/MATR_B1C2_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..1cb7f1f1b7eaa07909fd8f55f097d335df5e575b --- /dev/null +++ b/tests/MATR_B1C2_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C2_CYCLING", + "cell_id": "MATR_B1C2", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 3.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 3.6C(80%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1177, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1295635, + "duration_s": 3839657.6646000044, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6004725, + "current_observed_min_A": -4.007682818181817, + "current_observed_max_A": 3.6027630909090904, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 38.069508, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.99709999980405, + "sample_dt_max_s": 24448.5539, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C30_CYCLING.json b/tests/MATR_B1C30_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..912945b340dac2e8f09c10dbf3b1c72f337c5ff4 --- /dev/null +++ b/tests/MATR_B1C30_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C30_CYCLING", + "cell_id": "MATR_B1C30", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(50%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 709, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 745668, + "duration_s": 2116842.365000001, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6248503, + "current_observed_min_A": -4.006984909090908, + "current_observed_max_A": 6.005477909090908, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 41.632507, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.9953000000678, + "sample_dt_max_s": 395.9727999998722, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C31_CYCLING.json b/tests/MATR_B1C31_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..8c655ec3f20e9c65d913755468452271130d1e6b --- /dev/null +++ b/tests/MATR_B1C31_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C31_CYCLING", + "cell_id": "MATR_B1C31", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(50%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 876, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 914143, + "duration_s": 2603016.9311000067, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.611227, + "current_observed_min_A": -4.001830272727273, + "current_observed_max_A": 6.0070904545454535, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 34.404381, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995600000023842, + "sample_dt_max_s": 5.076399999903515, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C32_CYCLING.json b/tests/MATR_B1C32_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..208efc34883838048db06769114a983c62bb82d1 --- /dev/null +++ b/tests/MATR_B1C32_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C32_CYCLING", + "cell_id": "MATR_B1C32", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(60%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 731, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 756891, + "duration_s": 2166722.532500001, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6150565, + "current_observed_min_A": -4.1588639999999995, + "current_observed_max_A": 6.007267363636363, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 40.844322, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995100000058301, + "sample_dt_max_s": 393.8736000000499, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C33_CYCLING.json b/tests/MATR_B1C33_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..5aaa467085af6d45bcecd141413c13855da974ee --- /dev/null +++ b/tests/MATR_B1C33_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C33_CYCLING", + "cell_id": "MATR_B1C33", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(60%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 757, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 784009, + "duration_s": 2266710.558300001, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6262217, + "current_observed_min_A": -4.708151363636363, + "current_observed_max_A": 6.074406, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 42.991768, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995200000004843, + "sample_dt_max_s": 431.8904999999795, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C34_CYCLING.json b/tests/MATR_B1C34_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..ee42c830144ebe12623772cdc9988a59f1f7931b --- /dev/null +++ b/tests/MATR_B1C34_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C34_CYCLING", + "cell_id": "MATR_B1C34", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 7.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 7C(30%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 742, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 779968, + "duration_s": 2240754.6790999966, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6200919, + "current_observed_min_A": -4.010486181818181, + "current_observed_max_A": 7.005171363636363, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 40.927204, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.9953999999852385, + "sample_dt_max_s": 447.0488999998197, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C35_CYCLING.json b/tests/MATR_B1C35_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..792b3448a8d51db2472c8bfb9a6ee0102dc1192e --- /dev/null +++ b/tests/MATR_B1C35_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C35_CYCLING", + "cell_id": "MATR_B1C35", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 7.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 7C(30%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 703, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 745965, + "duration_s": 2149085.4193999995, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6239219, + "current_observed_min_A": -4.014420909090909, + "current_observed_max_A": 7.00460609090909, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 39.929806, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.9954999999608845, + "sample_dt_max_s": 434.9833999997936, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C36_CYCLING.json b/tests/MATR_B1C36_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..846a7f7295fdf67c0ea5939b531743954e21e14e --- /dev/null +++ b/tests/MATR_B1C36_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C36_CYCLING", + "cell_id": "MATR_B1C36", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 7.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 7C(40%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 704, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 748601, + "duration_s": 2166064.240399999, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6071329, + "current_observed_min_A": -4.032212181818181, + "current_observed_max_A": 7.004918181818181, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 38.340904, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995400000014342, + "sample_dt_max_s": 527.5962000000291, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C37_CYCLING.json b/tests/MATR_B1C37_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..6a1346486813c62b84705cf54bc5b84846214087 --- /dev/null +++ b/tests/MATR_B1C37_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C37_CYCLING", + "cell_id": "MATR_B1C37", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 7.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 7C(40%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 648, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 685170, + "duration_s": 1995142.1306000007, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6110907, + "current_observed_min_A": -4.004174545454545, + "current_observed_max_A": 7.005736636363636, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 40.97451, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995600000023842, + "sample_dt_max_s": 517.4549000000115, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C38_CYCLING.json b/tests/MATR_B1C38_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..802d3eee1e63ac2d6f10796ecc81fad366d66a30 --- /dev/null +++ b/tests/MATR_B1C38_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C38_CYCLING", + "cell_id": "MATR_B1C38", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 7.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 7C(40%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 617, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 634781, + "duration_s": 1821934.7723000015, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6285219, + "current_observed_min_A": -4.139850818181818, + "current_observed_max_A": 7.020055636363636, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 42.55912, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995100000058301, + "sample_dt_max_s": 418.3660999999847, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C39_CYCLING.json b/tests/MATR_B1C39_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..f1c59ae2398e9af81883b9770a5a323fdb1b3a31 --- /dev/null +++ b/tests/MATR_B1C39_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C39_CYCLING", + "cell_id": "MATR_B1C39", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 7.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 7C(40%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 625, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 647051, + "duration_s": 1869641.3077999994, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.605844, + "current_observed_min_A": -4.006362, + "current_observed_max_A": 7.036770909090908, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 42.671803, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995299999965937, + "sample_dt_max_s": 436.687900000019, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C3_CYCLING.json b/tests/MATR_B1C3_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..a81d965c3047d545af762ff8f968eca098d454fe --- /dev/null +++ b/tests/MATR_B1C3_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C3_CYCLING", + "cell_id": "MATR_B1C3", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4C(80%)-4C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1226, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1303544, + "duration_s": 3837931.0516000036, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.600472, + "current_observed_min_A": -4.002963454545454, + "current_observed_max_A": 4.003895, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 35.881531, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.996700000017881, + "sample_dt_max_s": 24466.514799999997, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C40_CYCLING.json b/tests/MATR_B1C40_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..8cb628e4a72e68dc347ad9990675e1c2f997ee96 --- /dev/null +++ b/tests/MATR_B1C40_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C40_CYCLING", + "cell_id": "MATR_B1C40", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 8.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 8C(15%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 966, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1042943, + "duration_s": 2975222.5628999965, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6170411, + "current_observed_min_A": -4.006604272727272, + "current_observed_max_A": 8.018018545454543, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 42.527355, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995900000212714, + "sample_dt_max_s": 15858.342999999877, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C41_CYCLING.json b/tests/MATR_B1C41_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..e7c86aa49ae95d125824b32e4e936be6974b9e48 --- /dev/null +++ b/tests/MATR_B1C41_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C41_CYCLING", + "cell_id": "MATR_B1C41", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 8.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 8C(15%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1051, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1103390, + "duration_s": 3175465.267799996, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6194468, + "current_observed_min_A": -4.007237181818182, + "current_observed_max_A": 8.16945509090909, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 41.268238, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.996100000105798, + "sample_dt_max_s": 15853.482899999712, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C42_CYCLING.json b/tests/MATR_B1C42_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..71badd937c3f4b7764b19ccf96f9ec3e6813d029 --- /dev/null +++ b/tests/MATR_B1C42_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C42_CYCLING", + "cell_id": "MATR_B1C42", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 8.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 8C(25%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 702, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 729740, + "duration_s": 2115492.231000001, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6081538, + "current_observed_min_A": -4.023468727272727, + "current_observed_max_A": 8.02699, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 43.066917, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.9950999999418855, + "sample_dt_max_s": 538.6655000001192, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C43_CYCLING.json b/tests/MATR_B1C43_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..fe8ada49fe9e79b020ce5fcde91cc3fcb63ae1c5 --- /dev/null +++ b/tests/MATR_B1C43_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C43_CYCLING", + "cell_id": "MATR_B1C43", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 8.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 8C(25%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 651, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 677268, + "duration_s": 1960024.6445, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6229277, + "current_observed_min_A": -4.008375909090908, + "current_observed_max_A": 8.027583, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 42.016243, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.9953000000678, + "sample_dt_max_s": 508.5148999998346, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C44_CYCLING.json b/tests/MATR_B1C44_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..4ca0eb2665ea8dc094985ec12730ba54f7953b75 --- /dev/null +++ b/tests/MATR_B1C44_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C44_CYCLING", + "cell_id": "MATR_B1C44", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 8.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 8C(35%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 616, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 600046, + "duration_s": 1863936.1182000006, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6122589, + "current_observed_min_A": -4.004221363636363, + "current_observed_max_A": 8.01568118181818, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 40.76767, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.993800000054762, + "sample_dt_max_s": 579.6107000000193, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C45_CYCLING.json b/tests/MATR_B1C45_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..26d999107b609eb640ff4d1b97c0ad75bec8f194 --- /dev/null +++ b/tests/MATR_B1C45_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C45_CYCLING", + "cell_id": "MATR_B1C45", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 8.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 8C(35%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 599, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 588451, + "duration_s": 1794482.7158999988, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6073928, + "current_observed_min_A": -4.0475889090909085, + "current_observed_max_A": 8.019027727272727, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 42.076569, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.994199999957345, + "sample_dt_max_s": 553.8500000000931, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C4_CYCLING.json b/tests/MATR_B1C4_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..d9951fde632e5746d796650c47a3ce0796cce5a8 --- /dev/null +++ b/tests/MATR_B1C4_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C4_CYCLING", + "cell_id": "MATR_B1C4", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4C(80%)-4C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1227, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1297061, + "duration_s": 3839184.468999998, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6004691, + "current_observed_min_A": -4.003046636363636, + "current_observed_max_A": 4.003074818181817, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 38.572598, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.996800000080839, + "sample_dt_max_s": 24466.530800000008, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C5_CYCLING.json b/tests/MATR_B1C5_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..f4e52bdaf73d127876b09e6bd3ea3064f7e82eff --- /dev/null +++ b/tests/MATR_B1C5_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C5_CYCLING", + "cell_id": "MATR_B1C5", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.4C(80%)-4.4C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1074, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1107307, + "duration_s": 3243515.8373999996, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6097608, + "current_observed_min_A": -4.004141181818182, + "current_observed_max_A": 4.419160363636363, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 38.37043, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.996100000105798, + "sample_dt_max_s": 24473.9069, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C6_CYCLING.json b/tests/MATR_B1C6_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..75c68e24acc384167c1a7554116811a24affe008 --- /dev/null +++ b/tests/MATR_B1C6_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C6_CYCLING", + "cell_id": "MATR_B1C6", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.8, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.8C(80%)-4.8C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 636, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 660310, + "duration_s": 1917438.3616000016, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6004691, + "current_observed_min_A": -4.013688818181818, + "current_observed_max_A": 4.806116272727272, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 40.598866, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995600000023842, + "sample_dt_max_s": 24521.0409, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C7_CYCLING.json b/tests/MATR_B1C7_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..c6469e4947a6ceb9e0d3d1f1afea732d92268efb --- /dev/null +++ b/tests/MATR_B1C7_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C7_CYCLING", + "cell_id": "MATR_B1C7", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.8, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.8C(80%)-4.8C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 870, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 910990, + "duration_s": 2615383.2337000016, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6052194, + "current_observed_min_A": -4.005128272727273, + "current_observed_max_A": 4.809326727272727, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 40.471302, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995599999994738, + "sample_dt_max_s": 24521.021, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C8_CYCLING.json b/tests/MATR_B1C8_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..2524fed59183cf22f11bc61c54299241600cfeb3 --- /dev/null +++ b/tests/MATR_B1C8_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C8_CYCLING", + "cell_id": "MATR_B1C8", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.4C(40%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 879, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 949361, + "duration_s": 2711250.192799997, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6004634, + "current_observed_min_A": -4.059182545454545, + "current_observed_max_A": 5.404132454545454, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 38.40337, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.995500000193715, + "sample_dt_max_s": 5.078700000012759, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B1C9_CYCLING.json b/tests/MATR_B1C9_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..d186950cf95c5503a6df4577c39f1cf517efa9f1 --- /dev/null +++ b/tests/MATR_B1C9_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B1C9_CYCLING", + "cell_id": "MATR_B1C9", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.4C(40%)-3.6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1054, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1110015, + "duration_s": 3188385.7766000004, + "voltage_observed_min_V": 0.0, + "voltage_observed_max_V": 3.6216035, + "current_observed_min_A": -4.006395818181818, + "current_observed_max_A": 5.406438636363635, + "temperature_observed_min_C": 0.0, + "temperature_observed_max_C": 40.492382, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.996000000042841, + "sample_dt_max_s": 15852.594299999997, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C0_CYCLING.json b/tests/MATR_B2C0_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..7e0b1a9c33fcf7cd871e0102699f224e36044433 --- /dev/null +++ b/tests/MATR_B2C0_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C0_CYCLING", + "cell_id": "MATR_B2C0", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 1C(4%)-6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 300, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 474880, + "duration_s": 1178109.8575999988, + "voltage_observed_min_V": 1.9964194, + "voltage_observed_max_V": 3.6286969, + "current_observed_min_A": -4.004969636363636, + "current_observed_max_A": 6.082371818181818, + "temperature_observed_min_C": 26.734909, + "temperature_observed_max_C": 35.093468, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.3477999999886379, + "sample_dt_max_s": 29304.69889999996, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C10_CYCLING.json b/tests/MATR_B2C10_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..541e6e094282a675f9979cb100f6d14a9f1d8eeb --- /dev/null +++ b/tests/MATR_B2C10_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C10_CYCLING", + "cell_id": "MATR_B2C10", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 3.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 3.6C(9%)-5C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 561, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 779801, + "duration_s": 2078344.6373, + "voltage_observed_min_V": 1.9957428, + "voltage_observed_max_V": 3.6209888, + "current_observed_min_A": -4.149756454545454, + "current_observed_max_A": 5.137866636363636, + "temperature_observed_min_C": 29.075825, + "temperature_observed_max_C": 41.091682, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.887150000082329, + "sample_dt_max_s": 29340.332700000028, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C11_CYCLING.json b/tests/MATR_B2C11_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..37c2fc1c19effe8ada869a95d4f24c51b90496e9 --- /dev/null +++ b/tests/MATR_B2C11_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C11_CYCLING", + "cell_id": "MATR_B2C11", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4C(13%)-5C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 477, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 665704, + "duration_s": 1788390.8705999998, + "voltage_observed_min_V": 1.9955945, + "voltage_observed_max_V": 3.6004739, + "current_observed_min_A": -4.001894, + "current_observed_max_A": 5.087183181818181, + "temperature_observed_min_C": 29.848907, + "temperature_observed_max_C": 40.486732, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 2.0487000001594424, + "sample_dt_max_s": 29376.549099999946, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C12_CYCLING.json b/tests/MATR_B2C12_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..ada3713d6667f649460781e19b5efd75e359ed42 --- /dev/null +++ b/tests/MATR_B2C12_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C12_CYCLING", + "cell_id": "MATR_B2C12", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4C(31%)-5. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 458, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 667577, + "duration_s": 1715993.927899999, + "voltage_observed_min_V": 1.995914, + "voltage_observed_max_V": 3.6140857, + "current_observed_min_A": -4.052341636363636, + "current_observed_max_A": 5.649580545454545, + "temperature_observed_min_C": 29.859741, + "temperature_observed_max_C": 42.097717, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.3887000000031549, + "sample_dt_max_s": 29381.901100000134, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C13_CYCLING.json b/tests/MATR_B2C13_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..3adffaf2f39dc312c9dd145b051334776af2bc37 --- /dev/null +++ b/tests/MATR_B2C13_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C13_CYCLING", + "cell_id": "MATR_B2C13", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4C(40%)-6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 483, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 748863, + "duration_s": 1889154.3148000021, + "voltage_observed_min_V": 1.9970031, + "voltage_observed_max_V": 3.6170211, + "current_observed_min_A": -4.002882818181818, + "current_observed_max_A": 6.020924, + "temperature_observed_min_C": 29.760836, + "temperature_observed_max_C": 41.545719, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.3027999999467283, + "sample_dt_max_s": 29391.826799999923, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C14_CYCLING.json b/tests/MATR_B2C14_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..8c0daca02f2cf3d5736d8055161585e1fc2c2e26 --- /dev/null +++ b/tests/MATR_B2C14_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C14_CYCLING", + "cell_id": "MATR_B2C14", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4C(4%)-4.85C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 485, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 653871, + "duration_s": 1841287.4369999997, + "voltage_observed_min_V": 1.9950495, + "voltage_observed_max_V": 3.6004629, + "current_observed_min_A": -4.001718909090909, + "current_observed_max_A": 4.9491760909090905, + "temperature_observed_min_C": 29.686678, + "temperature_observed_max_C": 41.034645, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.988700000074459, + "sample_dt_max_s": 29396.75349999999, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C17_CYCLING.json b/tests/MATR_B2C17_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..de5e14f4dd95b76d6bb5add133471118e8a2adce --- /dev/null +++ b/tests/MATR_B2C17_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C17_CYCLING", + "cell_id": "MATR_B2C17", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.4C(24%)-5C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 494, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 688994, + "duration_s": 1905142.9749000017, + "voltage_observed_min_V": 1.9958034, + "voltage_observed_max_V": 3.6189351, + "current_observed_min_A": -4.003369636363636, + "current_observed_max_A": 5.0142609090909085, + "temperature_observed_min_C": 28.049366, + "temperature_observed_max_C": 37.27734, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 3.439200000022538, + "sample_dt_max_s": 29347.716799999936, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C18_CYCLING.json b/tests/MATR_B2C18_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..6ac7dd9f9ecf83002722fd2506ed4d01ef8c458e --- /dev/null +++ b/tests/MATR_B2C18_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C18_CYCLING", + "cell_id": "MATR_B2C18", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.4C(47%)-5.5C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 487, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 725091, + "duration_s": 1884501.5585999992, + "voltage_observed_min_V": 1.9956207, + "voltage_observed_max_V": 3.6161203, + "current_observed_min_A": -4.007539272727272, + "current_observed_max_A": 5.537490818181817, + "temperature_observed_min_C": 28.746962, + "temperature_observed_max_C": 41.118435, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.3963000000076136, + "sample_dt_max_s": 29352.73239999998, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C19_CYCLING.json b/tests/MATR_B2C19_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..1ee6e53cc3e20251867d934a2232d7e58dd9e462 --- /dev/null +++ b/tests/MATR_B2C19_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C19_CYCLING", + "cell_id": "MATR_B2C19", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.4C(55%)-6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 461, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 691731, + "duration_s": 1734653.8554000012, + "voltage_observed_min_V": 1.9968953, + "voltage_observed_max_V": 3.6393142, + "current_observed_min_A": -4.007479909090908, + "current_observed_max_A": 6.0015244545454545, + "temperature_observed_min_C": 28.749666, + "temperature_observed_max_C": 38.611477, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.081800000043586, + "sample_dt_max_s": 29358.907800000045, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C1_CYCLING.json b/tests/MATR_B2C1_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..440cc4ab2e8392675b11193efc34060f45338fa4 --- /dev/null +++ b/tests/MATR_B2C1_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C1_CYCLING", + "cell_id": "MATR_B2C1", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 2.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 2C(10%)-6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 148, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 236884, + "duration_s": 556849.4120000004, + "voltage_observed_min_V": 1.9969516, + "voltage_observed_max_V": 3.6004758, + "current_observed_min_A": -4.010508727272727, + "current_observed_max_A": 6.127700818181817, + "temperature_observed_min_C": 27.851921, + "temperature_observed_max_C": 38.543324, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.1839999999501742, + "sample_dt_max_s": 5.0860000000102445, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C20_CYCLING.json b/tests/MATR_B2C20_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..d7f9d6d70cf8f580488f69871dab693f169108a6 --- /dev/null +++ b/tests/MATR_B2C20_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C20_CYCLING", + "cell_id": "MATR_B2C20", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.4, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.4C(8%)-4.85C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 502, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 679029, + "duration_s": 1911740.3158, + "voltage_observed_min_V": 1.9956098, + "voltage_observed_max_V": 3.6323647, + "current_observed_min_A": -4.001744909090909, + "current_observed_max_A": 4.932378454545454, + "temperature_observed_min_C": 28.939796, + "temperature_observed_max_C": 41.052429, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.98879999993369, + "sample_dt_max_s": 29355.015400000033, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C21_CYCLING.json b/tests/MATR_B2C21_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..954aab2b02d7930f4ac7934ba79633e4a51d9d83 --- /dev/null +++ b/tests/MATR_B2C21_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C21_CYCLING", + "cell_id": "MATR_B2C21", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.65, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.65C(19%)-4.85C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 489, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 678554, + "duration_s": 1877851.1561999987, + "voltage_observed_min_V": 1.9960313, + "voltage_observed_max_V": 3.6287465, + "current_observed_min_A": -4.043403545454545, + "current_observed_max_A": 4.915818272727273, + "temperature_observed_min_C": 28.554003, + "temperature_observed_max_C": 37.163727, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 3.3426000000035856, + "sample_dt_max_s": 29365.66410000017, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C22_CYCLING.json b/tests/MATR_B2C22_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..2adb3eb40619f053b2633c5518980003d3da7168 --- /dev/null +++ b/tests/MATR_B2C22_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C22_CYCLING", + "cell_id": "MATR_B2C22", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.65, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.65C(44%)-5C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 513, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 702819, + "duration_s": 1969115.4055000006, + "voltage_observed_min_V": 1.9961743, + "voltage_observed_max_V": 3.6116452, + "current_observed_min_A": -4.001399363636363, + "current_observed_max_A": 5.016347727272726, + "temperature_observed_min_C": 29.189289, + "temperature_observed_max_C": 38.29266, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.986500000115484, + "sample_dt_max_s": 29361.743800000055, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C23_CYCLING.json b/tests/MATR_B2C23_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..eb60cfb88124e4c08606481b14714b23b7f1ea57 --- /dev/null +++ b/tests/MATR_B2C23_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C23_CYCLING", + "cell_id": "MATR_B2C23", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.65, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.65C(69%)-6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 527, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 755497, + "duration_s": 2036043.1243000007, + "voltage_observed_min_V": 1.996244, + "voltage_observed_max_V": 3.6235232, + "current_observed_min_A": -4.004937909090909, + "current_observed_max_A": 6.002034272727272, + "temperature_observed_min_C": 29.246206, + "temperature_observed_max_C": 38.802681, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 2.138249999959953, + "sample_dt_max_s": 29363.838099999935, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C24_CYCLING.json b/tests/MATR_B2C24_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..f21f21fe9e5fc95fb1bd214c92605d6895faada1 --- /dev/null +++ b/tests/MATR_B2C24_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C24_CYCLING", + "cell_id": "MATR_B2C24", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.8, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.8C(80%)-4.8C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 495, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 626607, + "duration_s": 1900490.8732000005, + "voltage_observed_min_V": 1.9953299, + "voltage_observed_max_V": 3.6082582, + "current_observed_min_A": -4.008417090909091, + "current_observed_max_A": 4.8157085454545445, + "temperature_observed_min_C": 26.537676, + "temperature_observed_max_C": 37.816673, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 3.057550000026822, + "sample_dt_max_s": 29288.7919999999, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C25_CYCLING.json b/tests/MATR_B2C25_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..4596ef7838b17e3fdb5f5f616b442caa82228500 --- /dev/null +++ b/tests/MATR_B2C25_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C25_CYCLING", + "cell_id": "MATR_B2C25", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.8, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.8C(80%)-4.8C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 461, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 584403, + "duration_s": 1771055.5284000018, + "voltage_observed_min_V": 1.9962401, + "voltage_observed_max_V": 3.6087403, + "current_observed_min_A": -4.006056818181818, + "current_observed_max_A": 4.843784636363636, + "temperature_observed_min_C": 27.739817, + "temperature_observed_max_C": 34.012157, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 2.3915500000002794, + "sample_dt_max_s": 29300.13599999994, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C26_CYCLING.json b/tests/MATR_B2C26_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..12dc422c90e2d26566f1e2110240fe709ecc49f3 --- /dev/null +++ b/tests/MATR_B2C26_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C26_CYCLING", + "cell_id": "MATR_B2C26", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.8, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.8C(80%)-4.8C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 471, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 599587, + "duration_s": 1805198.931999999, + "voltage_observed_min_V": 1.9922757, + "voltage_observed_max_V": 3.6083941, + "current_observed_min_A": -4.004799272727272, + "current_observed_max_A": 4.809268636363636, + "temperature_observed_min_C": 28.90402, + "temperature_observed_max_C": 38.501095, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 2.481499999994412, + "sample_dt_max_s": 29303.77689999994, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C27_CYCLING.json b/tests/MATR_B2C27_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..d531b7c8d76518891536d7ed7f165d15435e431e --- /dev/null +++ b/tests/MATR_B2C27_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C27_CYCLING", + "cell_id": "MATR_B2C27", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.9, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.9C(27%)-4.75C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 468, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 642124, + "duration_s": 1789388.1199000014, + "voltage_observed_min_V": 1.9958267, + "voltage_observed_max_V": 3.6365805, + "current_observed_min_A": -4.005216272727273, + "current_observed_max_A": 4.927433181818182, + "temperature_observed_min_C": 29.155989, + "temperature_observed_max_C": 38.976593, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.012099999934435, + "sample_dt_max_s": 29372.38209999993, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C28_CYCLING.json b/tests/MATR_B2C28_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..5375d6ce1d52273884e1eda3dffc038480118be6 --- /dev/null +++ b/tests/MATR_B2C28_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C28_CYCLING", + "cell_id": "MATR_B2C28", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.9, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.9C(61%)-4.5C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 509, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 693024, + "duration_s": 1935555.3831000004, + "voltage_observed_min_V": 1.9961843, + "voltage_observed_max_V": 3.6198759, + "current_observed_min_A": -4.008595727272727, + "current_observed_max_A": 5.044487999999999, + "temperature_observed_min_C": 29.461449, + "temperature_observed_max_C": 40.887737, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.987500000046566, + "sample_dt_max_s": 29371.188599999878, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C29_CYCLING.json b/tests/MATR_B2C29_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..158a9833ebad8de85da1f3f68f38360068b60d08 --- /dev/null +++ b/tests/MATR_B2C29_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C29_CYCLING", + "cell_id": "MATR_B2C29", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.9, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.9C(69%)-4.25C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 498, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 667928, + "duration_s": 1895009.1834999998, + "voltage_observed_min_V": 1.9875698, + "voltage_observed_max_V": 3.6467743, + "current_observed_min_A": -4.206292454545454, + "current_observed_max_A": 5.008988818181818, + "temperature_observed_min_C": 29.798824, + "temperature_observed_max_C": 42.099056, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.9918000000179745, + "sample_dt_max_s": 29373.12029999995, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C2_CYCLING.json b/tests/MATR_B2C2_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..1fa15ca173e6aa55f42e87ecd6f2a4edce85f682 --- /dev/null +++ b/tests/MATR_B2C2_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C2_CYCLING", + "cell_id": "MATR_B2C2", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 2.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 2C(2%)-5C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 438, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 622809, + "duration_s": 1688624.115300001, + "voltage_observed_min_V": 1.9950004, + "voltage_observed_max_V": 3.6004682, + "current_observed_min_A": -4.000712272727273, + "current_observed_max_A": 5.288051272727272, + "temperature_observed_min_C": 28.361429, + "temperature_observed_max_C": 42.012096, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 2.1761000000406057, + "sample_dt_max_s": 29320.08309999993, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C30_CYCLING.json b/tests/MATR_B2C30_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..09eefe4f7ee228c1c74363e9e0b0ab94188077e1 --- /dev/null +++ b/tests/MATR_B2C30_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C30_CYCLING", + "cell_id": "MATR_B2C30", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.2, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.2C(10%)-4.75C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 481, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 655160, + "duration_s": 1825242.194300002, + "voltage_observed_min_V": 1.9956889, + "voltage_observed_max_V": 3.6242127, + "current_observed_min_A": -4.003707272727272, + "current_observed_max_A": 5.202979181818181, + "temperature_observed_min_C": 29.501244, + "temperature_observed_max_C": 39.436893, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.488699999870732, + "sample_dt_max_s": 29397.357299999916, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C31_CYCLING.json b/tests/MATR_B2C31_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..e4fa8b510276f41230fc01c9caa605b929a393b0 --- /dev/null +++ b/tests/MATR_B2C31_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C31_CYCLING", + "cell_id": "MATR_B2C31", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.2, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.2C(37%)-4.5C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 492, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 655003, + "duration_s": 1856084.8348000005, + "voltage_observed_min_V": 1.9959083, + "voltage_observed_max_V": 3.6144528, + "current_observed_min_A": -4.0058252727272725, + "current_observed_max_A": 5.227074181818182, + "temperature_observed_min_C": 29.369753, + "temperature_observed_max_C": 37.177883, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.991299999994226, + "sample_dt_max_s": 29402.59779999999, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C32_CYCLING.json b/tests/MATR_B2C32_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..80bb2b8f4ae10dc5c918538020903a8e76062722 --- /dev/null +++ b/tests/MATR_B2C32_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C32_CYCLING", + "cell_id": "MATR_B2C32", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.2, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.2C(50%)-4.25C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 519, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 685761, + "duration_s": 1962986.5383999983, + "voltage_observed_min_V": 1.9931626, + "voltage_observed_max_V": 3.6084514, + "current_observed_min_A": -4.007696272727273, + "current_observed_max_A": 5.228139727272727, + "temperature_observed_min_C": 29.405266, + "temperature_observed_max_C": 41.810509, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.992299999983516, + "sample_dt_max_s": 29398.12479999999, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C33_CYCLING.json b/tests/MATR_B2C33_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..1a9cdbd31fb1d47210af5048b8532b83fa95129e --- /dev/null +++ b/tests/MATR_B2C33_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C33_CYCLING", + "cell_id": "MATR_B2C33", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.2, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.2C(58%)-4C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 520, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 684303, + "duration_s": 1983313.8403999987, + "voltage_observed_min_V": 1.9958816, + "voltage_observed_max_V": 3.617166, + "current_observed_min_A": -4.009493909090908, + "current_observed_max_A": 5.2293864545454545, + "temperature_observed_min_C": 29.80002, + "temperature_observed_max_C": 39.686672, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.993399999977555, + "sample_dt_max_s": 29404.84539999999, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C34_CYCLING.json b/tests/MATR_B2C34_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..9e402505a4b866a1ada994a3a3f8cfc0e6deaec2 --- /dev/null +++ b/tests/MATR_B2C34_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C34_CYCLING", + "cell_id": "MATR_B2C34", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.2, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.2C(66%)-3.5C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 499, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 647526, + "duration_s": 1880011.985099998, + "voltage_observed_min_V": 1.9959326, + "voltage_observed_max_V": 3.6104689, + "current_observed_min_A": -4.004710363636363, + "current_observed_max_A": 5.232924545454545, + "temperature_observed_min_C": 29.954657, + "temperature_observed_max_C": 41.197319, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.993699999991804, + "sample_dt_max_s": 29412.240799999912, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C35_CYCLING.json b/tests/MATR_B2C35_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..e893bef0a76c3854d18779ef52227c29e3fbe445 --- /dev/null +++ b/tests/MATR_B2C35_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C35_CYCLING", + "cell_id": "MATR_B2C35", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.2, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.2C(71%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 463, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 600872, + "duration_s": 1759337.7928000004, + "voltage_observed_min_V": 1.9967766, + "voltage_observed_max_V": 3.6141176, + "current_observed_min_A": -4.009040454545454, + "current_observed_max_A": 5.227963727272726, + "temperature_observed_min_C": 30.028103, + "temperature_observed_max_C": 42.72113, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.993900000001304, + "sample_dt_max_s": 29418.01450000005, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C36_CYCLING.json b/tests/MATR_B2C36_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..09de9732dfa7b28dcfeded160f6ebd361204541d --- /dev/null +++ b/tests/MATR_B2C36_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C36_CYCLING", + "cell_id": "MATR_B2C36", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(25%)-4.5C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 535, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 727947, + "duration_s": 2037823.954600001, + "voltage_observed_min_V": 1.9954319, + "voltage_observed_max_V": 3.6161785, + "current_observed_min_A": -4.00505409090909, + "current_observed_max_A": 5.626723545454545, + "temperature_observed_min_C": 29.760715, + "temperature_observed_max_C": 41.959873, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.98499999998603, + "sample_dt_max_s": 29433.84600000002, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C37_CYCLING.json b/tests/MATR_B2C37_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..ffa5f7ac4c1f2840d9547c6892b05a4c439fae3a --- /dev/null +++ b/tests/MATR_B2C37_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C37_CYCLING", + "cell_id": "MATR_B2C37", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(38%)-4.25C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 478, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 643371, + "duration_s": 1832132.4384999985, + "voltage_observed_min_V": 1.9964266, + "voltage_observed_max_V": 3.6151304, + "current_observed_min_A": -4.001434090909091, + "current_observed_max_A": 5.640546636363636, + "temperature_observed_min_C": 29.329681, + "temperature_observed_max_C": 38.339672, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.991500000003725, + "sample_dt_max_s": 29431.18479999993, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C38_CYCLING.json b/tests/MATR_B2C38_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..04a66508a41a888b965550fbdeb7c013f5f7d1b2 --- /dev/null +++ b/tests/MATR_B2C38_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C38_CYCLING", + "cell_id": "MATR_B2C38", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(47%)-4C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 465, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 617462, + "duration_s": 1768016.7675000012, + "voltage_observed_min_V": 1.9882846, + "voltage_observed_max_V": 3.6107697, + "current_observed_min_A": -4.004112545454545, + "current_observed_max_A": 5.614908363636363, + "temperature_observed_min_C": 29.27305, + "temperature_observed_max_C": 39.303719, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.992100000032224, + "sample_dt_max_s": 29434.835900000064, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C39_CYCLING.json b/tests/MATR_B2C39_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..b2f480e869bfd7e6fcb30c3d4db8c9c4fc6dba3f --- /dev/null +++ b/tests/MATR_B2C39_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C39_CYCLING", + "cell_id": "MATR_B2C39", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(58%)-3.5C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 459, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 606633, + "duration_s": 1749092.7017, + "voltage_observed_min_V": 1.9960437, + "voltage_observed_max_V": 3.6130471, + "current_observed_min_A": -4.003546, + "current_observed_max_A": 5.615536090909091, + "temperature_observed_min_C": 29.296721, + "temperature_observed_max_C": 38.803932, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.992899999953806, + "sample_dt_max_s": 29439.723899999983, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C3_CYCLING.json b/tests/MATR_B2C3_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..b452c5b2b2388748628558cc07d2020070ac43a3 --- /dev/null +++ b/tests/MATR_B2C3_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C3_CYCLING", + "cell_id": "MATR_B2C3", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 2.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 2C(7%)-5.5C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 335, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 591495, + "duration_s": 1289854.8270999999, + "voltage_observed_min_V": 1.9957457, + "voltage_observed_max_V": 3.6240206, + "current_observed_min_A": -4.006056818181818, + "current_observed_max_A": 6.396848545454545, + "temperature_observed_min_C": 29.212507, + "temperature_observed_max_C": 41.632694, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.9791999999724794, + "sample_dt_max_s": 29325.974000000046, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C40_CYCLING.json b/tests/MATR_B2C40_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..029620f24e99a9d239f377212b4b262414ba3572 --- /dev/null +++ b/tests/MATR_B2C40_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C40_CYCLING", + "cell_id": "MATR_B2C40", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(5%)-4.75C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 499, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 720208, + "duration_s": 1895479.2142000012, + "voltage_observed_min_V": 1.9883614, + "voltage_observed_max_V": 3.6423006, + "current_observed_min_A": -4.004951363636363, + "current_observed_max_A": 5.642065545454544, + "temperature_observed_min_C": 29.361746, + "temperature_observed_max_C": 42.151505, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.9226999999955297, + "sample_dt_max_s": 29454.433900000062, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C41_CYCLING.json b/tests/MATR_B2C41_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..384d6f3cdceef5eae84adf8ab991ace796ef9c49 --- /dev/null +++ b/tests/MATR_B2C41_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C41_CYCLING", + "cell_id": "MATR_B2C41", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(65%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 429, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 681188, + "duration_s": 1618526.3914000008, + "voltage_observed_min_V": 1.99575, + "voltage_observed_max_V": 3.6247659, + "current_observed_min_A": -4.006411818181818, + "current_observed_max_A": 5.678818454545453, + "temperature_observed_min_C": 29.332418, + "temperature_observed_max_C": 41.302402, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.2162999999709427, + "sample_dt_max_s": 29452.105700000073, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C42_CYCLING.json b/tests/MATR_B2C42_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..aec6d62ee2f0970b8cc1f43fc166ae24d13f10dd --- /dev/null +++ b/tests/MATR_B2C42_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C42_CYCLING", + "cell_id": "MATR_B2C42", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(20%)-4.5C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 466, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 677931, + "duration_s": 1778686.550599999, + "voltage_observed_min_V": 1.9963536, + "voltage_observed_max_V": 3.6247315, + "current_observed_min_A": -4.003240818181818, + "current_observed_max_A": 6.036865909090909, + "temperature_observed_min_C": 29.574072, + "temperature_observed_max_C": 41.6758, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.8872999999439344, + "sample_dt_max_s": 29455.286199999973, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C43_CYCLING.json b/tests/MATR_B2C43_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..b9adbb06e410985598edfeca72f1924ebc2ff1e3 --- /dev/null +++ b/tests/MATR_B2C43_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C43_CYCLING", + "cell_id": "MATR_B2C43", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(31%)-4.25C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 462, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 676098, + "duration_s": 1762503.6492000008, + "voltage_observed_min_V": 1.9959612, + "voltage_observed_max_V": 3.6194143, + "current_observed_min_A": -4.007056454545454, + "current_observed_max_A": 6.02074709090909, + "temperature_observed_min_C": 29.36311, + "temperature_observed_max_C": 41.297409, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.8575999999884516, + "sample_dt_max_s": 29467.151700000046, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C44_CYCLING.json b/tests/MATR_B2C44_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..727ad44bf375838d7630af95ba7ddaec8940a5ac --- /dev/null +++ b/tests/MATR_B2C44_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C44_CYCLING", + "cell_id": "MATR_B2C44", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(40%)-4C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 457, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 676297, + "duration_s": 1735091.7545000012, + "voltage_observed_min_V": 1.9959178, + "voltage_observed_max_V": 3.6147113, + "current_observed_min_A": -4.018261636363636, + "current_observed_max_A": 6.038246181818181, + "temperature_observed_min_C": 29.560511, + "temperature_observed_max_C": 41.483074, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.7168000000528991, + "sample_dt_max_s": 29462.169300000067, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C45_CYCLING.json b/tests/MATR_B2C45_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..a5606f3be9571de1c0a41a15e6a3b400c717bb7e --- /dev/null +++ b/tests/MATR_B2C45_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C45_CYCLING", + "cell_id": "MATR_B2C45", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(4%)-4.75C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 487, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 666519, + "duration_s": 1844186.1709000017, + "voltage_observed_min_V": 1.9962139, + "voltage_observed_max_V": 3.6210327, + "current_observed_min_A": -4.006827545454545, + "current_observed_max_A": 6.022245272727273, + "temperature_observed_min_C": 29.232338, + "temperature_observed_max_C": 40.477322, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.154599999950733, + "sample_dt_max_s": 29471.615700000082, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C46_CYCLING.json b/tests/MATR_B2C46_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..1ac361a723ae3402faa80999b126a3726deaa1a2 --- /dev/null +++ b/tests/MATR_B2C46_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C46_CYCLING", + "cell_id": "MATR_B2C46", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(52%)-3.5C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 429, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 651402, + "duration_s": 1633630.858, + "voltage_observed_min_V": 1.995801, + "voltage_observed_max_V": 3.6081638, + "current_observed_min_A": -4.078829090909091, + "current_observed_max_A": 6.022529636363635, + "temperature_observed_min_C": 29.23349, + "temperature_observed_max_C": 39.614529, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.5296000000089407, + "sample_dt_max_s": 29478.005600000033, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C47_CYCLING.json b/tests/MATR_B2C47_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..09e6652dcccc2f1fbb03ddea2038acaeba4606a8 --- /dev/null +++ b/tests/MATR_B2C47_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C47_CYCLING", + "cell_id": "MATR_B2C47", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 6.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 6C(60%)-3C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 713, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1116723, + "duration_s": 2499949.1764, + "voltage_observed_min_V": 1.997108, + "voltage_observed_max_V": 3.6108232, + "current_observed_min_A": -4.017234272727272, + "current_observed_max_A": 6.024568727272727, + "temperature_observed_min_C": 29.32967, + "temperature_observed_max_C": 38.47134, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.8981999999377877, + "sample_dt_max_s": 29487.036500000046, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C4_CYCLING.json b/tests/MATR_B2C4_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..457d3d0e168c39ce3d0077c2c1914529f91f3323 --- /dev/null +++ b/tests/MATR_B2C4_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C4_CYCLING", + "cell_id": "MATR_B2C4", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 3.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 3.6C(22%)-5.5C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 444, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 651133, + "duration_s": 1694732.1386000018, + "voltage_observed_min_V": 1.9950457, + "voltage_observed_max_V": 3.6180592, + "current_observed_min_A": -4.007257545454545, + "current_observed_max_A": 5.549718727272727, + "temperature_observed_min_C": 29.384108, + "temperature_observed_max_C": 41.109001, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 1.516200000041863, + "sample_dt_max_s": 29327.136999999988, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C5_CYCLING.json b/tests/MATR_B2C5_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..7862f1aa1917b85e14444b0e858ac86d01a9ba8f --- /dev/null +++ b/tests/MATR_B2C5_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C5_CYCLING", + "cell_id": "MATR_B2C5", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 3.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 3.6C(2%)-4.85C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 480, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 654779, + "duration_s": 1827315.8122999994, + "voltage_observed_min_V": 1.995698, + "voltage_observed_max_V": 3.6087837, + "current_observed_min_A": -4.002563272727272, + "current_observed_max_A": 4.956636454545454, + "temperature_observed_min_C": 29.048193, + "temperature_observed_max_C": 39.176895, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 4.577099999936763, + "sample_dt_max_s": 29333.55330000003, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B2C6_CYCLING.json b/tests/MATR_B2C6_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..1f635677dd4b50361ceefa0d81d97f32603e2f31 --- /dev/null +++ b/tests/MATR_B2C6_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B2C6_CYCLING", + "cell_id": "MATR_B2C6", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 3.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 3.6C(30%)-6C. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 511, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 873738, + "duration_s": 1836902.2673999981, + "voltage_observed_min_V": 1.996285, + "voltage_observed_max_V": 3.6269975, + "current_observed_min_A": -4.006269636363636, + "current_observed_max_A": 6.5079983636363625, + "temperature_observed_min_C": 29.182245, + "temperature_observed_max_C": 39.70097, + "sample_dt_min_s": 0.0, + "sample_dt_median_s": 0.8465999999898486, + "sample_dt_max_s": 29334.294199999887, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C0_CYCLING.json b/tests/MATR_B3C0_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..41825258e7a1eb04a9017e32237a5dc78a649f69 --- /dev/null +++ b/tests/MATR_B3C0_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C0_CYCLING", + "cell_id": "MATR_B3C0", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5C(67%)-4C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1009, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 739224, + "duration_s": 2579343.5280999993, + "voltage_observed_min_V": 1.9874263, + "voltage_observed_max_V": 3.6010709, + "current_observed_min_A": -4.002086454545454, + "current_observed_max_A": 5.02749009090909, + "temperature_observed_min_C": 30.613684, + "temperature_observed_max_C": 35.64046435840249, + "sample_dt_min_s": 0.00039999978616833687, + "sample_dt_median_s": 5.004800000227988, + "sample_dt_max_s": 5.0893000001087785, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C10_CYCLING.json b/tests/MATR_B3C10_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..626851f187b8e48cd657f14d93b1f1e1bc768537 --- /dev/null +++ b/tests/MATR_B3C10_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C10_CYCLING", + "cell_id": "MATR_B3C10", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.8, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.8C(80%)-4.8C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1078, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 813183, + "duration_s": 2871537.986800005, + "voltage_observed_min_V": 1.9964905, + "voltage_observed_max_V": 3.600687, + "current_observed_min_A": -4.0323460909090905, + "current_observed_max_A": 4.369829363636363, + "temperature_observed_min_C": 30.42616190989248, + "temperature_observed_max_C": 37.382118, + "sample_dt_min_s": 0.0002999999560415745, + "sample_dt_median_s": 5.004299999913201, + "sample_dt_max_s": 5.066800000146031, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C11_CYCLING.json b/tests/MATR_B3C11_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..1d7c502ea726e6023ffb52bf7f4d2d2de0ca56a1 --- /dev/null +++ b/tests/MATR_B3C11_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C11_CYCLING", + "cell_id": "MATR_B3C11", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(19%)-4.6C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 817, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 634412, + "duration_s": 2201034.938299999, + "voltage_observed_min_V": 1.9888349, + "voltage_observed_max_V": 3.6006808, + "current_observed_min_A": -4.001699363636364, + "current_observed_max_A": 5.609983999999999, + "temperature_observed_min_C": 31.117903, + "temperature_observed_max_C": 41.606659, + "sample_dt_min_s": 0.00020000000949949026, + "sample_dt_median_s": 5.0049000000581145, + "sample_dt_max_s": 5.086099999956787, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C12_CYCLING.json b/tests/MATR_B3C12_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..42dfab8195e4ce8d5a6fc48c46d06039f21a80aa --- /dev/null +++ b/tests/MATR_B3C12_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C12_CYCLING", + "cell_id": "MATR_B3C12", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(36%)-4.3C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 932, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 720092, + "duration_s": 2531093.5831999993, + "voltage_observed_min_V": 1.9787612, + "voltage_observed_max_V": 3.6002269, + "current_observed_min_A": -4.009264999999999, + "current_observed_max_A": 5.604969363636363, + "temperature_observed_min_C": 30.951786787726437, + "temperature_observed_max_C": 38.25221908294894, + "sample_dt_min_s": 0.0004999996162950993, + "sample_dt_median_s": 5.004799999995157, + "sample_dt_max_s": 5.073499999940395, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C13_CYCLING.json b/tests/MATR_B3C13_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..1c80ce7b247c0b31c843894efcd28e8cceb8280e --- /dev/null +++ b/tests/MATR_B3C13_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C13_CYCLING", + "cell_id": "MATR_B3C13", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(19%)-4.6C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 816, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 628900, + "duration_s": 2175826.851799999, + "voltage_observed_min_V": 1.9609742, + "voltage_observed_max_V": 3.6007285, + "current_observed_min_A": -4.001601363636364, + "current_observed_max_A": 5.609973545454546, + "temperature_observed_min_C": 31.008408624872537, + "temperature_observed_max_C": 40.731033, + "sample_dt_min_s": 0.000599999912083149, + "sample_dt_median_s": 5.0049000000581145, + "sample_dt_max_s": 5.097699999809265, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C14_CYCLING.json b/tests/MATR_B3C14_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..de8d3d0ff7117317547108d3c55578f5317e0c6c --- /dev/null +++ b/tests/MATR_B3C14_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C14_CYCLING", + "cell_id": "MATR_B3C14", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(36%)-4.3C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 858, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 664686, + "duration_s": 2347100.446199997, + "voltage_observed_min_V": 1.985075, + "voltage_observed_max_V": 3.6003199, + "current_observed_min_A": -4.001048272727273, + "current_observed_max_A": 5.607705545454546, + "temperature_observed_min_C": 30.790092, + "temperature_observed_max_C": 38.528903156208195, + "sample_dt_min_s": 0.0003000000724568963, + "sample_dt_median_s": 5.0053000000771135, + "sample_dt_max_s": 5.073499999940395, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C15_CYCLING.json b/tests/MATR_B3C15_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..2ad8dc36e132d1054dc41a6f49a169a0d66555ee --- /dev/null +++ b/tests/MATR_B3C15_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C15_CYCLING", + "cell_id": "MATR_B3C15", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.9, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.9C(15%)-4.6C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 876, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 677509, + "duration_s": 2336786.7422999972, + "voltage_observed_min_V": 1.9711418, + "voltage_observed_max_V": 3.6005449, + "current_observed_min_A": -4.002061727272727, + "current_observed_max_A": 5.910897727272727, + "temperature_observed_min_C": 30.416367891258297, + "temperature_observed_max_C": 40.541486866815895, + "sample_dt_min_s": 0.0006999997422099113, + "sample_dt_median_s": 5.0046999999322, + "sample_dt_max_s": 5.079100000206381, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C16_CYCLING.json b/tests/MATR_B3C16_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..f9c4987727f8060df1c02da922de0c8003d1f120 --- /dev/null +++ b/tests/MATR_B3C16_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C16_CYCLING", + "cell_id": "MATR_B3C16", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.8, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.8C(80%)-4.8C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1638, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1187584, + "duration_s": 4002455.4959999993, + "voltage_observed_min_V": 1.9959445, + "voltage_observed_max_V": 3.6009288, + "current_observed_min_A": -4.003406909090908, + "current_observed_max_A": 4.368619090909091, + "temperature_observed_min_C": 31.641069440702125, + "temperature_observed_max_C": 41.0363569729935, + "sample_dt_min_s": 0.0002000001259148121, + "sample_dt_median_s": 5.0027000000700355, + "sample_dt_max_s": 5.066899999976158, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C17_CYCLING.json b/tests/MATR_B3C17_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..7aa95d28b0f09d53292c3b761e425d842579e3ea --- /dev/null +++ b/tests/MATR_B3C17_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C17_CYCLING", + "cell_id": "MATR_B3C17", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.3, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.3C(54%)-4C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1315, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 936102, + "duration_s": 3227085.276899989, + "voltage_observed_min_V": 1.9892993, + "voltage_observed_max_V": 3.6002326, + "current_observed_min_A": -4.0036344545454545, + "current_observed_max_A": 5.311483909090908, + "temperature_observed_min_C": 31.041136885840285, + "temperature_observed_max_C": 40.078914597977146, + "sample_dt_min_s": 0.0002000001259148121, + "sample_dt_median_s": 5.003299999982119, + "sample_dt_max_s": 76573.0129, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C18_CYCLING.json b/tests/MATR_B3C18_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..415dc6df3b6b59c4c6c1f95a5ddce724824a728e --- /dev/null +++ b/tests/MATR_B3C18_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C18_CYCLING", + "cell_id": "MATR_B3C18", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(19%)-4.6C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1146, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 845256, + "duration_s": 2795782.3298000037, + "voltage_observed_min_V": 1.9860764, + "voltage_observed_max_V": 3.6002789, + "current_observed_min_A": -4.002540727272726, + "current_observed_max_A": 5.607074363636364, + "temperature_observed_min_C": 32.020798, + "temperature_observed_max_C": 40.818161, + "sample_dt_min_s": 0.0002000001259148121, + "sample_dt_median_s": 5.003299999982119, + "sample_dt_max_s": 5.079700000118464, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C19_CYCLING.json b/tests/MATR_B3C19_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..3dc36a99f7a3d322a2fc6222563145244d4d3ed1 --- /dev/null +++ b/tests/MATR_B3C19_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C19_CYCLING", + "cell_id": "MATR_B3C19", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(36%)-4.3C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1155, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 846180, + "duration_s": 2849604.9559000097, + "voltage_observed_min_V": 1.9926009, + "voltage_observed_max_V": 3.6003976, + "current_observed_min_A": -4.00201709090909, + "current_observed_max_A": 5.608146, + "temperature_observed_min_C": 31.769892, + "temperature_observed_max_C": 40.562739133112146, + "sample_dt_min_s": 0.0002000001259148121, + "sample_dt_median_s": 5.003799999831244, + "sample_dt_max_s": 5.080500000156462, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C1_CYCLING.json b/tests/MATR_B3C1_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..c95d02a20350eb28b154d8a93f79c63ef4140ba8 --- /dev/null +++ b/tests/MATR_B3C1_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C1_CYCLING", + "cell_id": "MATR_B3C1", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.3, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.3C(54%)-4C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1063, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 764976, + "duration_s": 2663773.552000005, + "voltage_observed_min_V": 1.9875059, + "voltage_observed_max_V": 3.6004686, + "current_observed_min_A": -4.001451363636363, + "current_observed_max_A": 5.311216909090908, + "temperature_observed_min_C": 31.221146, + "temperature_observed_max_C": 40.986828, + "sample_dt_min_s": 0.0004999996162950993, + "sample_dt_median_s": 5.004799999995157, + "sample_dt_max_s": 3927.6029000000563, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C20_CYCLING.json b/tests/MATR_B3C20_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..b25822b72a33dad4fe85bce050f741970c0bcb97 --- /dev/null +++ b/tests/MATR_B3C20_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C20_CYCLING", + "cell_id": "MATR_B3C20", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5C(67%)-4C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 813, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 611399, + "duration_s": 2176975.387800001, + "voltage_observed_min_V": 1.9870596, + "voltage_observed_max_V": 3.6007318, + "current_observed_min_A": -4.003095181818182, + "current_observed_max_A": 5.013379181818181, + "temperature_observed_min_C": 30.598567437403773, + "temperature_observed_max_C": 39.017653705697214, + "sample_dt_min_s": 0.0004999998491257429, + "sample_dt_median_s": 5.005799999926239, + "sample_dt_max_s": 5.0837999996729195, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C21_CYCLING.json b/tests/MATR_B3C21_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..92538e638d7a4109ffee59ee19db7971137799df --- /dev/null +++ b/tests/MATR_B3C21_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C21_CYCLING", + "cell_id": "MATR_B3C21", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 3.7, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 3.7C(31%)-5.9C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 772, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 665390, + "duration_s": 1850157.2429999977, + "voltage_observed_min_V": 1.9637666, + "voltage_observed_max_V": 3.6005445, + "current_observed_min_A": -4.002441909090909, + "current_observed_max_A": 5.9109254545454535, + "temperature_observed_min_C": 31.554761921167493, + "temperature_observed_max_C": 41.05385541374639, + "sample_dt_min_s": 0.000599999912083149, + "sample_dt_median_s": 2.1494999998249114, + "sample_dt_max_s": 5.085800000000745, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C22_CYCLING.json b/tests/MATR_B3C22_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..c993cb050f022fc4f378cfc85d18b5f9a36b42cc --- /dev/null +++ b/tests/MATR_B3C22_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C22_CYCLING", + "cell_id": "MATR_B3C22", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.9, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.9C(60%)-3.1C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1002, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 721926, + "duration_s": 2501161.559399997, + "voltage_observed_min_V": 1.9642215, + "voltage_observed_max_V": 3.6010137, + "current_observed_min_A": -12.167636363636362, + "current_observed_max_A": 5.908910545454544, + "temperature_observed_min_C": 31.405123, + "temperature_observed_max_C": 40.658785270365854, + "sample_dt_min_s": 0.0005000000819563866, + "sample_dt_median_s": 5.004300000146031, + "sample_dt_max_s": 5.071899999864399, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C23_CYCLING.json b/tests/MATR_B3C23_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..27f4ac6cfa0b312a4b2805d0854ca429ad4bc15c --- /dev/null +++ b/tests/MATR_B3C23_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C23_CYCLING", + "cell_id": "MATR_B3C23", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.8, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.8C(80%)-4.8C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 2189, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1561100, + "duration_s": 5417861.268199982, + "voltage_observed_min_V": 1.9938579, + "voltage_observed_max_V": 3.6006656, + "current_observed_min_A": -4.002695909090908, + "current_observed_max_A": 4.370848909090909, + "temperature_observed_min_C": 29.901241, + "temperature_observed_max_C": 39.143856, + "sample_dt_min_s": 0.00029999949038028717, + "sample_dt_median_s": 5.001399999950081, + "sample_dt_max_s": 5.0518000004813075, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C24_CYCLING.json b/tests/MATR_B3C24_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..4e2c806dc26478767de3aeb23610f09f8b06f4f1 --- /dev/null +++ b/tests/MATR_B3C24_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C24_CYCLING", + "cell_id": "MATR_B3C24", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5C(67%)-4C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 825, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 608125, + "duration_s": 2154454.8543000007, + "voltage_observed_min_V": 1.9938002, + "voltage_observed_max_V": 3.6004848, + "current_observed_min_A": -4.002102909090909, + "current_observed_max_A": 5.041233454545455, + "temperature_observed_min_C": 31.712324162858778, + "temperature_observed_max_C": 41.06335064100924, + "sample_dt_min_s": 0.0004999996162950993, + "sample_dt_median_s": 5.004600000102073, + "sample_dt_max_s": 46619.9273000001, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C25_CYCLING.json b/tests/MATR_B3C25_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..e8ead5add656345c83e1e40332231d8bf21fd9ca --- /dev/null +++ b/tests/MATR_B3C25_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C25_CYCLING", + "cell_id": "MATR_B3C25", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.3, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.3C(54%)-4C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 989, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 731123, + "duration_s": 2563160.8867999963, + "voltage_observed_min_V": 1.9837174, + "voltage_observed_max_V": 3.6004119, + "current_observed_min_A": -4.000941636363636, + "current_observed_max_A": 5.305529545454545, + "temperature_observed_min_C": 31.926973, + "temperature_observed_max_C": 42.28857244276346, + "sample_dt_min_s": 0.00039999978616833687, + "sample_dt_median_s": 5.004199999966659, + "sample_dt_max_s": 5.068399999989197, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C26_CYCLING.json b/tests/MATR_B3C26_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..0ca2e6ccfea88508a3f5e3ba9c05f6cc0eb0a3eb --- /dev/null +++ b/tests/MATR_B3C26_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C26_CYCLING", + "cell_id": "MATR_B3C26", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(19%)-4.6C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1028, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 780987, + "duration_s": 2671831.6410000036, + "voltage_observed_min_V": 1.9868493, + "voltage_observed_max_V": 3.6004825, + "current_observed_min_A": -4.001598363636363, + "current_observed_max_A": 5.60722, + "temperature_observed_min_C": 31.812666, + "temperature_observed_max_C": 42.705128, + "sample_dt_min_s": 0.0002000001259148121, + "sample_dt_median_s": 5.003499999991618, + "sample_dt_max_s": 5.064699999988079, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C27_CYCLING.json b/tests/MATR_B3C27_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..74a69bd82230afd6b2755a125c14e5bda55f9c9f --- /dev/null +++ b/tests/MATR_B3C27_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C27_CYCLING", + "cell_id": "MATR_B3C27", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(36%)-4.3C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 850, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 634299, + "duration_s": 2208660.5976999993, + "voltage_observed_min_V": 1.96942, + "voltage_observed_max_V": 3.600287, + "current_observed_min_A": -4.000995363636363, + "current_observed_max_A": 5.603422727272727, + "temperature_observed_min_C": 31.88298, + "temperature_observed_max_C": 42.356152, + "sample_dt_min_s": 0.0004999996162950993, + "sample_dt_median_s": 5.004699999990407, + "sample_dt_max_s": 5.083399999886751, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C28_CYCLING.json b/tests/MATR_B3C28_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..e6fb8caa44e08d842a4c6e0e86bb6914898d56e8 --- /dev/null +++ b/tests/MATR_B3C28_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C28_CYCLING", + "cell_id": "MATR_B3C28", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 3.7, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 3.7C(31%)-5.9C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 541, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 462915, + "duration_s": 1346987.6556000009, + "voltage_observed_min_V": 1.9866681, + "voltage_observed_max_V": 3.6004882, + "current_observed_min_A": -4.001203909090909, + "current_observed_max_A": 5.910523181818181, + "temperature_observed_min_C": 31.972694, + "temperature_observed_max_C": 42.975896992664936, + "sample_dt_min_s": 0.000599999912083149, + "sample_dt_median_s": 3.3493500000040513, + "sample_dt_max_s": 5.088200000114739, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C29_CYCLING.json b/tests/MATR_B3C29_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..3c3aaa164e177488c4d21d35e0cfa472ea7f1ca9 --- /dev/null +++ b/tests/MATR_B3C29_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C29_CYCLING", + "cell_id": "MATR_B3C29", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.9, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.9C(15%)-4.6C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 858, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 658927, + "duration_s": 2276826.2812999957, + "voltage_observed_min_V": 1.962543, + "voltage_observed_max_V": 3.6002765, + "current_observed_min_A": -4.002661727272727, + "current_observed_max_A": 5.907405545454544, + "temperature_observed_min_C": 30.393116, + "temperature_observed_max_C": 33.291325, + "sample_dt_min_s": 0.000599999912083149, + "sample_dt_median_s": 5.004399999976158, + "sample_dt_max_s": 5.071400000248104, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C2_CYCLING.json b/tests/MATR_B3C2_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..c53a06dcefa5344eb5116719a803bc3bc92df5c3 --- /dev/null +++ b/tests/MATR_B3C2_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C2_CYCLING", + "cell_id": "MATR_B3C2", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(19%)-4.6C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1267, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 919582, + "duration_s": 3050803.5626000008, + "voltage_observed_min_V": 1.9829268, + "voltage_observed_max_V": 3.6002841, + "current_observed_min_A": -4.016424545454545, + "current_observed_max_A": 7.123479, + "temperature_observed_min_C": 31.90753, + "temperature_observed_max_C": 44.662853, + "sample_dt_min_s": 0.0002999999560415745, + "sample_dt_median_s": 5.00289999996312, + "sample_dt_max_s": 5.065500000026077, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C30_CYCLING.json b/tests/MATR_B3C30_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..4cd683d296443050338f43ab6c11c67872ab0e69 --- /dev/null +++ b/tests/MATR_B3C30_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C30_CYCLING", + "cell_id": "MATR_B3C30", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.3, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.3C(54%)-4C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 935, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 697079, + "duration_s": 2471289.402300004, + "voltage_observed_min_V": 1.9948874, + "voltage_observed_max_V": 3.6002607, + "current_observed_min_A": -4.001770454545454, + "current_observed_max_A": 5.306604545454546, + "temperature_observed_min_C": 30.474829, + "temperature_observed_max_C": 36.16913934651668, + "sample_dt_min_s": 0.0004000002518296242, + "sample_dt_median_s": 5.005399999994552, + "sample_dt_max_s": 5.073399999644607, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C31_CYCLING.json b/tests/MATR_B3C31_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..6b7669aa11f1dfffecfa5c2132b3d90311b40033 --- /dev/null +++ b/tests/MATR_B3C31_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C31_CYCLING", + "cell_id": "MATR_B3C31", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.9, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.9C(60%)-3.1C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 731, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 554216, + "duration_s": 1984602.3861999998, + "voltage_observed_min_V": 1.9653077, + "voltage_observed_max_V": 3.6004376, + "current_observed_min_A": -4.018302363636363, + "current_observed_max_A": 5.928365545454545, + "temperature_observed_min_C": 30.816336554657795, + "temperature_observed_max_C": 40.01385040479664, + "sample_dt_min_s": 0.000699999975040555, + "sample_dt_median_s": 5.005499999970198, + "sample_dt_max_s": 5.070899999933317, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C32_CYCLING.json b/tests/MATR_B3C32_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..704af04d2599453dac214d95604f6a225fc6bace --- /dev/null +++ b/tests/MATR_B3C32_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C32_CYCLING", + "cell_id": "MATR_B3C32", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.8, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.8C(80%)-4.8C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 2237, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1561939, + "duration_s": 5417376.56970002, + "voltage_observed_min_V": 1.9928808, + "voltage_observed_max_V": 3.6011133, + "current_observed_min_A": -4.003160636363636, + "current_observed_max_A": 4.385324, + "temperature_observed_min_C": 31.524326, + "temperature_observed_max_C": 41.14129414187839, + "sample_dt_min_s": 0.0002000001259148121, + "sample_dt_median_s": 5.0020000003278255, + "sample_dt_max_s": 5.058699999935925, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C33_CYCLING.json b/tests/MATR_B3C33_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..3282a910a35a933001d24cafc942a3265959a8b2 --- /dev/null +++ b/tests/MATR_B3C33_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C33_CYCLING", + "cell_id": "MATR_B3C33", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5C(67%)-4C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1284, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 899735, + "duration_s": 3045403.624300005, + "voltage_observed_min_V": 1.9878354, + "voltage_observed_max_V": 3.6007543, + "current_observed_min_A": -4.002779636363637, + "current_observed_max_A": 5.027528272727272, + "temperature_observed_min_C": 31.415869, + "temperature_observed_max_C": 36.246208, + "sample_dt_min_s": 0.00039999978616833687, + "sample_dt_median_s": 5.003800000005867, + "sample_dt_max_s": 5.056100000161678, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C34_CYCLING.json b/tests/MATR_B3C34_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..e97617ba5ed6d7bd7ee76e0fcc30783526eef4ce --- /dev/null +++ b/tests/MATR_B3C34_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C34_CYCLING", + "cell_id": "MATR_B3C34", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.3, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.3C(54%)-4C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1158, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 820735, + "duration_s": 2779978.753700005, + "voltage_observed_min_V": 1.9905205, + "voltage_observed_max_V": 3.6004553, + "current_observed_min_A": -4.002367363636363, + "current_observed_max_A": 5.30898009090909, + "temperature_observed_min_C": 31.956257, + "temperature_observed_max_C": 42.03182948615022, + "sample_dt_min_s": 0.00020000000949949026, + "sample_dt_median_s": 5.003999999957159, + "sample_dt_max_s": 5.079900000244379, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C35_CYCLING.json b/tests/MATR_B3C35_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..8febe420f730a4e511523ceb14ae2554d8882dbb --- /dev/null +++ b/tests/MATR_B3C35_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C35_CYCLING", + "cell_id": "MATR_B3C35", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(19%)-4.6C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1093, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 808369, + "duration_s": 2720095.4736000076, + "voltage_observed_min_V": 1.987473, + "voltage_observed_max_V": 3.6012092, + "current_observed_min_A": -4.006121363636363, + "current_observed_max_A": 5.6098279090909084, + "temperature_observed_min_C": 31.619762377116725, + "temperature_observed_max_C": 41.514072, + "sample_dt_min_s": 0.0002000001259148121, + "sample_dt_median_s": 5.003199999686331, + "sample_dt_max_s": 76238.65460000001, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C36_CYCLING.json b/tests/MATR_B3C36_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..c55443bdca648496ea10f882258eddbc1391a08d --- /dev/null +++ b/tests/MATR_B3C36_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C36_CYCLING", + "cell_id": "MATR_B3C36", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(36%)-4.3C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 923, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 678650, + "duration_s": 2300765.4455000036, + "voltage_observed_min_V": 1.9683008, + "voltage_observed_max_V": 3.6003199, + "current_observed_min_A": -4.002694636363636, + "current_observed_max_A": 5.608274272727272, + "temperature_observed_min_C": 31.939495, + "temperature_observed_max_C": 43.772045, + "sample_dt_min_s": 0.000599999912083149, + "sample_dt_median_s": 5.004100000020117, + "sample_dt_max_s": 5.059200000017881, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C37_CYCLING.json b/tests/MATR_B3C37_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..dc2ffb1e75407f8728dc155552edb608db529344 --- /dev/null +++ b/tests/MATR_B3C37_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C37_CYCLING", + "cell_id": "MATR_B3C37", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.8, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.8C(80%)-4.8C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1390, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 2014210, + "duration_s": 3696360.8853000067, + "voltage_observed_min_V": 1.7430797, + "voltage_observed_max_V": 3.6521554, + "current_observed_min_A": -4.002860636363636, + "current_observed_max_A": 4.388947909090908, + "temperature_observed_min_C": 30.785309, + "temperature_observed_max_C": 41.59272997038738, + "sample_dt_min_s": 0.00039999978616833687, + "sample_dt_median_s": 0.09379999991506338, + "sample_dt_max_s": 286909.5898000002, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C38_CYCLING.json b/tests/MATR_B3C38_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..850e893a36231ffca42a826f60a89b69b21914b3 --- /dev/null +++ b/tests/MATR_B3C38_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C38_CYCLING", + "cell_id": "MATR_B3C38", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5C(67%)-4C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1935, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1373373, + "duration_s": 4550761.868299993, + "voltage_observed_min_V": 1.970964, + "voltage_observed_max_V": 3.6003184, + "current_observed_min_A": -12.213394545454545, + "current_observed_max_A": 5.0111528181818175, + "temperature_observed_min_C": 30.966864, + "temperature_observed_max_C": 40.459473, + "sample_dt_min_s": 0.0002999999560415745, + "sample_dt_median_s": 5.002099999983329, + "sample_dt_max_s": 5.06279999949038, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C39_CYCLING.json b/tests/MATR_B3C39_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..ba3c72f496ff77d16fed82d30de06f38c8d37593 --- /dev/null +++ b/tests/MATR_B3C39_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C39_CYCLING", + "cell_id": "MATR_B3C39", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.3, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.3C(54%)-4C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1156, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 798693, + "duration_s": 2710949.631499999, + "voltage_observed_min_V": 1.9837718, + "voltage_observed_max_V": 3.6003499, + "current_observed_min_A": -4.002845545454545, + "current_observed_max_A": 5.3407149090909085, + "temperature_observed_min_C": 30.99731619825322, + "temperature_observed_max_C": 38.437128605160396, + "sample_dt_min_s": 0.000599999912083149, + "sample_dt_median_s": 5.003999999957159, + "sample_dt_max_s": 5.072500000242144, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C3_CYCLING.json b/tests/MATR_B3C3_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..e9ecb279384631fe203b2872b366f517d1faf6a9 --- /dev/null +++ b/tests/MATR_B3C3_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C3_CYCLING", + "cell_id": "MATR_B3C3", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(36%)-4.3C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1115, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 805165, + "duration_s": 2742581.5480999993, + "voltage_observed_min_V": 1.9719424, + "voltage_observed_max_V": 3.600225, + "current_observed_min_A": -4.003567727272727, + "current_observed_max_A": 5.61770009090909, + "temperature_observed_min_C": 31.780437, + "temperature_observed_max_C": 43.39192947288573, + "sample_dt_min_s": 0.0004999996162950993, + "sample_dt_median_s": 5.004199999850243, + "sample_dt_max_s": 5.067600000184029, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C40_CYCLING.json b/tests/MATR_B3C40_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..2e000d3fdc42280649bd9abcfe25a045f159c85f --- /dev/null +++ b/tests/MATR_B3C40_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C40_CYCLING", + "cell_id": "MATR_B3C40", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(19%)-4.6C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 796, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 606303, + "duration_s": 2093017.2770999977, + "voltage_observed_min_V": 1.955904, + "voltage_observed_max_V": 3.600276, + "current_observed_min_A": -4.001886181818182, + "current_observed_max_A": 5.60722, + "temperature_observed_min_C": 30.658075, + "temperature_observed_max_C": 41.78501088573141, + "sample_dt_min_s": 0.0005000000819563866, + "sample_dt_median_s": 5.005099999951199, + "sample_dt_max_s": 5.089800000190735, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C41_CYCLING.json b/tests/MATR_B3C41_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..5d2b30ff737569b555228a69e3175c080449bb0d --- /dev/null +++ b/tests/MATR_B3C41_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C41_CYCLING", + "cell_id": "MATR_B3C41", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(36%)-4.3C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 786, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 586121, + "duration_s": 2026493.1040999999, + "voltage_observed_min_V": 1.9848733, + "voltage_observed_max_V": 3.6002183, + "current_observed_min_A": -12.108087272727273, + "current_observed_max_A": 5.60634609090909, + "temperature_observed_min_C": 30.47063701600857, + "temperature_observed_max_C": 40.04496273355865, + "sample_dt_min_s": 0.000599999912083149, + "sample_dt_median_s": 5.005100000009406, + "sample_dt_max_s": 5.088899999856949, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C42_CYCLING.json b/tests/MATR_B3C42_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..ff9975043c2620255ec1808c8c60cc1de6d92450 --- /dev/null +++ b/tests/MATR_B3C42_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C42_CYCLING", + "cell_id": "MATR_B3C42", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.8, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.8C(80%)-4.8C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1642, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1238354, + "duration_s": 4266120.374399999, + "voltage_observed_min_V": 1.9573627, + "voltage_observed_max_V": 3.6003079, + "current_observed_min_A": -4.014922454545454, + "current_observed_max_A": 4.692490272727272, + "temperature_observed_min_C": 30.329844727413835, + "temperature_observed_max_C": 40.959419, + "sample_dt_min_s": 0.0002999999560415745, + "sample_dt_median_s": 5.00179999996908, + "sample_dt_max_s": 5.061999999918044, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C43_CYCLING.json b/tests/MATR_B3C43_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..d9ac205c9cf268dfeda315ae4e7364719f7030d5 --- /dev/null +++ b/tests/MATR_B3C43_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C43_CYCLING", + "cell_id": "MATR_B3C43", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5C(67%)-4C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1046, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 801256, + "duration_s": 2770753.2503000014, + "voltage_observed_min_V": 1.9582477, + "voltage_observed_max_V": 3.6014533, + "current_observed_min_A": -4.049366181818181, + "current_observed_max_A": 6.007378272727272, + "temperature_observed_min_C": 30.366573, + "temperature_observed_max_C": 41.91271430597418, + "sample_dt_min_s": 0.0004000002518296242, + "sample_dt_median_s": 5.004199999850243, + "sample_dt_max_s": 5.066800000146031, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C44_CYCLING.json b/tests/MATR_B3C44_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..20ba59f1613475582e1c1fcd68eb5cdd7f8c23f8 --- /dev/null +++ b/tests/MATR_B3C44_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C44_CYCLING", + "cell_id": "MATR_B3C44", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.3, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.3C(54%)-4C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 940, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 709848, + "duration_s": 2532820.070699994, + "voltage_observed_min_V": 1.9737163, + "voltage_observed_max_V": 3.6002545, + "current_observed_min_A": -4.002146727272727, + "current_observed_max_A": 5.311026181818182, + "temperature_observed_min_C": 30.183569, + "temperature_observed_max_C": 39.38404761696227, + "sample_dt_min_s": 0.0002999999560415745, + "sample_dt_median_s": 5.005499999970198, + "sample_dt_max_s": 5.072500000242144, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C45_CYCLING.json b/tests/MATR_B3C45_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..1917e34a010c9fe3f7eb7cba43eea0e57d8bc424 --- /dev/null +++ b/tests/MATR_B3C45_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C45_CYCLING", + "cell_id": "MATR_B3C45", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.8, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.8C(80%)-4.8C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1801, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1313011, + "duration_s": 4475428.924400006, + "voltage_observed_min_V": 1.9957056, + "voltage_observed_max_V": 3.6007023, + "current_observed_min_A": -4.003124636363636, + "current_observed_max_A": 4.370363363636364, + "temperature_observed_min_C": 28.934175, + "temperature_observed_max_C": 36.758492, + "sample_dt_min_s": 0.00029999949038028717, + "sample_dt_median_s": 5.001700000022538, + "sample_dt_max_s": 5.06180000025779, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C4_CYCLING.json b/tests/MATR_B3C4_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..2f48797a2812394ccfc7f00eb126562b03ede482 --- /dev/null +++ b/tests/MATR_B3C4_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C4_CYCLING", + "cell_id": "MATR_B3C4", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(19%)-4.6C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1048, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 781540, + "duration_s": 2652847.133099999, + "voltage_observed_min_V": 1.9663978, + "voltage_observed_max_V": 3.6002622, + "current_observed_min_A": -4.002165818181817, + "current_observed_max_A": 5.6118358181818175, + "temperature_observed_min_C": 30.86325642415428, + "temperature_observed_max_C": 34.954544, + "sample_dt_min_s": 0.000599999912083149, + "sample_dt_median_s": 5.004199999850243, + "sample_dt_max_s": 5.087999999988824, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C5_CYCLING.json b/tests/MATR_B3C5_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..b9780125637a62b1f7a08d6084dce165a00590d0 --- /dev/null +++ b/tests/MATR_B3C5_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C5_CYCLING", + "cell_id": "MATR_B3C5", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.6, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.6C(36%)-4.3C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 828, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 603918, + "duration_s": 2071658.4212999986, + "voltage_observed_min_V": 1.9464617, + "voltage_observed_max_V": 3.6004009, + "current_observed_min_A": -4.002891, + "current_observed_max_A": 5.611894818181818, + "temperature_observed_min_C": 31.006192004289876, + "temperature_observed_max_C": 43.113594, + "sample_dt_min_s": 0.000599999912083149, + "sample_dt_median_s": 5.004799999995157, + "sample_dt_max_s": 5.083699999842793, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C6_CYCLING.json b/tests/MATR_B3C6_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..8190bb495636672d8f45117538e1631ad49b4375 --- /dev/null +++ b/tests/MATR_B3C6_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C6_CYCLING", + "cell_id": "MATR_B3C6", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 3.7, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 3.7C(31%)-5.9C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 667, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 566346, + "duration_s": 1764416.6002999994, + "voltage_observed_min_V": 1.9731221, + "voltage_observed_max_V": 3.6002326, + "current_observed_min_A": -4.006803272727272, + "current_observed_max_A": 5.943461363636364, + "temperature_observed_min_C": 30.943061172088374, + "temperature_observed_max_C": 40.187687, + "sample_dt_min_s": 0.0002999999560415745, + "sample_dt_median_s": 2.2695999999996275, + "sample_dt_max_s": 178544.2176000001, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C7_CYCLING.json b/tests/MATR_B3C7_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..a4d9b9dd80e5377426b7e6c568cd26fd10e509d8 --- /dev/null +++ b/tests/MATR_B3C7_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C7_CYCLING", + "cell_id": "MATR_B3C7", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 4.8, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 4.8C(80%)-4.8C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1836, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 1376281, + "duration_s": 4770867.979099997, + "voltage_observed_min_V": 1.9955025, + "voltage_observed_max_V": 3.6006813, + "current_observed_min_A": -4.004130363636363, + "current_observed_max_A": 4.370276727272727, + "temperature_observed_min_C": 28.03226952723795, + "temperature_observed_max_C": 36.961104085831934, + "sample_dt_min_s": 9.999983012676239e-05, + "sample_dt_median_s": 5.001600000075996, + "sample_dt_max_s": 5.061999999918044, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C8_CYCLING.json b/tests/MATR_B3C8_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..1db5017fc0f3a5ef551cad326fe829bdeff8f511 --- /dev/null +++ b/tests/MATR_B3C8_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C8_CYCLING", + "cell_id": "MATR_B3C8", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.0, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5C(67%)-4C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 828, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 621179, + "duration_s": 2209592.127399998, + "voltage_observed_min_V": 1.9721413, + "voltage_observed_max_V": 3.6014471, + "current_observed_min_A": -4.028069363636364, + "current_observed_max_A": 5.005011090909091, + "temperature_observed_min_C": 30.969942, + "temperature_observed_max_C": 38.11666424591539, + "sample_dt_min_s": 0.00019999989308416843, + "sample_dt_median_s": 5.005600000033155, + "sample_dt_max_s": 5.079400000162423, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/MATR_B3C9_CYCLING.json b/tests/MATR_B3C9_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..14052de9ac4715da232607a344342c3dc71c13ee --- /dev/null +++ b/tests/MATR_B3C9_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "MATR_B3C9_CYCLING", + "cell_id": "MATR_B3C9", + "test_type": "cycle_aging", + "temperature_C_min": 30.0, + "temperature_C_max": 30.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 5.3, + "c_rate_discharge": 4.0, + "protocol_description": "Fast-charge aging at 30 degC. Charge policy: 5.3C(54%)-4C-newstructure. 4C discharge. Cycled to 80% capacity retention (EOL).", + "num_cycles": 1039, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 792025, + "duration_s": 2795061.484999999, + "voltage_observed_min_V": 1.9914341, + "voltage_observed_max_V": 3.6003866, + "current_observed_min_A": -4.00235, + "current_observed_max_A": 5.306510909090909, + "temperature_observed_min_C": 31.020124803456543, + "temperature_observed_max_C": 37.344334, + "sample_dt_min_s": 0.00039999978616833687, + "sample_dt_median_s": 5.004100000020117, + "sample_dt_max_s": 5.064200000371784, + "source_doi": "10.1038/s41560-019-0356-8", + "source_url": "https://data.matr.io/1/projects/5c48dd2bc625d700019f3204", + "source_citation": "Severson, K. A., Attia, P. M., Jin, N., et al. (2019). Data-driven prediction of battery cycle life before capacity degradation. Nature Energy 4, 383-391. https://doi.org/10.1038/s41560-019-0356-8", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0005_CYCLING.json b/tests/NASA_PCOE_B0005_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..533e6ca3b67ff9b99304cc3e1cd0b24c95e0bbf3 --- /dev/null +++ b/tests/NASA_PCOE_B0005_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0005_CYCLING", + "cell_id": "NASA_PCOE_B0005", + "test_type": "cycle_aging", + "temperature_C_min": 24.0, + "temperature_C_max": 24.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 1.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 2.0A to 2.7V cutoff at ambient 24 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. Room-temp baseline; cycled to 30% fade.", + "num_cycles": 168, + "soh_pct": 71.37561578838873, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 591458, + "duration_s": 2285760.819999999, + "voltage_observed_min_V": 0.003365244223881807, + "voltage_observed_max_V": 8.393141180564633, + "current_observed_min_A": -2.029098489464331, + "current_observed_max_A": 4.4796596195981975, + "temperature_observed_min_C": 23.214801785728056, + "temperature_observed_max_C": 41.45023191903855, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 2.905999999959022, + "sample_dt_max_s": 22.07800000003772, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0006_CYCLING.json b/tests/NASA_PCOE_B0006_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..185923001baaf33170f4fdf824ff06cdfbeb19ea --- /dev/null +++ b/tests/NASA_PCOE_B0006_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0006_CYCLING", + "cell_id": "NASA_PCOE_B0006", + "test_type": "cycle_aging", + "temperature_C_min": 24.0, + "temperature_C_max": 24.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 1.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 2.0A to 2.5V cutoff at ambient 24 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. Room-temp baseline; cycled to 30% fade.", + "num_cycles": 168, + "soh_pct": 58.254475229690506, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 591458, + "duration_s": 2285760.819999999, + "voltage_observed_min_V": -0.0014221565384104913, + "voltage_observed_max_V": 8.083343544866112, + "current_observed_min_A": -2.027018156432659, + "current_observed_max_A": 4.480833764270697, + "temperature_observed_min_C": 22.98409947535817, + "temperature_observed_max_C": 42.0075404495327, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 2.905999999959022, + "sample_dt_max_s": 22.07800000003772, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0007_CYCLING.json b/tests/NASA_PCOE_B0007_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..9d6fc62be0bcfd43ef92a2d1edbc93942a5898b5 --- /dev/null +++ b/tests/NASA_PCOE_B0007_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0007_CYCLING", + "cell_id": "NASA_PCOE_B0007", + "test_type": "cycle_aging", + "temperature_C_min": 24.0, + "temperature_C_max": 24.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 1.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 2.0A to 2.2V cutoff at ambient 24 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. Room-temp baseline; cycled to 30% fade.", + "num_cycles": 168, + "soh_pct": 75.74910940083355, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 591458, + "duration_s": 2285760.819999999, + "voltage_observed_min_V": 0.002931709876883153, + "voltage_observed_max_V": 8.332909045959154, + "current_observed_min_A": -2.0060375207298797, + "current_observed_max_A": 2.2618666203475337, + "temperature_observed_min_C": 22.969922978716898, + "temperature_observed_max_C": 42.33252236723314, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 2.905999999959022, + "sample_dt_max_s": 22.07800000003772, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0018_CYCLING.json b/tests/NASA_PCOE_B0018_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..35e97cab982e523a5ab3b6ca9c1b0712ba752202 --- /dev/null +++ b/tests/NASA_PCOE_B0018_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0018_CYCLING", + "cell_id": "NASA_PCOE_B0018", + "test_type": "cycle_aging", + "temperature_C_min": 24.0, + "temperature_C_max": 24.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 1.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 2.0A to 2.5V cutoff at ambient 24 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. Room-temp baseline; cycled to 30% fade.", + "num_cycles": 132, + "soh_pct": 72.29370201580872, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 314676, + "duration_s": 1780206.3229999999, + "voltage_observed_min_V": 2.2786338886500292, + "voltage_observed_max_V": 4.2995855570950186, + "current_observed_min_A": -2.026718552407948, + "current_observed_max_A": 4.50882765791034, + "temperature_observed_min_C": 21.810169604006642, + "temperature_observed_max_C": 38.878687997701746, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 5.015999999945052, + "sample_dt_max_s": 14.672000000020489, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0025_CYCLING.json b/tests/NASA_PCOE_B0025_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..37f479dadbb7adaf02ce04c67d907fb7d2e234fb --- /dev/null +++ b/tests/NASA_PCOE_B0025_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0025_CYCLING", + "cell_id": "NASA_PCOE_B0025", + "test_type": "cycle_aging", + "temperature_C_min": 24.0, + "temperature_C_max": 24.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 2.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge square_0.05Hz_4A_50pct at 4.0A to 2.0V cutoff at ambient 24 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 0.05Hz square-wave discharge, 4A peak, 50% duty.", + "num_cycles": 29, + "soh_pct": 95.71079555374561, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 104120, + "duration_s": 492988.7850000001, + "voltage_observed_min_V": 1.6704419000715314, + "voltage_observed_max_V": 4.210231633461609, + "current_observed_min_A": -4.030782393095651, + "current_observed_max_A": 3.9135371238784464, + "temperature_observed_min_C": 25.946045362480795, + "temperature_observed_max_C": 41.82908827830225, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 3.7179999999934807, + "sample_dt_max_s": 12.063000000023749, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0026_CYCLING.json b/tests/NASA_PCOE_B0026_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..49489513a3c2f4058a2a4c7806d09beae6b57919 --- /dev/null +++ b/tests/NASA_PCOE_B0026_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0026_CYCLING", + "cell_id": "NASA_PCOE_B0026", + "test_type": "cycle_aging", + "temperature_C_min": 24.0, + "temperature_C_max": 24.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 2.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge square_0.05Hz_4A_50pct at 4.0A to 2.2V cutoff at ambient 24 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 0.05Hz square-wave discharge, 4A peak, 50% duty.", + "num_cycles": 29, + "soh_pct": 97.5460466667801, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 104120, + "duration_s": 492988.7850000001, + "voltage_observed_min_V": 1.7730752055194368, + "voltage_observed_max_V": 4.204153011333796, + "current_observed_min_A": -4.032124737768037, + "current_observed_max_A": 3.906619865547418, + "temperature_observed_min_C": 25.962005229883165, + "temperature_observed_max_C": 40.90407080657346, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 3.7179999999934807, + "sample_dt_max_s": 12.063000000023749, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0027_CYCLING.json b/tests/NASA_PCOE_B0027_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..5a45e0998c4185b086d15ff7f4cb4e679edb75c8 --- /dev/null +++ b/tests/NASA_PCOE_B0027_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0027_CYCLING", + "cell_id": "NASA_PCOE_B0027", + "test_type": "cycle_aging", + "temperature_C_min": 24.0, + "temperature_C_max": 24.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 2.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge square_0.05Hz_4A_50pct at 4.0A to 2.5V cutoff at ambient 24 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 0.05Hz square-wave discharge, 4A peak, 50% duty.", + "num_cycles": 29, + "soh_pct": 97.08139516350145, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 104120, + "duration_s": 492988.7850000001, + "voltage_observed_min_V": 2.378335964879865, + "voltage_observed_max_V": 4.214871418357896, + "current_observed_min_A": -3.978429203873616, + "current_observed_max_A": 2.25916155292876, + "temperature_observed_min_C": 25.86440108404468, + "temperature_observed_max_C": 43.208685492251035, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 3.7179999999934807, + "sample_dt_max_s": 12.063000000023749, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0028_CYCLING.json b/tests/NASA_PCOE_B0028_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..787c8e77c611687b36dc40569404735b0b8fdde3 --- /dev/null +++ b/tests/NASA_PCOE_B0028_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0028_CYCLING", + "cell_id": "NASA_PCOE_B0028", + "test_type": "cycle_aging", + "temperature_C_min": 24.0, + "temperature_C_max": 24.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 2.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge square_0.05Hz_4A_50pct at 4.0A to 2.7V cutoff at ambient 24 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 0.05Hz square-wave discharge, 4A peak, 50% duty.", + "num_cycles": 29, + "soh_pct": 95.15421152010136, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 104120, + "duration_s": 492988.7850000001, + "voltage_observed_min_V": 2.5306280538039845, + "voltage_observed_max_V": 4.200766167826743, + "current_observed_min_A": -2.0106987182265015, + "current_observed_max_A": 2.238398393915281, + "temperature_observed_min_C": 26.029037318845763, + "temperature_observed_max_C": 32.50607956309833, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 3.7179999999934807, + "sample_dt_max_s": 12.063000000023749, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0029_CYCLING.json b/tests/NASA_PCOE_B0029_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..86751b0dc070437072c28be3be940e48e6d1f48e --- /dev/null +++ b/tests/NASA_PCOE_B0029_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0029_CYCLING", + "cell_id": "NASA_PCOE_B0029", + "test_type": "cycle_aging", + "temperature_C_min": 43.0, + "temperature_C_max": 43.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 2.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 4.0A to 2.0V cutoff at ambient 43 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. Elevated 43 degC; CC discharge.", + "num_cycles": 41, + "soh_pct": 94.96747266576908, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 110487, + "duration_s": 438204.2960000001, + "voltage_observed_min_V": 1.800038174333754, + "voltage_observed_max_V": 4.209978813663635, + "current_observed_min_A": -4.029581554780258, + "current_observed_max_A": 3.917663952559461, + "temperature_observed_min_C": 43.40626577176862, + "temperature_observed_max_C": 60.33243416075105, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 3.6410000000032596, + "sample_dt_max_s": 11.85899999999674, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0030_CYCLING.json b/tests/NASA_PCOE_B0030_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..7f7cd0b15306975c7337f43ba7299ed02f97bb7c --- /dev/null +++ b/tests/NASA_PCOE_B0030_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0030_CYCLING", + "cell_id": "NASA_PCOE_B0030", + "test_type": "cycle_aging", + "temperature_C_min": 43.0, + "temperature_C_max": 43.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 2.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 4.0A to 2.2V cutoff at ambient 43 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. Elevated 43 degC; CC discharge.", + "num_cycles": 41, + "soh_pct": 94.36677369628562, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 110487, + "duration_s": 438204.2960000001, + "voltage_observed_min_V": 1.9166604901616162, + "voltage_observed_max_V": 4.204009519013557, + "current_observed_min_A": -4.030594809378983, + "current_observed_max_A": 3.8039622363988244, + "temperature_observed_min_C": 43.15149833518289, + "temperature_observed_max_C": 63.0242156686281, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 3.6410000000032596, + "sample_dt_max_s": 11.85899999999674, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0031_CYCLING.json b/tests/NASA_PCOE_B0031_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..5b19265cc1f28a90a763fc71b6207eb2adee293a --- /dev/null +++ b/tests/NASA_PCOE_B0031_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0031_CYCLING", + "cell_id": "NASA_PCOE_B0031", + "test_type": "cycle_aging", + "temperature_C_min": 43.0, + "temperature_C_max": 43.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 2.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 4.0A to 2.5V cutoff at ambient 43 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. Elevated 43 degC; CC discharge.", + "num_cycles": 41, + "soh_pct": 100.03741492249006, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 110487, + "duration_s": 438204.2960000001, + "voltage_observed_min_V": 2.3048157078228537, + "voltage_observed_max_V": 4.214822533099875, + "current_observed_min_A": -3.98157731389867, + "current_observed_max_A": 2.258452226019373, + "temperature_observed_min_C": 42.830036312976034, + "temperature_observed_max_C": 62.099570509363424, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 3.6410000000032596, + "sample_dt_max_s": 11.85899999999674, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0032_CYCLING.json b/tests/NASA_PCOE_B0032_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..22ba961dc3be5854e90c9a81796726bb8fe4683f --- /dev/null +++ b/tests/NASA_PCOE_B0032_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0032_CYCLING", + "cell_id": "NASA_PCOE_B0032", + "test_type": "cycle_aging", + "temperature_C_min": 43.0, + "temperature_C_max": 43.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 2.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 4.0A to 2.7V cutoff at ambient 43 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. Elevated 43 degC; CC discharge.", + "num_cycles": 41, + "soh_pct": 95.94900146588859, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 110487, + "duration_s": 438204.2960000001, + "voltage_observed_min_V": 2.6027515790201994, + "voltage_observed_max_V": 4.200753184280377, + "current_observed_min_A": -3.996695123471853, + "current_observed_max_A": 2.2453718989539233, + "temperature_observed_min_C": 43.25683175903665, + "temperature_observed_max_C": 62.96996562520999, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 3.6410000000032596, + "sample_dt_max_s": 11.85899999999674, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0033_CYCLING.json b/tests/NASA_PCOE_B0033_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..c7965f91d16b0b3c0016dd8c5b8995a97dc28f94 --- /dev/null +++ b/tests/NASA_PCOE_B0033_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0033_CYCLING", + "cell_id": "NASA_PCOE_B0033", + "test_type": "cycle_aging", + "temperature_C_min": 24.0, + "temperature_C_max": 24.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 2.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 4.0A to 2.0V cutoff at ambient 24 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. Cycled to 20% fade.", + "num_cycles": 198, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 406812, + "duration_s": 2708904.7820000015, + "voltage_observed_min_V": 0.9861339962587278, + "voltage_observed_max_V": 4.4683580435456935, + "current_observed_min_A": -4.034595325058306, + "current_observed_max_A": 3.757001092005895, + "temperature_observed_min_C": 22.959689226191127, + "temperature_observed_max_C": 61.13715999731606, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 6.218000000109896, + "sample_dt_max_s": 16.342999999877065, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0034_CYCLING.json b/tests/NASA_PCOE_B0034_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..64adb042d1bb7f23c9cf604f173ad924dffcadab --- /dev/null +++ b/tests/NASA_PCOE_B0034_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0034_CYCLING", + "cell_id": "NASA_PCOE_B0034", + "test_type": "cycle_aging", + "temperature_C_min": 24.0, + "temperature_C_max": 24.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 2.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 4.0A to 2.2V cutoff at ambient 24 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. Cycled to 20% fade.", + "num_cycles": 198, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 406812, + "duration_s": 2708904.7820000015, + "voltage_observed_min_V": 1.9435482703621492, + "voltage_observed_max_V": 4.444767752853825, + "current_observed_min_A": -4.038795954400871, + "current_observed_max_A": 3.5681643624014527, + "temperature_observed_min_C": 22.908599756234555, + "temperature_observed_max_C": 61.43732341776916, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 6.218000000109896, + "sample_dt_max_s": 16.342999999877065, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0036_CYCLING.json b/tests/NASA_PCOE_B0036_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..c5dddc735a1073f7143a830a9348a9b329c76b6b --- /dev/null +++ b/tests/NASA_PCOE_B0036_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0036_CYCLING", + "cell_id": "NASA_PCOE_B0036", + "test_type": "cycle_aging", + "temperature_C_min": 24.0, + "temperature_C_max": 24.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 1.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 2.0A to 2.7V cutoff at ambient 24 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 2A discharge; cycled to 20% fade.", + "num_cycles": 198, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 406812, + "duration_s": 2708904.7820000015, + "voltage_observed_min_V": 2.602450788874241, + "voltage_observed_max_V": 4.519252349646744, + "current_observed_min_A": -2.01068659468518, + "current_observed_max_A": 2.241482420881105, + "temperature_observed_min_C": 22.937019159605516, + "temperature_observed_max_C": 39.35953919640877, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 6.218000000109896, + "sample_dt_max_s": 16.342999999877065, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0038_CYCLING.json b/tests/NASA_PCOE_B0038_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..18d36660efe7fc988fa25415aa3eaa1e6b4e5b24 --- /dev/null +++ b/tests/NASA_PCOE_B0038_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0038_CYCLING", + "cell_id": "NASA_PCOE_B0038", + "test_type": "cycle_aging", + "temperature_C_min": 24.0, + "temperature_C_max": 24.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": null, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge multi_load_1_2_4A to 2.2V cutoff at ambient 24 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. Mixed 24/44 degC; multi-level discharge 1/2/4 A.", + "num_cycles": 48, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 138423, + "duration_s": 669549.6529999999, + "voltage_observed_min_V": 2.0028176202456365, + "voltage_observed_max_V": 4.203081080887495, + "current_observed_min_A": -4.035077323306341, + "current_observed_max_A": 3.4597730674439497, + "temperature_observed_min_C": 24.670863296169962, + "temperature_observed_max_C": 69.86974573152932, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 4.0, + "sample_dt_max_s": 12.35999999998603, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0039_CYCLING.json b/tests/NASA_PCOE_B0039_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..18d87f788c0e670224f15192ee27edeb1055b237 --- /dev/null +++ b/tests/NASA_PCOE_B0039_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0039_CYCLING", + "cell_id": "NASA_PCOE_B0039", + "test_type": "cycle_aging", + "temperature_C_min": 24.0, + "temperature_C_max": 24.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": null, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge multi_load_1_2_4A to 2.5V cutoff at ambient 24 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. Mixed 24/44 degC; multi-level discharge 1/2/4 A.", + "num_cycles": 48, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 138423, + "duration_s": 669549.6529999999, + "voltage_observed_min_V": 2.419307605326947, + "voltage_observed_max_V": 4.214923082076687, + "current_observed_min_A": -3.982043712047701, + "current_observed_max_A": 2.2581664049649057, + "temperature_observed_min_C": 24.083173054818094, + "temperature_observed_max_C": 64.14381595669508, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 4.0, + "sample_dt_max_s": 12.35999999998603, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0040_CYCLING.json b/tests/NASA_PCOE_B0040_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..78c8e984e811119bc09db59a0e46f6b3d19b7caf --- /dev/null +++ b/tests/NASA_PCOE_B0040_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0040_CYCLING", + "cell_id": "NASA_PCOE_B0040", + "test_type": "cycle_aging", + "temperature_C_min": 24.0, + "temperature_C_max": 24.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": null, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge multi_load_1_2_4A to 2.7V cutoff at ambient 24 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. Mixed 24/44 degC; multi-level discharge 1/2/4 A.", + "num_cycles": 48, + "soh_pct": 82.705422338859, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 138423, + "duration_s": 669549.6529999999, + "voltage_observed_min_V": 1.7489828090032307, + "voltage_observed_max_V": 4.203216507009983, + "current_observed_min_A": -3.9985251055256823, + "current_observed_max_A": 2.23742484726517, + "temperature_observed_min_C": 24.112559141385372, + "temperature_observed_max_C": 55.67880428959517, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 4.0, + "sample_dt_max_s": 12.35999999998603, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0041_CYCLING.json b/tests/NASA_PCOE_B0041_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..04b47e985741149e25ce122b73a91362ee3194b1 --- /dev/null +++ b/tests/NASA_PCOE_B0041_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0041_CYCLING", + "cell_id": "NASA_PCOE_B0041", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": null, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge multi_load_4A_1A to 2.0V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; mixed 4A/1A discharge; cycled to 30% fade.", + "num_cycles": 68, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 138294, + "duration_s": 847063.9890000004, + "voltage_observed_min_V": 1.750577605139322, + "voltage_observed_max_V": 4.390734196071312, + "current_observed_min_A": -4.028689923407233, + "current_observed_max_A": 1.5138247936687883, + "temperature_observed_min_C": 3.4331359640227053, + "temperature_observed_max_C": 14.838581695723233, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 5.436999999976251, + "sample_dt_max_s": 13.920999999972992, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0042_CYCLING.json b/tests/NASA_PCOE_B0042_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..c5ccb4cff8aa18cd49f199963d3742bafd46fb68 --- /dev/null +++ b/tests/NASA_PCOE_B0042_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0042_CYCLING", + "cell_id": "NASA_PCOE_B0042", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": null, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge multi_load_4A_1A to 2.2V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; mixed 4A/1A discharge; cycled to 30% fade.", + "num_cycles": 113, + "soh_pct": 77.36792810014151, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 277136, + "duration_s": 1463639.003999999, + "voltage_observed_min_V": 1.9973214087149431, + "voltage_observed_max_V": 4.321593038306976, + "current_observed_min_A": -4.036198260626553, + "current_observed_max_A": 1.5209360492174073, + "temperature_observed_min_C": 3.3252617498610415, + "temperature_observed_max_C": 41.67057172451578, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 4.780999999959022, + "sample_dt_max_s": 13.920999999856576, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0043_CYCLING.json b/tests/NASA_PCOE_B0043_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..1ad539fcb1668f80e663f1a67698fdc739b0a4b5 --- /dev/null +++ b/tests/NASA_PCOE_B0043_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0043_CYCLING", + "cell_id": "NASA_PCOE_B0043", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": null, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge multi_load_4A_1A to 2.5V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; mixed 4A/1A discharge; cycled to 30% fade.", + "num_cycles": 113, + "soh_pct": 74.50070497479263, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 277136, + "duration_s": 1463639.003999999, + "voltage_observed_min_V": 2.2200788093903734, + "voltage_observed_max_V": 4.360743419640758, + "current_observed_min_A": -3.9790202106481383, + "current_observed_max_A": 1.497092848562912, + "temperature_observed_min_C": 3.2861527394296157, + "temperature_observed_max_C": 38.06717620893625, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 4.780999999959022, + "sample_dt_max_s": 13.920999999856576, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0044_CYCLING.json b/tests/NASA_PCOE_B0044_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..91cce61e0ef3620768ceacbc6ce10164a4459c8d --- /dev/null +++ b/tests/NASA_PCOE_B0044_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0044_CYCLING", + "cell_id": "NASA_PCOE_B0044", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": null, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge multi_load_4A_1A to 2.7V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; mixed 4A/1A discharge; cycled to 30% fade.", + "num_cycles": 113, + "soh_pct": 74.03537095051597, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 277136, + "duration_s": 1463639.003999999, + "voltage_observed_min_V": 2.4476887634196065, + "voltage_observed_max_V": 4.372424856068595, + "current_observed_min_A": -3.9937289569249144, + "current_observed_max_A": 1.5083102618188977, + "temperature_observed_min_C": 2.8522205932473024, + "temperature_observed_max_C": 39.13185799913766, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 4.780999999959022, + "sample_dt_max_s": 13.920999999856576, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0045_CYCLING.json b/tests/NASA_PCOE_B0045_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..2a43ba67e783cf6c51162d63f2da326a19c01786 --- /dev/null +++ b/tests/NASA_PCOE_B0045_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0045_CYCLING", + "cell_id": "NASA_PCOE_B0045", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 0.5, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 1.0A to 2.0V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; 1A CC; cycled to 30% fade.", + "num_cycles": 73, + "soh_pct": 56.09604245132347, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 125484, + "duration_s": 1124077.2869999995, + "voltage_observed_min_V": 1.9640518711887227, + "voltage_observed_max_V": 4.234121122484596, + "current_observed_min_A": -1.012324540932804, + "current_observed_max_A": 1.5169690471901494, + "temperature_observed_min_C": 3.995359603574443, + "temperature_observed_max_C": 16.878888140585346, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 7.984000000054948, + "sample_dt_max_s": 33.23499999998603, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0046_CYCLING.json b/tests/NASA_PCOE_B0046_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..9f8a2c7f74d7a369eda9aa300536e8b6fe0ec4ee --- /dev/null +++ b/tests/NASA_PCOE_B0046_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0046_CYCLING", + "cell_id": "NASA_PCOE_B0046", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 0.5, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 1.0A to 2.2V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; 1A CC; cycled to 30% fade.", + "num_cycles": 73, + "soh_pct": 66.76182876878015, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 125484, + "duration_s": 1124077.2869999995, + "voltage_observed_min_V": 2.1449047324556036, + "voltage_observed_max_V": 4.23781853684158, + "current_observed_min_A": -1.0184755755177433, + "current_observed_max_A": 1.521341080493535, + "temperature_observed_min_C": 4.046265669082889, + "temperature_observed_max_C": 15.36587842843583, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 7.984000000054948, + "sample_dt_max_s": 33.23499999998603, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0047_CYCLING.json b/tests/NASA_PCOE_B0047_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..af579a1317d355e59be119b2e4a59a1c18ea0807 --- /dev/null +++ b/tests/NASA_PCOE_B0047_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0047_CYCLING", + "cell_id": "NASA_PCOE_B0047", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 0.5, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 1.0A to 2.5V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; 1A CC; cycled to 30% fade.", + "num_cycles": 73, + "soh_pct": 69.08591493558421, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 125484, + "duration_s": 1124077.2869999995, + "voltage_observed_min_V": 2.465457800547402, + "voltage_observed_max_V": 4.246764125510136, + "current_observed_min_A": -1.0171989370447034, + "current_observed_max_A": 1.4959111231788296, + "temperature_observed_min_C": 3.6145400626700046, + "temperature_observed_max_C": 13.249368019025939, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 7.984000000054948, + "sample_dt_max_s": 33.23499999998603, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0048_CYCLING.json b/tests/NASA_PCOE_B0048_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..c0888915879e33ca672fff87f2bb1ca2b77140f5 --- /dev/null +++ b/tests/NASA_PCOE_B0048_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0048_CYCLING", + "cell_id": "NASA_PCOE_B0048", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 0.5, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 1.0A to 2.7V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; 1A CC; cycled to 30% fade.", + "num_cycles": 73, + "soh_pct": 73.77145103452632, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 125484, + "duration_s": 1124077.2869999995, + "voltage_observed_min_V": 2.6767423992621824, + "voltage_observed_max_V": 4.223690952621402, + "current_observed_min_A": -1.0292876659492052, + "current_observed_max_A": 1.5026898613914124, + "temperature_observed_min_C": 3.3127913388549532, + "temperature_observed_max_C": 11.59325762914515, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 7.984000000054948, + "sample_dt_max_s": 33.23499999998603, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0049_CYCLING.json b/tests/NASA_PCOE_B0049_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..14b58b22270c3c33efe0e7cf6cc95bfc17bda7b6 --- /dev/null +++ b/tests/NASA_PCOE_B0049_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0049_CYCLING", + "cell_id": "NASA_PCOE_B0049", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 1.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 2.0A to 2.0V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; 2A CC; run ended by software crash.", + "num_cycles": 26, + "soh_pct": 80.54642299012083, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 82411, + "duration_s": 320541.783, + "voltage_observed_min_V": 1.9713959702644483, + "voltage_observed_max_V": 4.462470916200919, + "current_observed_min_A": -2.020967008916884, + "current_observed_max_A": 1.517654380573663, + "temperature_observed_min_C": 3.8742922939045745, + "temperature_observed_max_C": 22.607671167433093, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 3.4839999999967404, + "sample_dt_max_s": 11.01600000000326, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0050_CYCLING.json b/tests/NASA_PCOE_B0050_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..091d344fbe9a356cfac8af0b224841ed9d2e437d --- /dev/null +++ b/tests/NASA_PCOE_B0050_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0050_CYCLING", + "cell_id": "NASA_PCOE_B0050", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 1.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 2.0A to 2.2V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; 2A CC; run ended by software crash.", + "num_cycles": 26, + "soh_pct": 32.217671946572565, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 82411, + "duration_s": 320541.783, + "voltage_observed_min_V": 0.19273770746186986, + "voltage_observed_max_V": 4.984979600377206, + "current_observed_min_A": -2.0203138964301943, + "current_observed_max_A": 1.5210778712214519, + "temperature_observed_min_C": 4.031554643102445, + "temperature_observed_max_C": 24.962762102598134, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 3.4839999999967404, + "sample_dt_max_s": 11.01600000000326, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0051_CYCLING.json b/tests/NASA_PCOE_B0051_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..b252ff67be192284e04b22ed023e0f9f2524e2a5 --- /dev/null +++ b/tests/NASA_PCOE_B0051_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0051_CYCLING", + "cell_id": "NASA_PCOE_B0051", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 1.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 2.0A to 2.5V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; 2A CC; run ended by software crash.", + "num_cycles": 26, + "soh_pct": 105.3421517061917, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 82411, + "duration_s": 320541.783, + "voltage_observed_min_V": 2.469359676853076, + "voltage_observed_max_V": 4.4605398643795535, + "current_observed_min_A": -1.994157229105373, + "current_observed_max_A": 1.4946640010891195, + "temperature_observed_min_C": 3.722100641900859, + "temperature_observed_max_C": 20.74350641722436, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 3.4839999999967404, + "sample_dt_max_s": 11.01600000000326, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0052_CYCLING.json b/tests/NASA_PCOE_B0052_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..e9825f6d0b9088b4060dd524c414b20f37dcfe8d --- /dev/null +++ b/tests/NASA_PCOE_B0052_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0052_CYCLING", + "cell_id": "NASA_PCOE_B0052", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 1.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 2.0A to 2.7V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; 2A CC; run ended by software crash.", + "num_cycles": 26, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 82411, + "duration_s": 320541.783, + "voltage_observed_min_V": 0.22682521043328058, + "voltage_observed_max_V": 4.983665116893582, + "current_observed_min_A": -1.99887278060858, + "current_observed_max_A": 1.5037058708153532, + "temperature_observed_min_C": 3.8635535255180384, + "temperature_observed_max_C": 16.429874854641657, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 3.4839999999967404, + "sample_dt_max_s": 11.01600000000326, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0053_CYCLING.json b/tests/NASA_PCOE_B0053_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..b2552c75a74fe5c3a7e1092d4e75c064a12c14c0 --- /dev/null +++ b/tests/NASA_PCOE_B0053_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0053_CYCLING", + "cell_id": "NASA_PCOE_B0053", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 1.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 2.0A to 2.0V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; 2A CC; cycled to 30% fade.", + "num_cycles": 56, + "soh_pct": 0.0, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 120623, + "duration_s": 726207.018, + "voltage_observed_min_V": 1.9333820178355814, + "voltage_observed_max_V": 4.2100827969430235, + "current_observed_min_A": -2.019579743107578, + "current_observed_max_A": 1.5162465819113995, + "temperature_observed_min_C": 3.5085933306430745, + "temperature_observed_max_C": 22.11367611975276, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 5.51500000001397, + "sample_dt_max_s": 13.781000000075437, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0054_CYCLING.json b/tests/NASA_PCOE_B0054_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..0a743a2c897d88b077402c717f0e3acd22aeaaf3 --- /dev/null +++ b/tests/NASA_PCOE_B0054_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0054_CYCLING", + "cell_id": "NASA_PCOE_B0054", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 1.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 2.0A to 2.2V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; 2A CC; cycled to 30% fade.", + "num_cycles": 103, + "soh_pct": 0.0, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 259288, + "duration_s": 1349872.3289999994, + "voltage_observed_min_V": 2.158914847324055, + "voltage_observed_max_V": 4.203671862178568, + "current_observed_min_A": -2.0183776817827956, + "current_observed_max_A": 1.520005920930581, + "temperature_observed_min_C": 3.5612677651364177, + "temperature_observed_max_C": 25.399130245059563, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 4.796999999904074, + "sample_dt_max_s": 13.780999999959022, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0055_CYCLING.json b/tests/NASA_PCOE_B0055_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..ea5e2b52cc58103752ed503c4982d66f14169edf --- /dev/null +++ b/tests/NASA_PCOE_B0055_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0055_CYCLING", + "cell_id": "NASA_PCOE_B0055", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 1.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 2.0A to 2.5V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; 2A CC; cycled to 30% fade.", + "num_cycles": 103, + "soh_pct": 123.99992783286326, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 259285, + "duration_s": 1349848.3289999994, + "voltage_observed_min_V": 2.4793908002585576, + "voltage_observed_max_V": 4.214825123183898, + "current_observed_min_A": -2.0081513637326145, + "current_observed_max_A": 1.4964682959103168, + "temperature_observed_min_C": 3.333194453462172, + "temperature_observed_max_C": 20.334330441428275, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 4.796999999904074, + "sample_dt_max_s": 13.780999999959022, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NASA_PCOE_B0056_CYCLING.json b/tests/NASA_PCOE_B0056_CYCLING.json new file mode 100644 index 0000000000000000000000000000000000000000..932ba973eb1fe420e2309bad0ea684c93e1629c3 --- /dev/null +++ b/tests/NASA_PCOE_B0056_CYCLING.json @@ -0,0 +1,34 @@ +{ + "test_id": "NASA_PCOE_B0056_CYCLING", + "cell_id": "NASA_PCOE_B0056", + "test_type": "cycle_aging", + "temperature_C_min": 4.0, + "temperature_C_max": 4.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": 0.75, + "c_rate_discharge": 1.0, + "protocol_description": "NASA PCoE aging: charge CC 1.5A to 4.2V then CV to 20 mA; discharge CC at 2.0A to 2.7V cutoff at ambient 4 degC; EIS 0.1Hz-5kHz sweep between charge/discharge. 4 degC; 2A CC; cycled to 30% fade.", + "num_cycles": 103, + "soh_pct": 143.77823394784397, + "soh_method": "capacity_vs_first_checkpoint", + "cycle_count_at_test": 0, + "test_year": 2008, + "n_samples": 259285, + "duration_s": 1349848.3289999994, + "voltage_observed_min_V": 2.680335373836448, + "voltage_observed_max_V": 4.201169878289095, + "current_observed_min_A": -1.9994834284107947, + "current_observed_max_A": 1.5060983870398095, + "temperature_observed_min_C": 3.1953520099653114, + "temperature_observed_max_C": 15.737541036017063, + "sample_dt_min_s": 1.0, + "sample_dt_median_s": 4.796999999904074, + "sample_dt_max_s": 13.780999999959022, + "source_doi": null, + "source_url": "https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/", + "source_citation": "Saha, B. & Goebel, K. (2007). Battery Data Set. NASA Prognostics Data Repository, NASA Ames Research Center, Moffett Field, CA. https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/ Cells are 18650 Li-ion; chemistry/vendor not disclosed by NASA \u2014 community consensus treats them as LCO.", + "source_license": "CC0-1.0", + "source_license_url": "https://creativecommons.org/publicdomain/zero/1.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T0_SOC50_TEST.json b/tests/NAUMANN_CAL_T0_SOC50_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..59f2b1a49ec4db2d46c57dd2e7bd977f7050f663 --- /dev/null +++ b/tests/NAUMANN_CAL_T0_SOC50_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T0_SOC50_TEST", + "cell_id": "NAUMANN_CAL_T0_SOC50", + "test_type": "calendar_aging", + "temperature_C_min": 0.0, + "temperature_C_max": 0.0, + "soc_range_min": 0.5, + "soc_range_max": 0.5, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=0 degC, SOC=50%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T10_SOC50_TEST.json b/tests/NAUMANN_CAL_T10_SOC50_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..7961960ea41de6b1ac3e6a573bbd6d8bdcb03712 --- /dev/null +++ b/tests/NAUMANN_CAL_T10_SOC50_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T10_SOC50_TEST", + "cell_id": "NAUMANN_CAL_T10_SOC50", + "test_type": "calendar_aging", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.5, + "soc_range_max": 0.5, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=10 degC, SOC=50%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T25_SOC0_TEST.json b/tests/NAUMANN_CAL_T25_SOC0_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..6e62f56c76f360440be68f284bae3cfe2464d52a --- /dev/null +++ b/tests/NAUMANN_CAL_T25_SOC0_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T25_SOC0_TEST", + "cell_id": "NAUMANN_CAL_T25_SOC0", + "test_type": "calendar_aging", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.0, + "soc_range_max": 0.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=25 degC, SOC=0%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T25_SOC100_TEST.json b/tests/NAUMANN_CAL_T25_SOC100_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..60f2e84a796250f75a082e80978878e0bef43dc1 --- /dev/null +++ b/tests/NAUMANN_CAL_T25_SOC100_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T25_SOC100_TEST", + "cell_id": "NAUMANN_CAL_T25_SOC100", + "test_type": "calendar_aging", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 1.0, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=25 degC, SOC=100%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T25_SOC50_TEST.json b/tests/NAUMANN_CAL_T25_SOC50_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..ee60bd2513714ac326e9d0af5c41ba3f5b9dfa62 --- /dev/null +++ b/tests/NAUMANN_CAL_T25_SOC50_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T25_SOC50_TEST", + "cell_id": "NAUMANN_CAL_T25_SOC50", + "test_type": "calendar_aging", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.5, + "soc_range_max": 0.5, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=25 degC, SOC=50%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T40_SOC0_TEST.json b/tests/NAUMANN_CAL_T40_SOC0_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..a2bd5d88b242f2765f3097aefe47708478a23853 --- /dev/null +++ b/tests/NAUMANN_CAL_T40_SOC0_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T40_SOC0_TEST", + "cell_id": "NAUMANN_CAL_T40_SOC0", + "test_type": "calendar_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.0, + "soc_range_max": 0.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=40 degC, SOC=0%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T40_SOC100_TEST.json b/tests/NAUMANN_CAL_T40_SOC100_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..0444ca2f3877d3aec288ebbe8a18d29977d0f976 --- /dev/null +++ b/tests/NAUMANN_CAL_T40_SOC100_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T40_SOC100_TEST", + "cell_id": "NAUMANN_CAL_T40_SOC100", + "test_type": "calendar_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 1.0, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=40 degC, SOC=100%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T40_SOC12.5_TEST.json b/tests/NAUMANN_CAL_T40_SOC12.5_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..aec655bcb625a43e7779df71e10c60deb2b5a54d --- /dev/null +++ b/tests/NAUMANN_CAL_T40_SOC12.5_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T40_SOC12.5_TEST", + "cell_id": "NAUMANN_CAL_T40_SOC12.5", + "test_type": "calendar_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.125, + "soc_range_max": 0.125, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=40 degC, SOC=12.5%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T40_SOC25_TEST.json b/tests/NAUMANN_CAL_T40_SOC25_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..c051618da417d5dc56c4310c162bc2e1be751a45 --- /dev/null +++ b/tests/NAUMANN_CAL_T40_SOC25_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T40_SOC25_TEST", + "cell_id": "NAUMANN_CAL_T40_SOC25", + "test_type": "calendar_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.25, + "soc_range_max": 0.25, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=40 degC, SOC=25%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T40_SOC37.5_TEST.json b/tests/NAUMANN_CAL_T40_SOC37.5_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..d0f8a096ca0d794b47a3937a57d6e5093264a4df --- /dev/null +++ b/tests/NAUMANN_CAL_T40_SOC37.5_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T40_SOC37.5_TEST", + "cell_id": "NAUMANN_CAL_T40_SOC37.5", + "test_type": "calendar_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.375, + "soc_range_max": 0.375, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=40 degC, SOC=37.5%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T40_SOC50_TEST.json b/tests/NAUMANN_CAL_T40_SOC50_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..1a6c6b6c2443fd244d938e10a8d5eb6e3586f663 --- /dev/null +++ b/tests/NAUMANN_CAL_T40_SOC50_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T40_SOC50_TEST", + "cell_id": "NAUMANN_CAL_T40_SOC50", + "test_type": "calendar_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.5, + "soc_range_max": 0.5, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=40 degC, SOC=50%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T40_SOC62.5_TEST.json b/tests/NAUMANN_CAL_T40_SOC62.5_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..6b3fe04f8b6d248e2c7236a4d07f1efc46a00839 --- /dev/null +++ b/tests/NAUMANN_CAL_T40_SOC62.5_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T40_SOC62.5_TEST", + "cell_id": "NAUMANN_CAL_T40_SOC62.5", + "test_type": "calendar_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.625, + "soc_range_max": 0.625, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=40 degC, SOC=62.5%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T40_SOC75_TEST.json b/tests/NAUMANN_CAL_T40_SOC75_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..903fbd6ab56c9daf48065eae6581594e4ce9a482 --- /dev/null +++ b/tests/NAUMANN_CAL_T40_SOC75_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T40_SOC75_TEST", + "cell_id": "NAUMANN_CAL_T40_SOC75", + "test_type": "calendar_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.75, + "soc_range_max": 0.75, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=40 degC, SOC=75%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T40_SOC87.5_TEST.json b/tests/NAUMANN_CAL_T40_SOC87.5_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..2f3ab174ccb269ad1bec01d7d201f4a9739916e8 --- /dev/null +++ b/tests/NAUMANN_CAL_T40_SOC87.5_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T40_SOC87.5_TEST", + "cell_id": "NAUMANN_CAL_T40_SOC87.5", + "test_type": "calendar_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.875, + "soc_range_max": 0.875, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=40 degC, SOC=87.5%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T60_SOC0_TEST.json b/tests/NAUMANN_CAL_T60_SOC0_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..302099c88ba4efe0721b36b9317b886719ef635a --- /dev/null +++ b/tests/NAUMANN_CAL_T60_SOC0_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T60_SOC0_TEST", + "cell_id": "NAUMANN_CAL_T60_SOC0", + "test_type": "calendar_aging", + "temperature_C_min": 60.0, + "temperature_C_max": 60.0, + "soc_range_min": 0.0, + "soc_range_max": 0.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=60 degC, SOC=0%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T60_SOC100_TEST.json b/tests/NAUMANN_CAL_T60_SOC100_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..58fdeba4de25404a8e19769d41eb3452581c178f --- /dev/null +++ b/tests/NAUMANN_CAL_T60_SOC100_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T60_SOC100_TEST", + "cell_id": "NAUMANN_CAL_T60_SOC100", + "test_type": "calendar_aging", + "temperature_C_min": 60.0, + "temperature_C_max": 60.0, + "soc_range_min": 1.0, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=60 degC, SOC=100%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CAL_T60_SOC50_TEST.json b/tests/NAUMANN_CAL_T60_SOC50_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..2fd8571bfb7489758b5dedaad8dfc6a2eebd4f7f --- /dev/null +++ b/tests/NAUMANN_CAL_T60_SOC50_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CAL_T60_SOC50_TEST", + "cell_id": "NAUMANN_CAL_T60_SOC50", + "test_type": "calendar_aging", + "temperature_C_min": 60.0, + "temperature_C_max": 60.0, + "soc_range_min": 0.5, + "soc_range_max": 0.5, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Calendar aging at T=60 degC, SOC=50%. Periodic checkups (capacity + R_DC,10s pulse) at the storage SOC. Published as aggregated mean across 3 replicates \u2014 one logical cell_id per (T, SOC) test point.", + "num_cycles": 35, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76467600.0, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CYC_T25_SOC50_D100_C1_C1_TEST.json b/tests/NAUMANN_CYC_T25_SOC50_D100_C1_C1_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..83fb38b938c6828cba11a92bf91089437b719de5 --- /dev/null +++ b/tests/NAUMANN_CYC_T25_SOC50_D100_C1_C1_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CYC_T25_SOC50_D100_C1_C1_TEST", + "cell_id": "NAUMANN_CYC_T25_SOC50_D100_C1_C1", + "test_type": "cycle_aging", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.0, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": 1.0, + "protocol_description": "Cycle aging at T=25 degC, SOC centre=50%, DoD=100%, charge 1C / discharge 1C, CC profile. Checkups (capacity + R_DC,10s at 50% SOC) embedded; values aggregated across 3 replicates.", + "num_cycles": 4965, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": null, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CYC_T25_SOC50_D80_C1_C1_TEST.json b/tests/NAUMANN_CYC_T25_SOC50_D80_C1_C1_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..c16b943ffc77f9105ff4471a16f9b17b3fbdd568 --- /dev/null +++ b/tests/NAUMANN_CYC_T25_SOC50_D80_C1_C1_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CYC_T25_SOC50_D80_C1_C1_TEST", + "cell_id": "NAUMANN_CYC_T25_SOC50_D80_C1_C1", + "test_type": "cycle_aging", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.09999999999999998, + "soc_range_max": 0.9, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": 1.0, + "protocol_description": "Cycle aging at T=25 degC, SOC centre=50%, DoD=80%, charge 1C / discharge 1C, CC profile. Checkups (capacity + R_DC,10s at 50% SOC) embedded; values aggregated across 3 replicates.", + "num_cycles": 10605, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": null, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CYC_T40_SOC25_D20_C1_C1_TEST.json b/tests/NAUMANN_CYC_T40_SOC25_D20_C1_C1_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..18721d611dd5560892cc6fe749b7d6fc5b49403c --- /dev/null +++ b/tests/NAUMANN_CYC_T40_SOC25_D20_C1_C1_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CYC_T40_SOC25_D20_C1_C1_TEST", + "cell_id": "NAUMANN_CYC_T40_SOC25_D20_C1_C1", + "test_type": "cycle_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.15, + "soc_range_max": 0.35, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": 1.0, + "protocol_description": "Cycle aging at T=40 degC, SOC centre=25%, DoD=20%, charge 1C / discharge 1C, CC profile. Checkups (capacity + R_DC,10s at 50% SOC) embedded; values aggregated across 3 replicates.", + "num_cycles": 10608, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": null, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CYC_T40_SOC50_D100_C1_C1_TEST.json b/tests/NAUMANN_CYC_T40_SOC50_D100_C1_C1_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..0ceca003238dd36399f4132045ba1505f80d103b --- /dev/null +++ b/tests/NAUMANN_CYC_T40_SOC50_D100_C1_C1_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CYC_T40_SOC50_D100_C1_C1_TEST", + "cell_id": "NAUMANN_CYC_T40_SOC50_D100_C1_C1", + "test_type": "cycle_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.0, + "soc_range_max": 1.0, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": 1.0, + "protocol_description": "Cycle aging at T=40 degC, SOC centre=50%, DoD=100%, charge 1C / discharge 1C, CC+CV profile. Checkups (capacity + R_DC,10s at 50% SOC) embedded; values aggregated across 3 replicates.", + "num_cycles": 10498, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": null, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CYC_T40_SOC50_D10_C1_C1_TEST.json b/tests/NAUMANN_CYC_T40_SOC50_D10_C1_C1_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..ec9e3e9acfcfc535f3f917c63d7f04d8acf8bd1d --- /dev/null +++ b/tests/NAUMANN_CYC_T40_SOC50_D10_C1_C1_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CYC_T40_SOC50_D10_C1_C1_TEST", + "cell_id": "NAUMANN_CYC_T40_SOC50_D10_C1_C1", + "test_type": "cycle_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.45, + "soc_range_max": 0.55, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": 1.0, + "protocol_description": "Cycle aging at T=40 degC, SOC centre=50%, DoD=10%, charge 1C / discharge 1C, CC profile. Checkups (capacity + R_DC,10s at 50% SOC) embedded; values aggregated across 3 replicates.", + "num_cycles": 10605, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": null, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CYC_T40_SOC50_D20_C1_C1_TEST.json b/tests/NAUMANN_CYC_T40_SOC50_D20_C1_C1_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..322da46a7a894ab1e58b910378ed54f80ae3d80a --- /dev/null +++ b/tests/NAUMANN_CYC_T40_SOC50_D20_C1_C1_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CYC_T40_SOC50_D20_C1_C1_TEST", + "cell_id": "NAUMANN_CYC_T40_SOC50_D20_C1_C1", + "test_type": "cycle_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.4, + "soc_range_max": 0.6, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": 1.0, + "protocol_description": "Cycle aging at T=40 degC, SOC centre=50%, DoD=20%, charge 1C / discharge 1C, CC profile. Checkups (capacity + R_DC,10s at 50% SOC) embedded; values aggregated across 3 replicates.", + "num_cycles": 10606, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": null, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CYC_T40_SOC50_D40_C1_C1_TEST.json b/tests/NAUMANN_CYC_T40_SOC50_D40_C1_C1_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..6476103714bef02b1c89810a0b694aa5201c1231 --- /dev/null +++ b/tests/NAUMANN_CYC_T40_SOC50_D40_C1_C1_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CYC_T40_SOC50_D40_C1_C1_TEST", + "cell_id": "NAUMANN_CYC_T40_SOC50_D40_C1_C1", + "test_type": "cycle_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.3, + "soc_range_max": 0.7, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": 1.0, + "protocol_description": "Cycle aging at T=40 degC, SOC centre=50%, DoD=40%, charge 1C / discharge 1C, CC profile. Checkups (capacity + R_DC,10s at 50% SOC) embedded; values aggregated across 3 replicates.", + "num_cycles": 10606, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": null, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CYC_T40_SOC50_D5_C1_C1_TEST.json b/tests/NAUMANN_CYC_T40_SOC50_D5_C1_C1_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..9292a1c15857a731aa3f520d713fe074c2259bac --- /dev/null +++ b/tests/NAUMANN_CYC_T40_SOC50_D5_C1_C1_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CYC_T40_SOC50_D5_C1_C1_TEST", + "cell_id": "NAUMANN_CYC_T40_SOC50_D5_C1_C1", + "test_type": "cycle_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.475, + "soc_range_max": 0.525, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": 1.0, + "protocol_description": "Cycle aging at T=40 degC, SOC centre=50%, DoD=5%, charge 1C / discharge 1C, CC profile. Checkups (capacity + R_DC,10s at 50% SOC) embedded; values aggregated across 3 replicates.", + "num_cycles": 10604, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": null, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CYC_T40_SOC50_D80_C0.2_C0.2_TEST.json b/tests/NAUMANN_CYC_T40_SOC50_D80_C0.2_C0.2_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..dae9a5d0db30896329df0f235e07fde34a91c335 --- /dev/null +++ b/tests/NAUMANN_CYC_T40_SOC50_D80_C0.2_C0.2_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CYC_T40_SOC50_D80_C0.2_C0.2_TEST", + "cell_id": "NAUMANN_CYC_T40_SOC50_D80_C0.2_C0.2", + "test_type": "cycle_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.09999999999999998, + "soc_range_max": 0.9, + "soc_step": null, + "c_rate_charge": 0.2, + "c_rate_discharge": 0.2, + "protocol_description": "Cycle aging at T=40 degC, SOC centre=50%, DoD=80%, charge 0.2C / discharge 0.2C, CC profile. Checkups (capacity + R_DC,10s at 50% SOC) embedded; values aggregated across 3 replicates.", + "num_cycles": 2121, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": null, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CYC_T40_SOC50_D80_C0.5_C0.5_TEST.json b/tests/NAUMANN_CYC_T40_SOC50_D80_C0.5_C0.5_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..4c2341a5ce588182c1409cb2a06ee8fbba7b3ea0 --- /dev/null +++ b/tests/NAUMANN_CYC_T40_SOC50_D80_C0.5_C0.5_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CYC_T40_SOC50_D80_C0.5_C0.5_TEST", + "cell_id": "NAUMANN_CYC_T40_SOC50_D80_C0.5_C0.5", + "test_type": "cycle_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.09999999999999998, + "soc_range_max": 0.9, + "soc_step": null, + "c_rate_charge": 0.5, + "c_rate_discharge": 0.5, + "protocol_description": "Cycle aging at T=40 degC, SOC centre=50%, DoD=80%, charge 0.5C / discharge 0.5C, CC profile. Checkups (capacity + R_DC,10s at 50% SOC) embedded; values aggregated across 3 replicates.", + "num_cycles": 5305, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": null, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CYC_T40_SOC50_D80_C0.5_C1_TEST.json b/tests/NAUMANN_CYC_T40_SOC50_D80_C0.5_C1_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..9ba224564434400030e72f8d0b2ad12d349a58f0 --- /dev/null +++ b/tests/NAUMANN_CYC_T40_SOC50_D80_C0.5_C1_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CYC_T40_SOC50_D80_C0.5_C1_TEST", + "cell_id": "NAUMANN_CYC_T40_SOC50_D80_C0.5_C1", + "test_type": "cycle_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.09999999999999998, + "soc_range_max": 0.9, + "soc_step": null, + "c_rate_charge": 0.5, + "c_rate_discharge": 1.0, + "protocol_description": "Cycle aging at T=40 degC, SOC centre=50%, DoD=80%, charge 0.5C / discharge 1C, CC profile. Checkups (capacity + R_DC,10s at 50% SOC) embedded; values aggregated across 3 replicates.", + "num_cycles": 7064, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": null, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CYC_T40_SOC50_D80_C1_C0.5_TEST.json b/tests/NAUMANN_CYC_T40_SOC50_D80_C1_C0.5_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..d4d490a84403c9f4ee82719144046d1790260085 --- /dev/null +++ b/tests/NAUMANN_CYC_T40_SOC50_D80_C1_C0.5_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CYC_T40_SOC50_D80_C1_C0.5_TEST", + "cell_id": "NAUMANN_CYC_T40_SOC50_D80_C1_C0.5", + "test_type": "cycle_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.09999999999999998, + "soc_range_max": 0.9, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": 0.5, + "protocol_description": "Cycle aging at T=40 degC, SOC centre=50%, DoD=80%, charge 1C / discharge 0.5C, CC profile. Checkups (capacity + R_DC,10s at 50% SOC) embedded; values aggregated across 3 replicates.", + "num_cycles": 7074, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": null, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CYC_T40_SOC50_D80_C1_C1_TEST.json b/tests/NAUMANN_CYC_T40_SOC50_D80_C1_C1_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..6f41f73b41812231ede9395ee7a7dd7294be06d5 --- /dev/null +++ b/tests/NAUMANN_CYC_T40_SOC50_D80_C1_C1_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CYC_T40_SOC50_D80_C1_C1_TEST", + "cell_id": "NAUMANN_CYC_T40_SOC50_D80_C1_C1", + "test_type": "cycle_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.09999999999999998, + "soc_range_max": 0.9, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": 1.0, + "protocol_description": "Cycle aging at T=40 degC, SOC centre=50%, DoD=80%, charge 1C / discharge 1C, CC profile. Checkups (capacity + R_DC,10s at 50% SOC) embedded; values aggregated across 3 replicates.", + "num_cycles": 10607, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": null, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CYC_T40_SOC50_D80_C1_C2_TEST.json b/tests/NAUMANN_CYC_T40_SOC50_D80_C1_C2_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..48fc44087a8d37dc206f7fad9077bc01e9eaaed3 --- /dev/null +++ b/tests/NAUMANN_CYC_T40_SOC50_D80_C1_C2_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CYC_T40_SOC50_D80_C1_C2_TEST", + "cell_id": "NAUMANN_CYC_T40_SOC50_D80_C1_C2", + "test_type": "cycle_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.09999999999999998, + "soc_range_max": 0.9, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": 2.0, + "protocol_description": "Cycle aging at T=40 degC, SOC centre=50%, DoD=80%, charge 1C / discharge 2C, CC profile. Checkups (capacity + R_DC,10s at 50% SOC) embedded; values aggregated across 3 replicates.", + "num_cycles": 13662, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": null, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_CYC_T40_SOC75_D20_C1_C1_TEST.json b/tests/NAUMANN_CYC_T40_SOC75_D20_C1_C1_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..af0223de67cbe565c375541559b087fad7630564 --- /dev/null +++ b/tests/NAUMANN_CYC_T40_SOC75_D20_C1_C1_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_CYC_T40_SOC75_D20_C1_C1_TEST", + "cell_id": "NAUMANN_CYC_T40_SOC75_D20_C1_C1", + "test_type": "cycle_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.65, + "soc_range_max": 0.85, + "soc_step": null, + "c_rate_charge": 1.0, + "c_rate_discharge": 1.0, + "protocol_description": "Cycle aging at T=40 degC, SOC centre=75%, DoD=20%, charge 1C / discharge 1C, CC profile. Checkups (capacity + R_DC,10s at 50% SOC) embedded; values aggregated across 3 replicates.", + "num_cycles": 10601, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": null, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_LOAD_PVBattery_T40_SOC51.4_TEST.json b/tests/NAUMANN_LOAD_PVBattery_T40_SOC51.4_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..0a3c6edffee7c9aacf7473e7240747c2e5551580 --- /dev/null +++ b/tests/NAUMANN_LOAD_PVBattery_T40_SOC51.4_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_LOAD_PVBattery_T40_SOC51.4_TEST", + "cell_id": "NAUMANN_LOAD_PVBattery_T40_SOC51.4", + "test_type": "cycle_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Cycle aging at T=40 degC under load spectrum 'PVBattery' around SOC=51.4%. Checkups (capacity + R_DC,10s) embedded; values aggregated across replicates.", + "num_cycles": 2138, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76368906.64622018, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/NAUMANN_LOAD_PVPRLBattery_T40_SOC51.2_TEST.json b/tests/NAUMANN_LOAD_PVPRLBattery_T40_SOC51.2_TEST.json new file mode 100644 index 0000000000000000000000000000000000000000..306bab4f7ada1d2c5f837dcf15015add71f6b8e1 --- /dev/null +++ b/tests/NAUMANN_LOAD_PVPRLBattery_T40_SOC51.2_TEST.json @@ -0,0 +1,34 @@ +{ + "test_id": "NAUMANN_LOAD_PVPRLBattery_T40_SOC51.2_TEST", + "cell_id": "NAUMANN_LOAD_PVPRLBattery_T40_SOC51.2", + "test_type": "cycle_aging", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": null, + "soc_range_max": null, + "soc_step": null, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Cycle aging at T=40 degC under load spectrum 'PVPRLBattery' around SOC=51.2%. Checkups (capacity + R_DC,10s) embedded; values aggregated across replicates.", + "num_cycles": 753, + "soh_pct": null, + "soh_method": null, + "cycle_count_at_test": 0, + "test_year": 2018, + "n_samples": 0, + "duration_s": 76330418.23129876, + "voltage_observed_min_V": null, + "voltage_observed_max_V": null, + "current_observed_min_A": null, + "current_observed_max_A": null, + "temperature_observed_min_C": null, + "temperature_observed_max_C": null, + "sample_dt_min_s": null, + "sample_dt_median_s": null, + "sample_dt_max_s": null, + "source_doi": "10.17632/kxh42bfgtj.1", + "source_url": "https://data.mendeley.com/datasets/kxh42bfgtj/1", + "source_citation": "Naumann, M. (2021). Data for: Analysis and modeling of calendar/cycle aging of a commercial LiFePO4/graphite cell. Mendeley Data. DOIs: 10.17632/kxh42bfgtj.1 (calendar) and 10.17632/6hgyr25h8d.1 (cycle). Companion papers: Naumann et al. JPS 2018 doi:10.1016/j.est.2018.01.019, Naumann et al. JPS 2020 doi:10.1016/j.jpowsour.2019.227666", + "source_license": "CC-BY-4.0", + "source_license_url": "https://creativecommons.org/licenses/by/4.0/" +} \ No newline at end of file diff --git a/tests/ORNL_LEAF_2013_HPPC_10C.json b/tests/ORNL_LEAF_2013_HPPC_10C.json new file mode 100644 index 0000000000000000000000000000000000000000..fc6977e151bfcc6d07b584978b1ec2a4d3105ccd --- /dev/null +++ b/tests/ORNL_LEAF_2013_HPPC_10C.json @@ -0,0 +1,34 @@ +{ + "test_id": "ORNL_LEAF_2013_HPPC_10C", + "cell_id": "ORNL_LEAF_2013", + "test_type": "hppc", + "temperature_C_min": 10.0, + "temperature_C_max": 10.0, + "soc_range_min": 0.0, + "soc_range_max": 1.0, + "soc_step": 0.1, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Low-current HPPC with 10% SOC steps", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2013, + "n_samples": 12909, + "duration_s": 47040.8, + "voltage_observed_min_V": 3.0, + "voltage_observed_max_V": 4.203, + "current_observed_min_A": -30.0, + "current_observed_max_A": 22.5, + "temperature_observed_min_C": 10.0, + "temperature_observed_max_C": 10.0, + "sample_dt_min_s": 0.09999999999854481, + "sample_dt_median_s": 1.0, + "sample_dt_max_s": 60.0, + "source_doi": "10.5281/zenodo.2580327", + "source_url": "https://zenodo.org/records/2580327", + "source_citation": "Wiggins, G., Allu, S., & Wang, H. (2019). Battery cell data from a 2013 Nissan Leaf. Oak Ridge National Laboratory. https://doi.org/10.5281/zenodo.2580327", + "source_license": "MIT", + "source_license_url": "https://opensource.org/licenses/MIT" +} \ No newline at end of file diff --git a/tests/ORNL_LEAF_2013_HPPC_25C.json b/tests/ORNL_LEAF_2013_HPPC_25C.json new file mode 100644 index 0000000000000000000000000000000000000000..a886ba6e46b9afbd914916bd2b4cdf285bcbdcd0 --- /dev/null +++ b/tests/ORNL_LEAF_2013_HPPC_25C.json @@ -0,0 +1,34 @@ +{ + "test_id": "ORNL_LEAF_2013_HPPC_25C", + "cell_id": "ORNL_LEAF_2013", + "test_type": "hppc", + "temperature_C_min": 25.0, + "temperature_C_max": 25.0, + "soc_range_min": 0.0, + "soc_range_max": 1.0, + "soc_step": 0.1, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Low-current HPPC with 10% SOC steps", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2013, + "n_samples": 12991, + "duration_s": 47122.6, + "voltage_observed_min_V": 3.0, + "voltage_observed_max_V": 4.203, + "current_observed_min_A": -30.0, + "current_observed_max_A": 22.5, + "temperature_observed_min_C": 25.0, + "temperature_observed_max_C": 25.0, + "sample_dt_min_s": 0.09999999999854481, + "sample_dt_median_s": 1.0, + "sample_dt_max_s": 60.0, + "source_doi": "10.5281/zenodo.2580327", + "source_url": "https://zenodo.org/records/2580327", + "source_citation": "Wiggins, G., Allu, S., & Wang, H. (2019). Battery cell data from a 2013 Nissan Leaf. Oak Ridge National Laboratory. https://doi.org/10.5281/zenodo.2580327", + "source_license": "MIT", + "source_license_url": "https://opensource.org/licenses/MIT" +} \ No newline at end of file diff --git a/tests/ORNL_LEAF_2013_HPPC_40C.json b/tests/ORNL_LEAF_2013_HPPC_40C.json new file mode 100644 index 0000000000000000000000000000000000000000..6a82deb7a622e7c943d093d7c2450504148cdb5c --- /dev/null +++ b/tests/ORNL_LEAF_2013_HPPC_40C.json @@ -0,0 +1,34 @@ +{ + "test_id": "ORNL_LEAF_2013_HPPC_40C", + "cell_id": "ORNL_LEAF_2013", + "test_type": "hppc", + "temperature_C_min": 40.0, + "temperature_C_max": 40.0, + "soc_range_min": 0.0, + "soc_range_max": 1.0, + "soc_step": 0.1, + "c_rate_charge": null, + "c_rate_discharge": null, + "protocol_description": "Low-current HPPC with 10% SOC steps", + "num_cycles": 1, + "soh_pct": 100.0, + "soh_method": "bol_assumption", + "cycle_count_at_test": 0, + "test_year": 2013, + "n_samples": 13065, + "duration_s": 47196.100000000006, + "voltage_observed_min_V": 3.0, + "voltage_observed_max_V": 4.202, + "current_observed_min_A": -30.0, + "current_observed_max_A": 22.5, + "temperature_observed_min_C": 40.0, + "temperature_observed_max_C": 40.0, + "sample_dt_min_s": 0.09999999999854481, + "sample_dt_median_s": 1.0, + "sample_dt_max_s": 60.0, + "source_doi": "10.5281/zenodo.2580327", + "source_url": "https://zenodo.org/records/2580327", + "source_citation": "Wiggins, G., Allu, S., & Wang, H. (2019). Battery cell data from a 2013 Nissan Leaf. Oak Ridge National Laboratory. https://doi.org/10.5281/zenodo.2580327", + "source_license": "MIT", + "source_license_url": "https://opensource.org/licenses/MIT" +} \ No newline at end of file diff --git a/timeseries.parquet b/timeseries.parquet new file mode 100644 index 0000000000000000000000000000000000000000..1b8418d106986978e280c43ec8044343877b23af --- /dev/null +++ b/timeseries.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09e877285949dd256e6fd48f95a95a56d5030067ddeaf28261ca1023f5370ba2 +size 3972489506