Dataset Viewer
Auto-converted to Parquet Duplicate
The dataset viewer is not available for this split.
Job manager crashed while running this job (missing heartbeats).
Error code:   JobManagerCrashedError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

⚛️ The Fusion Equilibrium Challenge

Predict the shape of a fusion plasma (the magnetic equilibrium, $\psi$) from control inputs and diagnostics alone — without magnetic sensors. Data comes from two tokamaks:

  • DIII-D — General Atomics tokamak (San Diego, USA)
  • MAST — Mega Ampere Spherical Tokamak (Culham, UK)

In data-science terms this is an image-regression / control problem: predict a 2-D poloidal flux map (efit_psirz) at each EFIT timestep from coil currents (the actuators) and Thomson-scattering temperature/density profiles (the sensors).

One row per shot. All time-series, profiles, and flux maps are stored as nested arrays within that row. Every time array is in milliseconds (both machines).

Splits & configs

Each (machine, role) is its own config, so every config has a clean schema — the two machines have different coil layouts, and the test configs genuinely omit the target column rather than null-filling it:

Config Split Shots Contents
diii_d_train train 7,290 Full — includes the target efit_psirz
diii_d_public_test public_test 911 Inputs only — no efit_psirz column
mast_public_test public_test 1,208 Inputs only — no efit_psirz column
from datasets import load_dataset

REPO = "Sophelio/fusion-equilibrium-challenge"

# DIII-D training data (with targets)
train = load_dataset(REPO, "diii_d_train", split="train")

# Public test (inputs only — predict efit_psirz at each efit_times step)
d3d_test  = load_dataset(REPO, "diii_d_public_test", split="public_test")
mast_test = load_dataset(REPO, "mast_public_test",  split="public_test")

import numpy as np
shot = train[0]
psirz = np.array(shot["efit_psirz"])   # (T, 65, 65) for DIII-D
times = np.array(shot["efit_times"])   # (T,) ms — predict a flux map at each

Notes on the design:

  • No MAST training data. Cross-machine generalization (DIII-D → MAST) is zero-shot by construction — the mast config has only a test split.
  • Targets are withheld on the test splits. efit_psirz is removed from every public_test shot; efit_times (and MAST's efit_grid_R/Z) are kept so you know exactly which timestamps and grid to predict on.
  • A private test split is held back entirely for final scoring and is not part of this dataset.

The target

Key Shape Description
efit_psirz DIII-D (T, 65, 65)
MAST (T, 65, 129)
Poloidal flux map — a 2-D image at each timestep (V·s/rad). Withheld on test splits.
efit_times (T,) Timestamps (ms) for the target images. Align all inputs to these times.
efit_grid_R / efit_grid_Z (65,) Physical R/Z (m) for the flux grid (MAST only).

For MAST the raw flux grid is (T, 65, 129) with ~50% NaN (the central column hardware); the valid plasma region is the 65×65 block starting at R ≈ 0.12 m.

Inputs

DIII-D actuators — 18 shaping coils magnetics_F{1-9}{A,B} (±10 kA), magnetics_ECOILA (ohmic/central solenoid), magnetics_bcoil (toroidal field), magnetics_plasma_current (Ip). MAST actuators — 10 poloidal coils magnetics_p{2-6}{l,u}_current, magnetics_sol_current, magnetics_tf_current, magnetics_efps_current, magnetics_plasma_current (Ip).

Both machinesmagnetics_dsep (EFIT-derived x-point gap; >0 diverted, <0 limited) and Thomson scattering core + edge profiles (thomson_core_*, thomson_edge_*: electron temperature Te in eV and density ne in m⁻³, with time bases). Each system carries a single spatial-coordinate array, and the axis differs by machine: thomson_core_R is radius (DIII-D constant ≈ 1.94 m vertical chord; MAST per-channel R), and thomson_edge_spatial is Z on DIII-D (≈ −0.05 m) but R on MAST (≈ 1.3–1.5 m). There is no separate *_z/tan_z column.

Time bases: each machine exposes a shared magnetics_time; on DIII-D, Ip sits on its own ADC (magnetics_plasma_current_times). magnetics_dsep_times equals efit_times on every shot.

👉 Full signal dictionary, machine differences, and a beginner-friendly guide are in the challenge's hacker_resources/ bundle (README + MODELING_GUIDE.md + fusion_data_provider.py), distributed alongside the challenge.

License & acknowledgement

Work supported by the U.S. Department of Energy, Office of Science, Office of Fusion Energy Sciences, using the DIII-D National Fusion Facility, a DOE Office of Science user facility, under Award No. DE-FC02-04ER54698, and Awards DE-SC0024426, DE-SC0024499, DE-SC0024409, and DE-SC0024571. See the full challenge README for the complete DOE disclaimer. License: see challenge organizers (Sophelio).

Citation

@dataset{fusion_equilibrium_challenge,
  title  = {The Fusion Equilibrium Challenge: Predicting Plasma Shape from Control Inputs},
  author = {Michoski, Craig and Waller, Mathew and Sammuli, Brian and Boyes, William
            and Clark, Mitchell and Smith, Sterling and Nakkina, Tapan Ganatma
            and Hatch, David and Nazikian, Raffi},
  year   = {2026},
  note   = {Sophelio and General Atomics}
}
Downloads last month
-