Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot load the dataset split (in streaming mode) to extract the first rows.
Error code:   StreamingRowsError
Exception:    CastError
Message:      Couldn't cast
benchmark_metadata: struct<title: string, timestamp: string, git_branch: string, physics: string, verification_framework (... 9 chars omitted)
  child 0, title: string
  child 1, timestamp: string
  child 2, git_branch: string
  child 3, physics: string
  child 4, verification_framework: string
openfoam_icofoam: struct<solver: string, grid: string, solve_time_sec: double, mesh_time_sec: double, total_pcg_iterat (... 111 chars omitted)
  child 0, solver: string
  child 1, grid: string
  child 2, solve_time_sec: double
  child 3, mesh_time_sec: double
  child 4, total_pcg_iterations: int64
  child 5, mean_pcg_iterations_per_step: double
  child 6, mean_continuity_error: double
  child 7, max_continuity_error: double
runux_spectral_dns: struct<solver: string, grid: string, solve_time_sec: double, pressure_iterations: int64, mean_diverg (... 85 chars omitted)
  child 0, solver: string
  child 1, grid: string
  child 2, solve_time_sec: double
  child 3, pressure_iterations: int64
  child 4, mean_divergence_norm: double
  child 5, max_divergence_norm: double
  child 6, energy_conservation_residual: double
dyadic_cascade_regularity: struct<n_shells: int64, viscosity: double, dualscale_alpha_prime: double, enstrophy_upper_bound: dou (... 143 chars omitted)
  child 0, n_shells: int64
  child 1, viscosity: double
  child 2, dualscale_alpha_prime: double
  child 3, enstrophy_upper_bound: double
  child 4, standard_max_enstrophy: double
  child 5, dualscale_max_enstrophy: double
  child 
...
hetic_max_enstrophy: double
  child 7, bkm_regularity_guarantee: string
comparative_findings: struct<incompressibility_improvement_factor: double, linear_solver_speedup: string, numerical_diffus (... 59 chars omitted)
  child 0, incompressibility_improvement_factor: double
  child 1, linear_solver_speedup: string
  child 2, numerical_diffusion_difference: string
  child 3, epistemic_audit_conclusion: string
n_time_steps: int64
time_end: struct<lo: double, hi: double>
  child 0, lo: double
  child 1, hi: double
initial_data_hash: string
viscosity_rational: string
computed_at_utc: timestamp[s]
mode_decay_alpha: struct<lo: double, hi: double>
  child 0, lo: double
  child 1, hi: double
truncation_m: int64
time_start: struct<lo: double, hi: double>
  child 0, lo: double
  child 1, hi: double
enstrophy_bound: struct<lo: double, hi: double>
  child 0, lo: double
  child 1, hi: double
contraction_rate: struct<lo: double, hi: double>
  child 0, lo: double
  child 1, hi: double
mode_decay_coefficients_lo: list<item: double>
  child 0, item: double
runux_version: string
h1_norm_bound: struct<lo: double, hi: double>
  child 0, lo: double
  child 1, hi: double
mode_decay_coefficients_hi: list<item: double>
  child 0, item: double
cpu_cores_used: int64
schema_version: int64
residual_bound: struct<lo: double, hi: double>
  child 0, lo: double
  child 1, hi: double
invariant_region_lo: list<item: double>
  child 0, item: double
invariant_region_hi: list<item: double>
  child 0, item: double
to
{'schema_version': Value('int64'), 'truncation_m': Value('int64'), 'viscosity_rational': Value('string'), 'time_start': {'lo': Value('float64'), 'hi': Value('float64')}, 'time_end': {'lo': Value('float64'), 'hi': Value('float64')}, 'h1_norm_bound': {'lo': Value('float64'), 'hi': Value('float64')}, 'enstrophy_bound': {'lo': Value('float64'), 'hi': Value('float64')}, 'mode_decay_alpha': {'lo': Value('float64'), 'hi': Value('float64')}, 'mode_decay_coefficients_lo': List(Value('float64')), 'mode_decay_coefficients_hi': List(Value('float64')), 'invariant_region_lo': List(Value('float64')), 'invariant_region_hi': List(Value('float64')), 'residual_bound': {'lo': Value('float64'), 'hi': Value('float64')}, 'contraction_rate': {'lo': Value('float64'), 'hi': Value('float64')}, 'n_time_steps': Value('int64'), 'computed_at_utc': Value('timestamp[s]'), 'runux_version': Value('string'), 'cpu_cores_used': Value('int64'), 'initial_data_hash': Value('string')}
because column names don't match
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/utils.py", line 147, in get_rows_or_raise
                  return get_rows(
                      dataset=dataset,
                  ...<4 lines>...
                      column_names=column_names,
                  )
                File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
                  return func(*args, **kwargs)
                File "/src/services/worker/src/worker/utils.py", line 127, in get_rows
                  rows_plus_one = list(itertools.islice(safe_iter(ds, dataset=dataset), rows_max_number + 1))
                File "/src/services/worker/src/worker/utils.py", line 483, in safe_iter
                  yield from ds.decode(False) if ds.features else ds
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2840, in __iter__
                  for key, example in ex_iterable:
                                      ^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2373, in __iter__
                  for key, pa_table in self._iter_arrow():
                                       ~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2398, in _iter_arrow
                  for key, pa_table in self.ex_iterable._iter_arrow():
                                       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 536, in _iter_arrow
                  for key, pa_table in iterator:
                                       ^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 419, in _iter_arrow
                  for key, pa_table in self.generate_tables_fn(**gen_kwags):
                                       ~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 343, in _generate_tables
                  self._cast_table(pa_table, json_field_paths=json_field_paths),
                  ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 132, in _cast_table
                  pa_table = table_cast(pa_table, self.info.features.arrow_schema)
                File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2378, in table_cast
                  return cast_table_to_schema(table, schema)
                File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2306, in cast_table_to_schema
                  raise CastError(
                  ...<3 lines>...
                  )
              datasets.table.CastError: Couldn't cast
              benchmark_metadata: struct<title: string, timestamp: string, git_branch: string, physics: string, verification_framework (... 9 chars omitted)
                child 0, title: string
                child 1, timestamp: string
                child 2, git_branch: string
                child 3, physics: string
                child 4, verification_framework: string
              openfoam_icofoam: struct<solver: string, grid: string, solve_time_sec: double, mesh_time_sec: double, total_pcg_iterat (... 111 chars omitted)
                child 0, solver: string
                child 1, grid: string
                child 2, solve_time_sec: double
                child 3, mesh_time_sec: double
                child 4, total_pcg_iterations: int64
                child 5, mean_pcg_iterations_per_step: double
                child 6, mean_continuity_error: double
                child 7, max_continuity_error: double
              runux_spectral_dns: struct<solver: string, grid: string, solve_time_sec: double, pressure_iterations: int64, mean_diverg (... 85 chars omitted)
                child 0, solver: string
                child 1, grid: string
                child 2, solve_time_sec: double
                child 3, pressure_iterations: int64
                child 4, mean_divergence_norm: double
                child 5, max_divergence_norm: double
                child 6, energy_conservation_residual: double
              dyadic_cascade_regularity: struct<n_shells: int64, viscosity: double, dualscale_alpha_prime: double, enstrophy_upper_bound: dou (... 143 chars omitted)
                child 0, n_shells: int64
                child 1, viscosity: double
                child 2, dualscale_alpha_prime: double
                child 3, enstrophy_upper_bound: double
                child 4, standard_max_enstrophy: double
                child 5, dualscale_max_enstrophy: double
                child 
              ...
              hetic_max_enstrophy: double
                child 7, bkm_regularity_guarantee: string
              comparative_findings: struct<incompressibility_improvement_factor: double, linear_solver_speedup: string, numerical_diffus (... 59 chars omitted)
                child 0, incompressibility_improvement_factor: double
                child 1, linear_solver_speedup: string
                child 2, numerical_diffusion_difference: string
                child 3, epistemic_audit_conclusion: string
              n_time_steps: int64
              time_end: struct<lo: double, hi: double>
                child 0, lo: double
                child 1, hi: double
              initial_data_hash: string
              viscosity_rational: string
              computed_at_utc: timestamp[s]
              mode_decay_alpha: struct<lo: double, hi: double>
                child 0, lo: double
                child 1, hi: double
              truncation_m: int64
              time_start: struct<lo: double, hi: double>
                child 0, lo: double
                child 1, hi: double
              enstrophy_bound: struct<lo: double, hi: double>
                child 0, lo: double
                child 1, hi: double
              contraction_rate: struct<lo: double, hi: double>
                child 0, lo: double
                child 1, hi: double
              mode_decay_coefficients_lo: list<item: double>
                child 0, item: double
              runux_version: string
              h1_norm_bound: struct<lo: double, hi: double>
                child 0, lo: double
                child 1, hi: double
              mode_decay_coefficients_hi: list<item: double>
                child 0, item: double
              cpu_cores_used: int64
              schema_version: int64
              residual_bound: struct<lo: double, hi: double>
                child 0, lo: double
                child 1, hi: double
              invariant_region_lo: list<item: double>
                child 0, item: double
              invariant_region_hi: list<item: double>
                child 0, item: double
              to
              {'schema_version': Value('int64'), 'truncation_m': Value('int64'), 'viscosity_rational': Value('string'), 'time_start': {'lo': Value('float64'), 'hi': Value('float64')}, 'time_end': {'lo': Value('float64'), 'hi': Value('float64')}, 'h1_norm_bound': {'lo': Value('float64'), 'hi': Value('float64')}, 'enstrophy_bound': {'lo': Value('float64'), 'hi': Value('float64')}, 'mode_decay_alpha': {'lo': Value('float64'), 'hi': Value('float64')}, 'mode_decay_coefficients_lo': List(Value('float64')), 'mode_decay_coefficients_hi': List(Value('float64')), 'invariant_region_lo': List(Value('float64')), 'invariant_region_hi': List(Value('float64')), 'residual_bound': {'lo': Value('float64'), 'hi': Value('float64')}, 'contraction_rate': {'lo': Value('float64'), 'hi': Value('float64')}, 'n_time_steps': Value('int64'), 'computed_at_utc': Value('timestamp[s]'), 'runux_version': Value('string'), 'cpu_cores_used': Value('int64'), 'initial_data_hash': Value('string')}
              because column names don't match

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.

LeanFlow DualScale vs. OpenFOAM (icoFoam) Navier-Stokes Benchmark & Regularity Audit

Cross-Solver Verification: Mathematics, Numerics, and Physics

Authors: Xavier Callens / RunuX AI Runtime & SocrateAI
GitHub Repository: xaviercallens/runux-ai-runtime
Release Tag: v0.5.0-dualscale-nse
Formal Verification: Lean 4 Formal Specification (spec/RunuxSpec/LeanFlow/)


1. Overview & Scope

This dataset and research bundle provides an exhaustive cross-validation of three distinct Navier-Stokes solver paradigms under canonical Taylor-Green vortex turbulence:

  1. OpenFOAM (v1912 icoFoam): Industry-standard 2nd-order Finite Volume Method (FVM) solving the Navier-Stokes equations via the PISO algorithm with iterative Krylov (PCG) pressure Poisson solves.
  2. SocrateAI DualScale Solver: Multi-scale hybrid engine coupling pseudo-spectral DNS with a dyadic shell model regularized via string-theoretic $T$-duality ($D(k) = \nu |k|^2 \max(1, \alpha' |k|^2)$).
  3. RunuX HPC / LeanFlow Spectral DNS: Certified spectral Galerkin solver with exact Fourier-space Leray-Helmholtz projection, zero pressure Poisson iterations, machine-precision incompressibility ($\sim 10^{-32}$), and Lean 4 formal certificates of invariant trapping envelopes.

Additionally, this dataset includes a thorough Epistemic Audit deconstructing OpenAI's Lean 4 formalization claim (Statement C blowup) in repository OpenAINavierStokesEuler.


2. Quantitative Benchmark Results

Evaluation Dimension OpenFOAM icoFoam (PISO FVM) SocrateAI DualScale Solver RunuX HPC Spectral DNS
Incompressibility $|\nabla \cdot u|_\infty$ $1.30 \times 10^{-12}$ (step residual) Machine precision ($\sim 10^{-16}$) $4.40 \times 10^{-32}$ (exact machine zero)
Pressure Poisson Overhead 3,276 PCG iters (21.84 iters/step) 0 iterations (analytical Leray) 0 iterations (algebraic FFT)
Energy Dissipation Fidelity Premature decay via $\nu_{num} \sim \mathcal{O}(\Delta x^2)$ Exact $dE/dt = -2\nu \Omega(t)$ Residual $\le 2.00 \times 10^{-5}$
Enstrophy Ceiling $\Omega(t)$ Unbounded (grid-limited) Strictly bounded: $\Omega \le 1/\alpha' = 100$ Invariant Trapping Envelope
Beale-Kato-Majda (BKM) Integral $\int_0^T |\omega|_\infty dt$ unverified $\int_0^T |\omega|_\infty dt < \infty$ guaranteed Certified in Lean 4 (Regularity.lean)
Execution Wall-Clock (150 steps) 0.42 s (mesh + solve) 0.88 s 1.35 s

3. Mathematical Regularity & Singularity Prevention

3.1 Exact Leray-Helmholtz Projection

In continuous space, the pressure Poisson equation $-\Delta p = \nabla \cdot ((u \cdot \nabla) u)$ eliminates pressure from the momentum equation: βˆ‚tu=P(Ξ½Ξ”uβˆ’(uβ‹…βˆ‡)u)\partial_t u = \mathbb{P} \left( \nu \Delta u - (u \cdot \nabla) u \right) where $\mathbb{P} = I - \nabla \Delta^{-1} \nabla \cdot$. In the Fourier domain: P^ij(k)=Ξ΄ijβˆ’kikj∣k∣2\widehat{\mathbb{P}}_{ij}(\mathbf{k}) = \delta_{ij} - \frac{k_i k_j}{|\mathbf{k}|^2} This projection is exact, orthogonal, and diagonal in wavevector space, eliminating the stiff pressure linear solve that consumes ~78% of OpenFOAM's CPU time.

3.2 Dual-Scale $T$-Duality Regularization

The SocrateAI DualScale solver introduces the ultraviolet regularizer: D(n)=Ξ½kn2max⁑(1,Ξ±β€²kn2)D(n) = \nu k_n^2 \max(1, \alpha' k_n^2) For scales $k_n > 1/\sqrt{\alpha'}$, hyper-viscous damping $\nu \alpha' k_n^4$ dominates non-linear convective transfer by two full derivatives. Consequently: Ξ©(t)=12βˆ‘nkn2∣un∣2≀1Ξ±β€²=100.0βˆ€tβ‰₯0\Omega(t) = \frac{1}{2} \sum_n k_n^2 |u_n|^2 \le \frac{1}{\alpha'} = 100.0 \quad \forall t \ge 0 By the Beale-Kato-Majda (BKM) criterion: ∫0Tβˆ₯Ο‰(β‹…,t)βˆ₯L∞dt≀T2Ξ±β€²<∞\int_0^T \|\omega(\cdot, t)\|_{L^\infty} dt \le T \sqrt{\frac{2}{\alpha'}} < \infty Finite-time blowup is mathematically impossible.


4. Epistemic Audit of OpenAI Statement C Blowup Claim

The analytical paper included in this repository (paper/DUALSCALE_OPENFOAM_NSE_ANALYSIS.md) deconstructs OpenAI's Lean 4 formalization and reveals 5 fatal vulnerabilities:

  1. Manufactured Residual Forcing ($f_{res} \ne 0$): OpenAI's proof admits an unphysical external forcing term $f_{res}(x, t) \ne 0$, effectively modeling an externally driven flow rather than the autonomous Navier-Stokes equations.
  2. Compressible Leakage: Velocity fields violate strict divergence-free incompressibility $\nabla \cdot u = 0$.
  3. Suppression of Triadic Phase Frustration: Uses a 1D cascade with strictly positive coefficients, ignoring physical phase cancellation (Triadic Frustration Index $D(M) \gg 1$).
  4. Uncapped Frequency Cascade: Discards the quadratic $\nu k_n^2$ dissipation barrier.
  5. Artificial Horizon Cutoff: Blowup time $T^*$ is engineered prior to the onset of viscous damping.

5. Dataset Contents & File Tree

.
β”œβ”€β”€ README.md                                    # This Dataset Card
β”œβ”€β”€ paper/
β”‚   └── DUALSCALE_OPENFOAM_NSE_ANALYSIS.md       # Full 25-page technical report & paper
β”œβ”€β”€ figures/
β”‚   β”œβ”€β”€ dualscale_openfoam_nse_telemetry.png    # 6-panel 300 DPI publication figure
β”‚   └── workflow_nse_simulation_telemetry.png   # 3D TGV DNS simulation telemetry
β”œβ”€β”€ data/
β”‚   β”œβ”€β”€ dualscale_openfoam_nse_results.json     # Raw metrics & iteration telemetry
β”‚   └── workflow_nse_simulation_results.json    # 3D DNS time series & spectra
β”œβ”€β”€ certificates/
β”‚   └── proof_certificate_tgv.json              # Cryptographically signed LeanFlow certificate
β”œβ”€β”€ code/
β”‚   β”œβ”€β”€ benchmark_dualscale_openfoam_nse.py     # Multi-scale cross-benchmark driver
β”‚   └── workflowNSEsimu.py                      # 3D DNS workflow driver
└── spec/
    └── LeanFlow/                               # Lean 4 Formal Specifications (Zero Axioms)
        β”œβ”€β”€ Interval.lean
        β”œβ”€β”€ Certificate.lean
        β”œβ”€β”€ NavierStokes.lean
        β”œβ”€β”€ InvariantRegion.lean
        β”œβ”€β”€ SpectralDecay.lean
        └── Regularity.lean

6. How to Reproduce

# Clone the repository
git clone https://github.com/xaviercallens/runux-ai-runtime.git
cd runux-ai-runtime

# Run the cross-benchmark suite (requires OpenFOAM 1912 and Python 3.10+)
python3 scripts/benchmark_dualscale_openfoam_nse.py

# Verify Lean 4 formal specifications
cd spec && lake build RunuxSpec

7. Citation & Attribution

@article{callens2026dualscale,
  title={Dual-Scale Regularization, Leray Projection, and Regularity in Navier-Stokes Turbulence: A Comparative Benchmark with OpenFOAM and Lean 4 Certification},
  author={Callens, Xavier},
  journal={RunuX Scientific Computing Reports},
  year={2026},
  url={https://huggingface.co/datasets/callensxavier/leanflow-dualscale-openfoam-nse-benchmark}
}
Downloads last month
23