Skip to main content

AFET β-Hierarchie → Kosmologische Spannungen (Hubble-Tension, S₈) — GenesisAeon Package 34

Project description

afet-tensions

GenesisAeon Package 34 — AFET β-Hierarchie → Kosmologische Spannungen

CI Python 3.11+ Zenodo License: MIT

Falsifizierbare Erklärung der Hubble-Tension (H₀ = 67.4 vs. 73.0 km/s/Mpc) und der S₈-Diskrepanz durch die AFET β-Hierarchie. Vorhersagen für LIGO O5, Euclid DR1 und DESI DR2.


Physikalischer Kern

Die AFET (Allgemeine Feld-Entropie-Theorie) sagt voraus: Domänen-spezifische β-Werte erzeugen effektive Gleichungszustand-Modifikationen, die die beobachteten kosmologischen Spannungen auflösen.

Hubble-Tension

H₀_eff(β) = H₀_ref · exp(β · σ_Φ · Γ_domain)

β_local ≈ 1.8  (spätes Universum, SNe Ia) → H₀ ≈ 73.0 km/s/Mpc
β_CMB   ≈ 0.05 (frühes Universum, CMB)   → H₀ ≈ 67.4 km/s/Mpc

Die Spannung ist kein neues Teilchen — sie ist ein β-Domänen-Artefakt.

S₈-Tension

S₈(z) = S₈_CMB · tanh(σ · Γ(z)) / tanh(σ · Γ_CMB)

Der CREP-Tensor Γ(z) nimmt bei niedrigem z ab → S₈ sinkt bei niedrigem z → beobachtete Diskrepanz zwischen CMB (S₈ ≈ 0.83) und Schwachlinsen-Surveys (S₈ ≈ 0.76) erklärt.


Installation

pip install afet-tensions
# oder
uv pip install afet-tensions

CLI

# Alle Vorhersagen berechnen
afet run

# H₀_eff bei Rotverschiebung z
afet h0-predict --z 0.5

# S₈ bei Rotverschiebung z
afet s8-predict --z 1.0

# Benchmark (alle Targets prüfen)
afet benchmark

# Falsifikations-Zeitplan
afet falsification-schedule

Python API

from afet_tensions import AFETTensions, BetaHierarchyModel, CREPRedshiftEvolution

# Diamond-Interface
system = AFETTensions()
results = system.run_cycle()

print(f"H₀_local = {results['h0_local']:.2f} km/s/Mpc")  # ≈ 73.0
print(f"H₀_CMB   = {results['h0_cmb']:.2f} km/s/Mpc")    # ≈ 67.4
print(f"H₀-Ratio = {results['h0_ratio']:.4f}")             # ≈ 1.083
print(f"S₈(z=0)  = {results['s8_z0']:.3f}")               # ≈ 0.759
print(f"ω_RIG    = {results['omega_rig_hz']:.4f} Hz")      # ≈ 0.019

# β-Hierarchie direkt
model = BetaHierarchyModel()
print(model.h0_effective(beta=1.8))   # lokaler H₀-Wert

# CREP-Rotverschiebungs-Evolution
crep = CREPRedshiftEvolution()
print(crep.s8_at_z(0.5))             # S₈ bei z=0.5

Benchmark-Targets

Größe Soll Toleranz
H₀_local 73.0 km/s/Mpc ±0.5
H₀_CMB 67.4 km/s/Mpc ±0.3
H₀-Ratio 1.083 ±0.01
S₈(z=0) 0.76 ±0.02
S₈(z=CMB) 0.83 ±0.01
ω_RIG 0.018 Hz ±0.002

Falsifikations-Zeitplan

Jahr Mission Vorhersage
2026 DESI DR2 BAO-Peak-Verschiebung δ_BAO = β_local · σ_Φ ≈ 0.006%
2027 Euclid DR1 S₈(z) = S₈_CMB · (1 − 0.05·z) für z < 1.5
2028 LIGO O5 GW-Hintergrund-Modulation bei ω_RIG ≈ 0.018 Hz

Paket-Struktur

src/afet_tensions/
├── system.py          # AFETTensions — Diamond-Interface (P34)
├── constants.py       # Physikalische Konstanten
├── beta_hierarchy.py  # BetaHierarchyModel — H₀-Erklärung
├── crep_redshift.py   # CREPRedshiftEvolution — S₈-Erklärung
├── hubble_tension.py  # HubbleTensionModel
├── s8_tension.py      # S8TensionModel
├── ligo_prediction.py # LIGO O5 Vorhersage
├── euclid_prediction.py # Euclid DR1 Vorhersage
├── desi_prediction.py # DESI DR2 Vorhersage
├── benchmark.py       # Benchmark-Targets + run_benchmark()
└── cli.py             # typer CLI
data/
├── hubble_tension_data.yaml  # H₀-Messungen (SH0ES, Planck, DESI…)
├── s8_measurements.yaml      # S₈-Surveys (KiDS-1000, DES Y3, HSC…)
└── desi_dr1_bao.yaml         # DESI DR1 BAO-Ergebnisse

Kontext: GenesisAeon Ecosystem

Package Repo Skala
P31 vrig-cosmological v_RIG ≈ 1352 km/s
P32 beta-clustering-utac Φ^(1/3) Skalierung
P33 implosive-origin-utac Pre-Inflation (spekulativ)
P34 afet-tensions Hubble + S₈
P35 phaethon-chimera Asteroid-Dynamik

Referenz: 10.5281/zenodo.17472834 · Johann Römer, MOR Research Collective · 2025/2026


Citation

DOI

This package is archived on Zenodo as GenesisAeon Package 34. A version-specific DOI will be assigned automatically on each new GitHub Release once Zenodo–GitHub integration is enabled for this repository.

@software{romer_afet_tensions,
  author       = {Römer, Johann},
  title        = {afet-tensions: AFET β-Hierarchie → Kosmologische Spannungen (Hubble, S₈)},
  year         = {2026},
  publisher    = {Zenodo},
  doi          = {10.5281/zenodo.17472834},
  url          = {https://doi.org/10.5281/zenodo.17472834}
}

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

afet_tensions-1.0.0.tar.gz (110.7 kB view details)

Uploaded Source

Built Distribution

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

afet_tensions-1.0.0-py3-none-any.whl (13.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: afet_tensions-1.0.0.tar.gz
  • Upload date:
  • Size: 110.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for afet_tensions-1.0.0.tar.gz
Algorithm Hash digest
SHA256 54f1d902266ab5e3dc26787ff1b9988646b9a33b749308efb0d6961e62a42e6d
MD5 da5c2f4afefe947c0ded6b5d62f9ad08
BLAKE2b-256 02461bc4bcd3cae3d19904b14dcf3624796c42e8e03b02b0975f7e56faa4718a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: afet_tensions-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 13.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for afet_tensions-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9c9a8cb57f74d02ce6eb833b5663d3c3ff0dbb3bfb6b6596e6a71b06e5f5105e
MD5 6b3af3ebc70c179968d2d521d23f309a
BLAKE2b-256 72745da98060f5fd0afd1d96da4b40a863675510b2d70aa85383aeb3b54bf004

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