Skip to main content

ENTRO-OMEGA: Grand Unification of Informational Entropy - Building the Ultimate Self-Sustaining Engine

Project description

๐Ÿ”ด ENTRO-OMEGA (E-LAB-10)

Grand Unification of Informational Entropy: Building the Ultimate Self-Sustaining Engine

PyPI version DOI License: MIT Python 3.11+ OSF Registration E-LAB


Overview

ENTRO-OMEGA (E-LAB-10) is the tenth and culminating project of the EntropyLab decadal research programme โ€” a unified theoretical and computational framework that fuses all prior entropic control protocols (E-LAB-01 through E-LAB-09) into a single self-governing engine designated OMEGA v1.0.

Core Contributions

Component Full Name Role
ฮฉ_core(t) Omega State Function 5-component vector tracking dissipation, pulsation, memory, quantum probability, network coherence
UFE Unified Field Equation dฮฉ_core/dt = E(ฮฉ_core,u,ฮต) - ฮ›ยทฮฉ_core + ฮพ(t)
UAS Universal Adaptive Stabiliser Closed-loop controller with ISS guarantee
H(t) Composite Health Index Weighted Lยฒ-norm complement with AEW adaptation
ฮธ(t) Breathing Threshold Self-adaptive activation boundary

Validated Results

Metric ENTRO-OMEGA Target
Collapse rate 0.0% 0.0% โœ…
Peak load reduction 91.3% >90% โœ…
Throughput gain 44.5% >35% โœ…
Convergence index 0.9987 >0.99 โœ…
Convergence time 2.87s <4.0s โœ…

Installation

pip install entro-omega

Quick Start

OMEGA v1.0 Engine

from entro_omega import OmegaCore

# Initialize OMEGA v1.0 engine
omega = OmegaCore(theta_base=0.55, gamma=0.40, delta=0.15)

# Observe environment and step
result = omega.step(env_snapshot)

print(f"Omega State: {result['omega']}")
print(f"Health Index: {result['H']:.3f}")
print(f"Control Vector: {result['u']}")

Universal Adaptive Stabiliser (UAS)

from entro_omega import UASController

uas = UASController(alpha=[1.0]*5, beta=[0.8]*5)
control = uas.compute(omega_state, theta_threshold)

Health Index with AEW Adaptation

from entro_omega import HealthIndex

health = HealthIndex(weights=[0.2, 0.2, 0.2, 0.2, 0.2])
H = health.compute(omega_state)
weights = health.update_weights(H, target=0.80)

Documentation

Resource Link Website https://entro-omega.netlify.app Research Paper DOI: 10.5281/zenodo.19547863 API Reference https://entro-omega.readthedocs.io OSF Registration https://osf.io/6v4xt


Project Structure

ENTRO-OMEGA/
โ”‚
โ”œโ”€โ”€ entro_omega/
โ”‚   โ”œโ”€โ”€ __init__.py
โ”‚   โ”œโ”€โ”€ omega_core.py      # Omega State Function ฮฉ_core(t)
โ”‚   โ”œโ”€โ”€ uas.py             # Universal Adaptive Stabiliser
โ”‚   โ”œโ”€โ”€ health.py          # Composite Health Index H(t)
โ”‚   โ”œโ”€โ”€ threshold.py       # Breathing threshold ฮธ(t)
โ”‚   โ””โ”€โ”€ utils.py           # Simulation utilities
โ”‚
โ”œโ”€โ”€ tests/
โ”‚   โ”œโ”€โ”€ test_omega_core.py
โ”‚   โ”œโ”€โ”€ test_uas.py
โ”‚   โ”œโ”€โ”€ test_health.py
โ”‚   โ””โ”€โ”€ test_utils.py
โ”‚
โ”œโ”€โ”€ examples/
โ”‚   โ”œโ”€โ”€ example_omega.py
โ”‚   โ”œโ”€โ”€ example_uas.py
โ”‚   โ””โ”€โ”€ example_health.py
โ”‚
โ”œโ”€โ”€ results/
โ”‚   โ”œโ”€โ”€ daily_report_2026-04-14.txt
โ”‚   โ”œโ”€โ”€ weekly_report_week16_2026.txt
โ”‚   โ”œโ”€โ”€ monthly_report_april_2026.txt
โ”‚   โ”œโ”€โ”€ alerts.log
โ”‚   โ””โ”€โ”€ coverage_report_2026-04-14.txt
โ”‚
โ”œโ”€โ”€ docs/
โ”‚   โ”œโ”€โ”€ conf.py
โ”‚   โ”œโ”€โ”€ index.rst
โ”‚   โ””โ”€โ”€ api.rst
โ”‚
โ”œโ”€โ”€ Netlify/
โ”‚   โ”œโ”€โ”€ index.html
โ”‚   โ”œโ”€โ”€ dashboard.html
โ”‚   โ”œโ”€โ”€ reports.html
โ”‚   โ””โ”€โ”€ documentation.html
โ”‚
โ”œโ”€โ”€ bin/
โ”‚   โ””โ”€โ”€ run_simulation.py
โ”‚
โ”œโ”€โ”€ scripts/
โ”œโ”€โ”€ data/
โ”œโ”€โ”€ dist/
โ”‚   โ””โ”€โ”€ entro-omega-1.0.0.tar.gz
โ”‚
โ”œโ”€โ”€ pyproject.toml
โ”œโ”€โ”€ requirements.txt
โ”œโ”€โ”€ requirements-dev.txt
โ”œโ”€โ”€ Dockerfile
โ”œโ”€โ”€ Makefile
โ”œโ”€โ”€ VERSION
โ”œโ”€โ”€ CITATION.cff
โ”œโ”€โ”€ AUTHORS.md
โ”œโ”€โ”€ CHANGELOG.md
โ”œโ”€โ”€ CONTRIBUTING.md
โ”œโ”€โ”€ SECURITY.md
โ”œโ”€โ”€ DEPLOY.md
โ”œโ”€โ”€ INSTALL.md
โ””โ”€โ”€ COMPLETION.md

Codebase Statistics

Metric Value Python modules 5 Test files 4 Test cases (pending) Coverage (pending) Governing equations 12+


EntropyLab Research Program - COMPLETE

ENTRO-OMEGA is the tenth and final project in the EntropyLab series โ€” a unified research program bridging thermodynamic entropy, Shannon information theory, and AI systems control.

E-LAB Project Focus Status 01 ENTROPIA Theoretical foundations โœ… 02 ENTRO-AI AI inference stability โœ… 03 ENTRO-CORE Core entropy measurement โœ… 04 ENTRO-ENGINE System coupling โœ… 05 ENTRO-EVO Adaptive weighting โœ… 06 ENTRO-NET Distributed synchronization โœ… 07 ENTRO-QUANTUM Probabilistic states โœ… 08 ENTRO-GHOST Entropic memory โœ… 09 ENTRO-PULSE Periodic pulsing โœ… 10 ENTRO-OMEGA Grand Unification โœ…

โ†’ Program home: entropia-lab.netlify.app


Integration of All Nine Predecessor Projects

Project Contribution to OMEGA v1.0 ENTROPIA (E-LAB-01) Thermodynamic foundation - Dissipation index ฯ(t) ENTRO-AI (E-LAB-02) AI entropy throttling - Phase transition boundaries ENTRO-FLOW (E-LAB-03) Flow control - Routing backbone ENTRO-ENGINE (E-LAB-04) Coordination law - Control law substrate u_i(t) ENTRO-EVO (E-LAB-05) AEW adaptation - Weight updates w(t) ENTRO-NET (E-LAB-06) Network synchronisation - Coherence index N(t) ENTRO-QUANTUM (E-LAB-07) Quantum collapse - Probability Q(t) ENTRO-GHOST (E-LAB-08) Spectral memory - Recall fidelity G(t) ENTRO-PULSE (E-LAB-09) Rhythmic pulsation - Pulse phase P(t)


Citation

@software{baladi2026entromega,
  author    = {Samir Baladi},
  title     = {ENTRO-OMEGA: Grand Unification of Informational Entropy},
  year      = {2026},
  publisher = {Zenodo},
  doi       = {10.5281/zenodo.19547863},
  note      = {EntropyLab E-LAB-10},
  url       = {https://doi.org/10.5281/zenodo.19547863}
}

License

MIT License ยฉ 2026 Samir Baladi Ronin Institute / Rite of Renaissance ยท ORCID 0009-0003-8903-0029


"Stability is not a target to be reached but a mode of existence to be maintained โ€” dynamically, adaptively, and in full awareness of both history and probability."

โ€” EntropyLab Research Program

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

entro_omega-1.0.0.tar.gz (29.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

entro_omega-1.0.0-py3-none-any.whl (18.7 kB view details)

Uploaded Python 3

File details

Details for the file entro_omega-1.0.0.tar.gz.

File metadata

  • Download URL: entro_omega-1.0.0.tar.gz
  • Upload date:
  • Size: 29.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: ENTRO-OMEGA-Uploader/1.0

File hashes

Hashes for entro_omega-1.0.0.tar.gz
Algorithm Hash digest
SHA256 9e0ac8ff72c68ae3d24ec63dafee9319e2ccce6a5542a1dd52a384320a386dfd
MD5 9284f9d096b1f51492858c9095edfdf3
BLAKE2b-256 207bcb8e86e88f64e50d16a16d3984be822f8e742449405f4a00e6c32d0f1e22

See more details on using hashes here.

File details

Details for the file entro_omega-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: entro_omega-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 18.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: ENTRO-OMEGA-Uploader/1.0

File hashes

Hashes for entro_omega-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 347a12da6849afdb636d7465092a8fac5e50d8a1bd7bf5cb1e9907ea37dbfe73
MD5 30ebfea2485a0fdcca238a8f7c98bac7
BLAKE2b-256 650d443cb4c2208e4acd3f611816f394a8340972aca2f83593d26a5b85fef9a3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page