--- license: cc-by-4.0 language: - en size_categories: - 100M **Caveat — confidence MEDIUM** : the discharge-positive convention > for NASA PCoE Random Walk has not been confirmed from a primary NASA > technical report at the time of this card's draft. Confirmation will > be performed during adapter implementation by inspecting cycle > end-points (a CC-discharge cycle should drive voltage *down*) and the > result locked in the manifest with a verification SHA. If the > convention turns out to be charge-positive, the sign flip is removed > — the harmonization remains correct. ## Time origin NASA stores absolute timestamps (`step.time` in MATLAB datenum format) plus per-cycle relative timestamps (`step.relativeTime`). BSEBench's `time_s` column is built by **concatenating relative times across cycles** in chronological order, yielding a monotonic `time_s` from 0 through the cell's full operating life. Absolute MATLAB datenum is preserved in the manifest YAML for users needing wall-clock alignment. ## Cycle numbering A single `cycle_number` counter is used across both Random-Walk segments and pulsed-load reference cycles. The `step_id` column distinguishes their roles. This avoids the asymmetric cycle counters that appear in the raw `.mat` (where reference cycles sometimes restart at index 0). ## Excluded cells By default, two cells are flagged but **not removed** : - **RW3** : `temperature_C` masked NaN throughout (corrupted channel). - **RW20** : marked with a per-cell flag `quality_warn = true`. Rows are retained for completeness ; users running estimator-quality metrics should filter on `cell_id != 'RW20'`. The default loader exposes these as opt-in / opt-out flags ; raw rows are preserved verbatim in Parquet to allow downstream re-evaluation. ## Why "canonical" tier This is the version **users should consume** for filter benchmarking. It : - Maps NASA's struct layout to BSEBench's standardized columnar schema - Harmonizes sign convention to BPX-1.1 - Unifies cycle numbering across the seven parts and reference cycles - Strips MATLAB-specific metadata not needed for state-estimation - Loads in 1 line via `bsebench-datasets` For provenance / audit, see the [Tier 1 raw mirror](https://huggingface.co/datasets/bsebench-org/nasa-rw-2014-raw). ## Anchor standards - Sign convention : [BPX 1.1](https://bpxstandard.com/) (charge = positive, discharge = negative) - Time-series schema : [LF Energy BDF](https://lfenergy.org/lf-energy-battery-data-alliance-announces-the-battery-data-format-bdf/) (Dec 2025) where applicable ## License - **Underlying NASA data** : public domain / CC0 1.0 (per NASA Open Data Policy and the NASA PCoE Data Repository terms — see the [Tier 1 card](https://huggingface.co/datasets/bsebench-org/nasa-rw-2014-raw) for the verbatim disclaimer). - **BSEBench-derived harmonization layer** (column mapping, sign flip, Parquet schema, cycle numbering) : [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/), per the BSEBench organization's standard policy for derived data. Users who consume only the Tier 2 Parquet files should comply with **both** licenses (CC0 for raw content + CC-BY-4.0 for the BSEBench harmonization layer) — in practice this means citing both NASA and BSEBench, which is what we recommend regardless. ## How to use (target API) ```python # Once shipped (M2.1) from bsebench_datasets import load_bsebench ds = load_bsebench("nasa-rw-2014", revision="v1.0") print(ds.chemistry) # "LCO" print(ds.cell_count) # 28 print(ds.first_cell_data().head()) # canonical Parquet columns ``` ## Citation Cite the NASA PCoE record (no DOI) : ```bibtex @misc{bole2014_nasa_rw, author = {Bole, Brian and Kulkarni, Chetan S. and Daigle, Matthew}, title = {Randomized Battery Usage Data Set}, year = {2014}, publisher = {NASA Ames Prognostics Center of Excellence (PCoE)}, howpublished = {NASA PCoE Data Repository, Item~\#11}, url = {https://www.nasa.gov/intelligent-systems-division/discovery-and-systems-health/pcoe/pcoe-data-set-repository/} } @misc{bsebench2026, author = {Akir, Oussama and BSEBench Contributors}, title = {{BSEBench}: an open-source benchmark for battery state-estimation filters}, year = {2026}, url = {https://bsebench.org}, } ``` ## Provenance Derived from [`bsebench-org/nasa-rw-2014-raw`](https://huggingface.co/datasets/bsebench-org/nasa-rw-2014-raw) via [`bsebench-datasets/src/bsebench_datasets/adapters/nasa_rw_2014.py`](https://github.com/bsebench-org/bsebench-datasets/blob/main/src/bsebench_datasets/adapters/nasa_rw_2014.py). The harmonization script's commit SHA is recorded in the manifest YAML at [`bsebench-datasets/manifests/nasa_rw_2014.yaml`](https://github.com/bsebench-org/bsebench-datasets/tree/main/manifests).