NEUROPIA: Neural Singularity and Unified Field Synthesis Framework
Project description
๐ง NEUROPIA v1.0.0 โ E-LAB-10
Neural Singularity & Unified Field Synthesis Framework
The Grand Capstone of the EntropyLab Research Program
Overview
NEUROPIA is the tenth and final installment of the EntropyLab research program โ the Grand Unification of all nine preceding physics-informed AI frameworks into a single, coherent neural field architecture.
Where each predecessor (E-LAB-01 through E-LAB-09) targeted one dissipative physical domain โ from thermodynamic engines to magnetohydrodynamic plasma โ NEUROPIA addresses the meta-problem: what unified mathematical substrate can bind all coupled physical domains into a single entropy-minimizing controller?
The answer is built on three novel constructs:
| Construct | Role |
|---|---|
| Unified Field Propagator (UFP) | Gauge-equivariant tensor neural operator acting on the Physical Coupling Manifold |
| Cross-Domain Symmetry Preserver (CDSP) | Enforces Noether conservation laws at every domain interface โ architecturally, not as penalties |
| Entropy Capstone Module (ECM) | Integrates all nine EntropyLab dissipation functionals into a single Pareto-optimal master objective |
Key Results
| Metric | Value |
|---|---|
| Mean Unified Field Coherence Index (UFCI) | 97.3% |
| Cross-domain entropy production reduction | 93.8% vs. independent baselines |
| Neural Symmetry Violation Rate | < 2.1 ร 10โปโท per integration step |
| Inference latency (A100 FP32) | 3.1 ms full control cycle |
| Inference latency (Orin INT8) | 0.14 ms (real-time deployment) |
| Coupled physical domains (max) | 7 simultaneous |
| UFP parameters | 284.7 M |
Architecture
Input: Multi-domain physical state p(x,t) โ Physical Coupling Manifold M
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Unified Field Propagator (UFP) โ
โ L=10 gauge-equivariant spectral layers โ
โ N_d ร N_d complex cross-domain kernel โ
โ Noether projection at output layer โ
โโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Cross-Domain Symmetry Preserver (CDSP) โ
โ Onsager reciprocal matrix L_ij = L_ji โ
โ Bianchi identity (gravity sector) โ
โ Coupling consistency constraint โ
โโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Entropy Capstone Module (ECM) โ
โ ฮฃ_total = ฮฃ ฯ_ii + ฮฃ L_ijยทX_iยทX_j โ
โ Pareto optimizer: ฮฑ_i โค 0.15 per domain โ
โโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โผ
Output: Actuator commands for all coupled physical domains
Quick Start
pip install neuropia-engine
from neuropia import MultiPhysicsController, DomainSpec
# Register all coupled physical domains
domains = [
DomainSpec('mhd', module='magna_flow', dim=6, actuator='rmp_coils'),
DomainSpec('thermo', module='thermo_net', dim=4, actuator='heat_flux'),
DomainSpec('gravity',module='gravi_neural', dim=10, actuator='metric_pert'),
]
# Initialize the unified controller
ctrl = MultiPhysicsController(domains, ufp_layers=10, k_max=64)
# Run a control step
ctrl.step(dt=1e-6, obs={'mhd': mhd_state, 'thermo': T_field, 'gravity': g_field})
# Retrieve diagnostics
ufci = ctrl.get_coherence_index() # Unified Field Coherence Index
sigma = ctrl.get_entropy_budget() # Full Onsager decomposition
risk = ctrl.get_symmetry_violation_rate()
Validation Regimes
| ID | Platform | Coupled Domains | UFCI | ฮฃ Reduction |
|---|---|---|---|---|
| C1 | Tokamak + Thermal Wall | MHD + Thermo + EM | 97.8% | 94.2% |
| C2 | MHD + Gravitational Analog | MHD + Gravity + Info | 96.9% | 92.7% |
| C3 | Chemical Reactor + Heat Exchanger | Chem + Thermo + Fluid + EM | 97.4% | 93.8% |
| C4 | Neural-Bio Electromagnetic | Info + Bio + EM + Thermo + Fluid | 96.8% | 91.9% |
| C5 | Full EntropyLab Stack | All 7 sectors | 97.6% | 94.5% |
The EntropyLab Program โ Complete Index
NEUROPIA is the capstone of a ten-project unified research program. All projects share the ENTROPIA Unified Dissipation State Function ฮฆ(S, J, T) as their thermodynamic foundation.
| Code | Title | DOI | Connection to NEUROPIA |
|---|---|---|---|
| E-LAB-01 | ENTROPIA | 10.5281/zenodo.19416737 | Entropy foundation; ECM master objective |
| E-LAB-02 | ENTRO-AI | 10.5281/zenodo.19551614 | Information-geometric PCM metric |
| E-LAB-03 | PHOTON-Q | 10.5281/zenodo.19729926 | Quantum density matrix โ PCM state |
| E-LAB-04 | ENTRO-ENGINE | 10.5281/zenodo.19740081 | Multi-channel ฯ_ii decomposition |
| E-LAB-05 | CHEM-ENTROPIA | 10.5281/zenodo.19749613 | Reactive manifold Onsager constraints |
| E-LAB-06 | BIO-ENTROPIA | 10.5281/zenodo.19754893 | Metabolic flux balance โ ECM |
| E-LAB-07 | THERMO-NET | 10.5281/zenodo.19760903 | LEPM architecture; CDSP design |
| E-LAB-08 | GRAVI-NEURAL | 10.5281/zenodo.19875543 | Riemannian metric learning โ PCM |
| E-LAB-09 | MAGNA-FLOW | 10.5281/zenodo.19893462 | UFP electromagnetic sector |
| E-LAB-10 | NEUROPIA | 10.5281/zenodo.20092199 | This work โ program completion |
Theoretical Foundation
The Physical Coupling Manifold (PCM) is the central mathematical object. A point p โ M encodes the simultaneous state of all coupled fields:
p = (u, B, T, S, g_ฮผฮฝ, ฯ_q, H_info) โ M
UFP Forward Map:
p(x, t+dt) = UFP_ฮธ[p(x,t)] = Wยทp + Fโปยน[R_ฮธ(k)ยทF[p](k)]
Gauge Equivariance:
UFP_ฮธ[ฯ(g)ยทp] = ฯ(g)ยทUFP_ฮธ[p] โg โ G_phys
ECM Master Objective:
ฮฃ_total = ฮฃ_i ฯ_ii(p) + ฮฃ_{iโ j} L_ij(p)ยทX_i(p)ยทX_j(p)
Noether Conservation (hard constraint):
โ_ฮผ J^ฮผ_a = 0 โa โ {E, p, L, q}
Reproducibility Infrastructure
| Platform | Identifier / URL |
|---|---|
| Zenodo (Archive + DOI) | 10.5281/zenodo.20092199 |
| GitLab (Primary repo) | gitlab.com/gitdeeper11/NEUROPIA |
| GitHub (Mirror) | github.com/gitdeeper11/NEUROPIA |
| Codeberg (Mirror) | codeberg.org/gitdeeper11/NEUROPIA |
| Bitbucket (Mirror) | bitbucket.org/gitdeeper11/NEUROPIA |
| PyPI | pip install neuropia-engine |
| Netlify (Interactive demo) | neuropia-v1.netlify.app |
| OSF (EntropyLab parent) | EntropyLab Program |
| ORCID | 0009-0003-8903-0029 |
The Capstone Manifesto
"If ENTROPIA was the question โ how do we understand order from chaos โ then NEUROPIA is the answer. It is the state in which artificial intelligence becomes the mirror that reflects the perfection of physical law across every domain simultaneously. We do not simulate the universe. We rewrite it, digitally, in the language it wrote itself."
โ NEUROPIA v1.0.0, May 2026
Citation
@software{baladi2026neuropia,
author = {Baladi, Samir},
title = {NEUROPIA v1.0.0: Neural Singularity and Unified Field Synthesis Framework},
year = {2026},
publisher = {Zenodo},
doi = {10.5281/zenodo.20092199},
url = {https://doi.org/10.5281/zenodo.20092199},
note = {E-LAB-10, EntropyLab Program. Ronin Institute / Rite of Renaissance.}
}
Lead Researcher
Samir Baladi Independent Researcher โ Ronin Institute / Rite of Renaissance EntropyLab Research Program gitdeeper@gmail.com | ORCID: 0009-0003-8903-0029
ยฉ 2026 Samir Baladi. Licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file neuropia_engine-1.0.0.tar.gz.
File metadata
- Download URL: neuropia_engine-1.0.0.tar.gz
- Upload date:
- Size: 30.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: NEUROPIA-Uploader/1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e7cada90ead469912c9ef3ce29f6958232f8200ac004744c9241a9a6442b2c2
|
|
| MD5 |
08560f8d1236f4dd9f04e584e406f6f4
|
|
| BLAKE2b-256 |
b96d20d73bbc070b72df627e67c443cafb6bf4cb4a04510ac3d371e82d3a8f9f
|
File details
Details for the file neuropia_engine-1.0.0-py3-none-any.whl.
File metadata
- Download URL: neuropia_engine-1.0.0-py3-none-any.whl
- Upload date:
- Size: 21.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: NEUROPIA-Uploader/1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87cc3eb37d81c34db57267369938387adf58045f449fdb8322e26c28b512f267
|
|
| MD5 |
24cd8c9e36178a6da3e45cc96e869e56
|
|
| BLAKE2b-256 |
2037d9cbc6edab58bd8a0e2b8441bc48de83c4ca7d886b4592ff6ab34b537653
|