Weber’s Universe — One Force. One Field.

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: ‘Inter’, -apple-system, BlinkMacSystemFont, sans-serif; background: #f8fafc; color: #1e293b; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; }

/* ── COLOUR TOKENS ── */
:root {
–slate-50: #f8fafc; –slate-100: #f1f5f9; –slate-200: #e2e8f0;
–slate-300: #cbd5e1; –slate-400: #94a3b8; –slate-500: #64748b;
–slate-600: #475569; –slate-700: #334155; –slate-800: #1e293b;
–slate-900: #0f172a;
–blue-300: #93c5fd; –blue-400: #60a5fa; –blue-500: #3b82f6;
–blue-600: #2563eb; –blue-900: #1e3a5f;
–cyan-300: #67e8f9; –cyan-400: #22d3ee; –cyan-500: #06b6d4;
–violet-500:#8b5cf6; –violet-900:#2e1065;
–rose-300: #fda4af; –rose-500: #f43f5e;
–amber-50: #fffbeb; –amber-100:#fef3c7; –amber-200:#fde68a;
–amber-500: #f59e0b; –amber-600:#d97706; –amber-700:#b45309;
–orange-400:#fb923c;
–white: #fff;
}

/* ── LAYOUT ── */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media(min-width:640px) { .container { padding: 0 1.5rem; } }
@media(min-width:1024px) { .container { padding: 0 2rem; } }

/* ── SKIP LINK ── */
.skip-link { position: absolute; left:-9999px; top:1rem; background:var(–blue-600); color:#fff; padding:.5rem 1rem; border-radius:.75rem; font-weight:700; z-index:200; }
.skip-link:focus { left:1rem; }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: rgba(15,23,42,.92); backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(255,255,255,.06); }
.navbar-inner { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem;
height: 4rem; display: flex; align-items: center; justify-content: space-between; }
.navbar-logo { display: flex; align-items: center; gap: .625rem; }
.logo-circle { width: 2rem; height: 2rem; border-radius: 50%;
background: linear-gradient(135deg,var(–blue-400),var(–cyan-400));
display: flex; align-items: center; justify-content: center;
font-weight: 900; font-size: .7rem; color: var(–slate-900); }
.logo-text { color: #fff; font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; }
.navbar-links { display: flex; align-items: center; gap: 1.5rem; }
.navbar-links a { color: var(–slate-300); font-weight: 500; font-size: .875rem;
transition: color .2s; }
.navbar-links a:hover { color: var(–blue-400); }
.btn-nav { background: var(–blue-500); color: #fff; font-weight: 600;
font-size: .875rem; padding: .5rem 1rem; border-radius: .75rem;
transition: background .2s; }
.btn-nav:hover { background: var(–blue-400); }
@media(max-width:767px) { .navbar-links { display: none; } }

/* ── SECTION LABEL ── */
.section-label { display: inline-block; font-size: .7rem; font-weight: 700;
text-transform: uppercase; letter-spacing: .12em; color: var(–blue-400);
background: rgba(96,165,250,.12); padding: .25rem .75rem;
border-radius: 9999px; margin-bottom: .75rem; }

/* ── CARDS ── */
.card { background: #fff; border-radius: 1rem; box-shadow: 0 1px 3px rgba(0,0,0,.08);
border: 1px solid var(–slate-100); padding: 1.5rem; }
.dark-card { background: rgba(30,41,59,.6); border-radius: 1rem;
border: 1px solid var(–slate-700); padding: 1.5rem; }

/* ── SECTION SPACING ── */
section { padding: 5rem 0; }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.5rem; }
.grid-5 { display: grid; gap: 1.5rem; }
@media(min-width:640px) {
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(2,1fr); }
.grid-5 { grid-template-columns: repeat(2,1fr); }
}
@media(min-width:1024px) {
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
}
@media(min-width:1280px) {
.grid-5 { grid-template-columns: repeat(5,1fr); }
}

/* ════════════════════════════════════
HERO
════════════════════════════════════ */
#hero { min-height: 100vh; background: var(–slate-900); display: flex;
align-items: center; justify-content: center; text-align: center;
padding: 6rem 1rem 4rem; }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem;
background: rgba(59,130,246,.15); border: 1px solid rgba(96,165,250,.3);
color: var(–blue-300); font-size: .875rem; font-weight: 500;
padding: .5rem 1rem; border-radius: 9999px; margin-bottom: 2rem; }
.hero-title { font-size: clamp(2.5rem,7vw,4.5rem); font-weight: 900; color: #fff;
line-height: 1.1; letter-spacing: -.03em; margin-bottom: 1.5rem; }
.hero-gradient { display: block;
background: linear-gradient(90deg,var(–blue-400),var(–cyan-400));
-webkit-background-clip: text; background-clip: text;
-webkit-text-fill-color: transparent; }
.hero-sub { color: var(–slate-300); font-size: 1.1rem; max-width: 40rem;
margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-sub strong { color: #fff; }

/* Equation block */
.eq-block { display: inline-block; background: rgba(30,41,59,.8); border: 1px solid var(–slate-600);
border-radius: 1rem; padding: 1rem 1.5rem; font-family: ‘Courier New’,monospace;
text-align: left; margin-bottom: 2.5rem; }
.eq-label { font-size: .7rem; color: var(–slate-400); margin-bottom: .5rem; }
.eq-main { color: var(–blue-300); font-size: 1rem; }
.eq-main .cyan { color: var(–cyan-300); }
.eq-note { font-size: .7rem; color: var(–slate-500); margin-top: .5rem; }

/* Hero buttons */
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.btn-primary { background: var(–blue-500); color: #fff; font-weight: 600;
padding: .875rem 2rem; border-radius: 1rem; transition: all .2s; }
.btn-primary:hover { background: var(–blue-400); }
.btn-secondary { background: var(–slate-700); color: #fff; font-weight: 600;
padding: .875rem 2rem; border-radius: 1rem; transition: background .2s; }
.btn-secondary:hover { background: var(–slate-600); }

/* Metrics bar */
.metrics-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem;
max-width: 32rem; margin: 0 auto; }
@media(min-width:640px) { .metrics-grid { grid-template-columns: repeat(4,1fr); } }
.metric-tile { background: rgba(30,41,59,.6); border-radius: 1rem; padding: 1rem;
border: 1px solid var(–slate-700); }
.metric-num { font-size: 1.5rem; font-weight: 900; color: var(–blue-400);
font-family: ‘Courier New’,monospace; }
.metric-label { font-size: .7rem; color: var(–slate-400); margin-top: .25rem; }

/* ════════════════════════════════════
THEORY
════════════════════════════════════ */
#theory { background: #fff; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: clamp(2rem,5vw,3rem); font-weight: 900;
color: var(–slate-900); line-height: 1.15; letter-spacing: -.02em; }
.section-sub { color: var(–slate-500); margin-top: 1rem; max-width: 38rem;
margin-left: auto; margin-right: auto; font-size: 1.05rem; }
.theory-icon { width: 3rem; height: 3rem; border-radius: .875rem;
display: flex; align-items: center; justify-content: center;
font-weight: 700; font-size: 1.2rem; color: #fff;
box-shadow: 0 4px 12px rgba(0,0,0,.2); margin-bottom: 1rem; }
.card-number { font-size: .7rem; font-family: monospace; color: var(–slate-400); }
.card-title { font-size: 1.15rem; font-weight: 700; color: var(–slate-900); margin: .25rem 0 .5rem; }
.card-body { font-size: .875rem; color: var(–slate-500); line-height: 1.7; }

/* Timeline */
.timeline-wrap { background: var(–slate-900); border-radius: 1.5rem; padding: 2.5rem; margin-top: 5rem; }
.timeline-title { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 2rem; }
.timeline-grid { display: grid; gap: 0 3rem; }
@media(min-width:640px) { .timeline-grid { grid-template-columns: 1fr 1fr; } }
.tl-item { display: flex; gap: 1rem; padding-bottom: 1.5rem; }
.tl-dot-col { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: .75rem; height: .75rem; border-radius: 50%; background: var(–blue-400); margin-top: .375rem; flex-shrink: 0; }
.tl-line { width: 2px; background: rgba(96,165,250,.2); flex: 1; margin-top: .25rem; }
.tl-year { font-size: .7rem; font-weight: 700; color: var(–blue-400); font-family: monospace; }
.tl-event { font-weight: 600; color: #fff; margin: .2rem 0 .3rem; }
.tl-detail { font-size: .85rem; color: var(–slate-400); line-height: 1.6; }

/* ════════════════════════════════════
FORCES
════════════════════════════════════ */
#forces { background: var(–slate-50); }
.force-unified { display: inline-flex; align-items: center; gap: .375rem;
font-size: .7rem; font-weight: 700; color: var(–blue-600);
background: #eff6ff; padding: .25rem .625rem; border-radius: 9999px;
margin-top: .75rem; }
.callout-blue { background: var(–blue-600); border-radius: 1.5rem; padding: 2.5rem;
color: #fff; margin-top: 3rem; }
.callout-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; }
.callout-body { color: rgba(255,255,255,.85); line-height: 1.7; font-size: 1.05rem; }
.callout-grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media(min-width:640px) { .callout-grid { grid-template-columns: repeat(3,1fr); } }
.callout-tile { background: rgba(37,99,235,.5); border-radius: 1rem; padding: 1rem; text-align: center; }
.callout-eq { font-family: monospace; font-size: 1.15rem; font-weight: 700; color: var(–cyan-300); }
.callout-eq-label { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: .25rem; }

/* ════════════════════════════════════
PARTICLES
════════════════════════════════════ */
#particles { background: var(–slate-900); }
.particles .section-title { color: #fff; }
.particles .section-sub { color: var(–slate-400); }
.particle-icon { width: 3.5rem; height: 3.5rem; border-radius: 1rem;
display: flex; align-items: center; justify-content: center;
font-family: monospace; font-weight: 900; font-size: 1.4rem;
color: #fff; margin-bottom: 1rem; }
.badge-fund { font-size: .65rem; font-weight: 700; padding: .2rem .6rem;
border-radius: 9999px; background: var(–blue-900); color: var(–blue-300); }
.badge-comp { font-size: .65rem; font-weight: 700; padding: .2rem .6rem;
border-radius: 9999px; background: var(–violet-900); color: #c4b5fd; }
.particle-meta { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin: .75rem 0; }
.meta-label { font-size: .7rem; color: var(–slate-500); }
.meta-val { font-size: .875rem; font-family: monospace; color: var(–slate-200); }
.particle-desc { font-size: .875rem; color: var(–slate-400); line-height: 1.7; }

/* Spin box */
.spin-box { margin-top: 2rem; }
.spin-box .dark-card h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.spin-text { font-size: .875rem; color: var(–slate-400); line-height: 1.7; margin-bottom: .75rem; }
.spin-text strong { color: #fff; }
.code-block { background: rgba(51,65,85,.5); border-radius: .75rem; padding: 1rem;
font-family: monospace; font-size: .75rem; color: var(–cyan-300);
display: inline-block; margin-top: .5rem; }
.code-block .muted { color: var(–slate-400); }

/* Beta decay */
.beta-box { margin-top: 2rem; background: rgba(30,41,59,.6); border-radius: 1.5rem;
border: 1px solid var(–slate-700); padding: 2rem; }
.beta-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.beta-grid { display: grid; gap: 1.5rem; }
@media(min-width:640px) { .beta-grid { grid-template-columns: repeat(3,1fr); } }
.beta-step-title { font-weight: 600; color: #fff; margin-bottom: .5rem; }
.beta-step-body { font-size: .875rem; color: var(–slate-400); line-height: 1.6; margin-bottom: .75rem; }
.beta-eq { font-family: monospace; font-size: 1rem; color: var(–cyan-300); }
.beta-step-eq-label { font-size: .7rem; color: var(–slate-400); margin-top: .25rem; font-style: italic; }

/* ════════════════════════════════════
COSMOLOGY
════════════════════════════════════ */
#cosmology { background: #fff; }
.cosmology .section-sub { color: var(–slate-600); }
.cosmology-card { background: var(–slate-50); border-radius: 1.25rem; padding: 1.75rem;
border: 1px solid var(–slate-200); position: relative; }
.cosmology-card h3 { font-size: 1.2rem; font-weight: 700; color: var(–slate-900); margin-bottom: .75rem; }
.cosmology-card p { font-size: .95rem; color: var(–slate-600); line-height: 1.7; }
.cosmology-icon-wrap { position: absolute; top: 1.5rem; right: 1.5rem; width: 2.75rem; height: 2.75rem;
border-radius: 1rem; display: flex; align-items: center; justify-content: center;
font-size: 1.3rem; opacity: .2; }
.cosmology-implications-grid { display: grid; gap: 1rem; margin-top: 1.5rem; }
.cosmo-impl-item { display: flex; gap: .75rem; align-items: flex-start; }
.cosmo-checkmark { color: var(–blue-600); font-weight: 900; margin-top: .125rem; flex-shrink: 0; }
.cosmo-text { color: var(–slate-700); font-size: .95rem; line-height: 1.6; }

/* ════════════════════════════════════
OPEN QUESTIONS
════════════════════════════════════ */
#questions { background: var(–slate-900); }
.questions .section-title { color: #fff; }
.questions .section-sub { color: var(–slate-400); }
.question-card { background: rgba(30,41,59,.6); border-radius: 1.25rem; padding: 1.75rem;
border: 1px solid var(–slate-700); }
.question-number { font-size: .7rem; font-family: monospace; font-weight: 700;
color: var(–blue-400); text-transform: uppercase; }
.question-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin: .5rem 0; }
.question-text { font-size: .95rem; color: var(–slate-400); line-height: 1.7; }
.question-implications { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(139,92,246,.2); }
.question-implications .label { font-size: .7rem; font-weight: 700; color: var(–violet-500);
text-transform: uppercase; display: inline-block; margin-bottom: .5rem; }
.question-implications p { font-size: .85rem; color: var(–slate-500); line-height: 1.6; }

/* ════════════════════════════════════
APPLICATIONS
════════════════════════════════════ */
#applications { background: var(–slate-50); }
.application-card { background: #fff; border-radius: 1.25rem; padding: 1.75rem;
border: 1px solid var(–slate-200); box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.app-icon { width: 2.5rem; height: 2.5rem; border-radius: .875rem; display: flex;
align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.application-card h3 { font-size: 1.1rem; font-weight: 700; color: var(–slate-900);
margin-bottom: .5rem; }
.application-card p { font-size: .95rem; color: var(–slate-600); line-height: 1.7; margin-bottom: .75rem; }
.app-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.app-tag { font-size: .75rem; font-weight: 600; color: var(–blue-600);
background: var(–blue-50); padding: .25rem .75rem; border-radius: 9999px; }

/* ════════════════════════════════════
RESOURCES & LEGACY
════════════════════════════════════ */
#resources { background: var(–slate-900); }
.resources .section-title { color: #fff; }
.resources .section-sub { color: var(–slate-400); }
.resources-grid { display: grid; gap: 2rem; margin-top: 3rem; }
@media(min-width:768px) { .resources-grid { grid-template-columns: 1fr 1fr; } }
.resource-block { background: rgba(30,41,59,.6); border-radius: 1.25rem; padding: 2rem;
border: 1px solid var(–slate-700); }
.resource-block h3 { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.resource-list { list-style: none; }
.resource-list li { padding: .75rem 0; border-bottom: 1px solid rgba(139,92,246,.1);
font-size: .95rem; color: var(–slate-400); }
.resource-list li:last-child { border-bottom: none; }
.resource-list a { color: var(–blue-400); transition: color .2s; text-decoration: none; }
.resource-list a:hover { color: var(–blue-300); text-decoration: underline; }
.legacy-grid { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
@media(min-width:640px) { .legacy-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .legacy-grid { grid-template-columns: repeat(3,1fr); } }
.legacy-item { background: rgba(96,165,250,.1); border-radius: 1rem; padding: 1.25rem;
border: 1px solid rgba(96,165,250,.2); }
.legacy-date { font-size: .7rem; font-weight: 700; color: var(–blue-400); font-family: monospace; }
.legacy-title { font-size: .95rem; font-weight: 700; color: #fff; margin: .5rem 0; }
.legacy-desc { font-size: .85rem; color: var(–slate-500); line-height: 1.6; }

/* ════════════════════════════════════
CTA & FOOTER
════════════════════════════════════ */
#cta { background: linear-gradient(135deg,var(–blue-600) 0%,var(–blue-900) 100%);
padding: 5rem 1rem; text-align: center; }
.cta-container { max-width: 50rem; margin: 0 auto; }
.cta-title { font-size: 2.25rem; font-weight: 900; color: #fff;
margin-bottom: 1.5rem; line-height: 1.2; }
.cta-sub { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2.5rem;
line-height: 1.7; }
.cta-button { background: #fff; color: var(–blue-600); font-weight: 700;
padding: 1rem 2.5rem; border-radius: 1rem; display: inline-block;
transition: all .2s; font-size: 1rem; }
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,0,0,.2); }

footer { background: var(–slate-900); color: var(–slate-400);
padding: 2rem 1rem; text-align: center; font-size: .875rem;
border-top: 1px solid var(–slate-700); }
footer a { color: var(–blue-400); transition: color .2s; }
footer a:hover { color: var(–blue-300); }

A Unified Field Theory

One Force. One Field.

A unified framework combining Wilhelm Weber electrodynamics, variable speed of light, and quantum mechanics — explaining all fundamental forces through a single electromagnetic principle.

WEBER’S FORCE LAW (1846)
F = (e₁e₂/r²) × (1 – ṙ²/2c²)
A single formula connecting electromagnetic and gravitational phenomena

1
Unified Force

+4
Extended Theory

1846
Foundation

C(t)
Variable Speed

The Unified Framework

How Weber’s foundational principle connects electromagnetism, gravity, and quantum mechanics into a single coherent theory.

01
Electrodynamic Foundation
Wilhelm Weber (1846) derived a force law from first principles. His equation unified electrical repulsion with gravitational attraction by introducing velocity-dependent terms—predating relativity by 60 years.

🌌
02
Variable Speed of Light
Einstein’s constant-c assumption is an approximation. In Weber’s framework, the speed of light varies with cosmic epoch, particle density, and gravitational potential—providing a natural explanation for expansion.

🔬
03
Quantum Emergence
Quantisation emerges naturally from the Weber potential. Spin, energy levels, and particle statistics all follow from self-consistency conditions in the electromagnetic field.

Intellectual Lineage

1846
Weber’s Force Law
Wilhelm Weber publishes his electrodynamic force law, predating relativity by 60 years.

1905
Einstein’s Relativity
Einstein derives special relativity with constant c, overlooking Weber’s velocity-dependent potential.

1950s–1970s
Weber’s Return
Gravity theorists like Assis resurrect Weber’s framework in light of relativity and quantum mechanics.

1915
General Relativity
Einstein’s curved spacetime provides an alternative geometric approach to gravity.

1970s–2000s
Standard Model Dominance
Quantum field theory becomes the dominant paradigm, Weber theory relegated to niche discussions.

2020s+
Modern Revisit
Recent dark matter/energy puzzles prompt renewed exploration of Weber and variable-c frameworks.

Four Forces Become One

In Weber’s framework, the four fundamental interactions reduce to manifestations of a single electromagnetic principle.

Electromagnetism

The primary force in Weber theory. Electric charges interact through velocity-dependent potentials. Radio, light, and all EM phenomena emerge here.

FUNDAMENTAL

Gravity

Gravity is explained as the far-field limit of Weber’s force law applied to relativistic electrons and positrons bound in dense stellar matter.

DERIVED

Weak Force

Beta decay and flavour-changing interactions emerge from mixed electron-quark couplings in the presence of background fields.

EMERGENT

Strong Force

Quark confinement arises from the non-linear response of the quantum vacuum to ultra-high electromagnetic field strengths.

COMPOSITE

The Master Equation
All forces derive from a single potential energy function that depends on charge, velocity, separation, and ambient field strength. Unification happens not through symmetry groups, but through a unified dynamical principle.
F = dU/dr
Force from Potential

U(r, ̇r)
Velocity-Dependent

4 → 1
Unification

Elementary Constituents

In Weber’s framework, all matter consists of electrons, positrons, and nucleons. Heavier ”particles” are bound states or excited configurations.

e⁻

Electron

Mass
9.109 × 10⁻³¹ kg

Charge
−1.602 × 10⁻¹¹ C

The fundamental negatively charged lepton. Stable, non-composite in Weber theory. Forms atoms and conducts electricity. Spin 1/2 from self-circulation in the electromagnetic field.

FUNDAMENTAL

e⁺

Positron

Mass
9.109 × 10⁻³¹ kg

Charge
+1.602 × 10⁻±¹ C

The antimatter partner of the electron. Identical mass, opposite charge. Annihilates with electrons releasing energy. Rare in the current epoch due to matter-antimatter asymmetry.

FUNDAMENTAL

p

Proton

Mass
1.673 × 10⁻²· kg

Charge
+1.602 × 10⁻±¹ C

Stable, positively charged nucleus of hydrogen. In Weber theory, a bound state of electrons and positrons in a specific configuration. No quark substructure needed.

COMPOSITE

Spin: Self-Circulation in the Field

In Weber theory, spin is not an intrinsic property but arises from the circular motion of charge within the particle’s electromagnetic self-field. An electron’s spin-1/2 emerges naturally from solving the self-consistency equations of a charged oscillating dipole.

This explains why:

  • Spin is quantised (only 1/2, 1, 3/2, …)
  • Magneton scales match observation
  • Spin-orbit coupling has the observed strength
  • Pauli exclusion follows from field non-linearity
S = n(ħ/2), where n = integer

Beta Decay: Electron-Positron Coupling
1. Initial State
A proton (bound electron-positron pair in specific state) becomes unstable due to external neutron flux or vacuum fluctuation.
p → n + e⁺ + ν

2. Interaction
The field coupling allows the internal configuration to flip, emitting an electron (or positron) and a antineutrino (recoil of the field).
e⁻ + ν̅ₑ (or conjugate)

3. Final State
A neutron (different electron-positron pairing) results. Energy and momentum are conserved through field recoil.
n = p + e⁻ + ν̅ₑ

The Universe in Light of Weber

A variable-c cosmology addresses dark matter, dark energy, and the cosmic microwave background without ad-hoc particles or fields.

🌌

Expansion Without Inflation

In Weber theory, the universe doesn’t require an inflationary epoch. The apparent expansion is due to a gradual decrease in the speed of light as the universe cools and matter density decreases. Redshift naturally follows without invoking Hubble expansion.

+
Avoids the flatness problem

+
Explains horizon without inflation

+
Matches CMB observations

🔥

Dark Matter Dissolves

What we call ”dark matter” is simply the gravitational effect of ordinary matter in high-density stellar regions combined with the non-linear response of the electromagnetic field. No exotic particles or WIMPs needed.

+
No beyond-Standard-Model physics

+
Explains galaxy rotation curves

+
Matches lensing observations

💦

Dark Energy Reconsidered

The apparent acceleration of expansion stems from a changing c(t) that transitions between epochs. The universe may be decelerating or even contracting in ”proper time,” but appears to accelerate when measured with a changing fundamental constant.

+
Avoids negative-pressure fluids

+
Connects to thermodynamics

+
Predicts cycle or oscillation

🚨

Quantum Vacuum as Field

The quantum vacuum is not empty space but a structured medium—the underlying electromagnetic field in its ground state. Particles and forces are excitations and non-linearities of this universal field.

+
Eliminates infinities in QFT

+
Explains vacuum energy scale

+
Provides realism at quantum scale

Open Questions

Weber’s framework is not complete. These are the key unsolved problems and pathways to refinement.

Q1
How Does c(t) Evolve?
The speed of light must vary with cosmic epoch, but the precise form of c(t) remains to be determined. Is it tied to matter density, entropy, or some other cosmological variable? Can we derive this from first principles?
Key Challenge

Formulating a self-consistent field equation that determines c(t) dynamically.

Q2
Quantisation Mechanism
How does quantisation emerge rigorously from Weber’s continuous field? Is it a solution to a nonlinear wave equation, or does it require additional input? Can Planck’s constant be derived?
Key Challenge

Deriving quantum statistics and commutation relations from the electromagnetic potential.

Q3
Stability of Matter
What prevents an electron from collapsing into a positron? In Weber theory, the electron must be a bound, rotating configuration of its own field. What sustains this structure against dissipation?
Key Challenge

Explaining why the electron’s energy doesn’t radiate away in classical electromagnetism.

Q4
Experimental Tests
What precision measurements can distinguish Weber theory from standard relativity and QFT? Are there deviations in atomic spectra, gravitational lensing, or quantum entanglement that could be smoking guns?
Key Challenge

Designing experiments to test c(t) variation and non-linear field effects at accessible scales.

Q5
Matter-Antimatter Asymmetry
Why is the universe dominated by matter rather than equal electron-positron pairs? Does Weber theory predict an asymmetry or is it a boundary condition? Can it solve the baryon asymmetry problem?
Key Challenge

Deriving the ratio (e⁻ / e⁺) from first principles or initial conditions.

Q6
Gauge Freedom & Relativistic Limits
Does Weber’s force law emerge as a limit of a more general gauge theory? How does it relate to U(1) electromagnetism and general covariance? Is there a deeper principle?
Key Challenge

Reconciling Weber’s action-at-a-distance with local gauge symmetry.

Where it Matters

Weber’s framework, if correct, has profound implications for technology, cosmology, and fundamental science.

Energy Generation

If Weber’s velocity-dependent coupling is correct, new mechanisms for extracting energy from moving charges and fields become possible. Ultra-efficient batteries, capacitors, and power systems could result.

Energy Tech
Near-term

{📡

Gravitational Engineering

If gravity emerges from electromagnetism, engineering massive charges and currents might allow local gravitational control—artificial gravity, shielding, or propulsion. Speculative but not forbidden.

Space Tech
Far-future

{🔬

Precision Measurement

Weber theory predicts tiny deviations from relativity in atomic clocks, GPS, and quantum sensors. Ultra-precise measurements could detect c(t) variations or field non-linearities, opening new metrological frontiers.

Quantum Sensing
Current Era

{💡

Information Technology

A deeper understanding of quantum mechanics through Weber’s field-based approach might reveal new computational principles, quantum algorithms, or communication protocols.

Quantum Computing
Research Stage

{🌍

Cosmological Modelling

A variable-c cosmology can be tested against CMB data, large-scale structure, and supernovae. If validated, it reshapes our understanding of cosmic history and the fate of the universe.

Cosmology
Observational

{🧢

Philosophical Implications

If Weber is right, the universe is fundamentally deterministic and causal at all scales. This reshapes how we think about quantum randomness, free will, and the nature of physical reality.

Philosophy
Interpretation

Resources & Legacy

Primary sources, modern papers, and key contributors shaping Weber theory in the 21st century.

Historical Timeline & Key Contributors

1846
Wilhelm Weber
German physicist formulates the first velocity-dependent force law unifying electricity and gravity.

1861–1870
James Clerk Maxwell
Formalises electromagnetism but is aware of Weber’s theory; debates its validity in correspondence.

1905
Albert Einstein
Special relativity with constant c becomes the standard. Weber’s theory is overshadowed but not refuted.

1950s–1970s
Pierre Duhem, André Assis
Historians and theorists revive interest in Weber. Assis systematically reconstructs Weber theory in modern language.

1980s–2000s
Paul Graneau, Peter Graneau
Experimental evidence and re-examination of railgun experiments suggesting action-at-a-distance effects.

2020s+
Modern Revisit
Dark matter and dark energy puzzles prompt renewed theoretical interest in Weber and variable-c cosmologies.

Explore the Universe Through Weber’s Lens

Join researchers, theorists, and curious minds in investigating a unified framework that challenges convention and opens new frontiers in physics.

Access Research Library

Explore the unified field theory combining Wilhelm Weber’s electrodynamics, variable speed of light, and quantum mechanics.

Webers Universe — Learn More — © 2024 Intellectual Commons. Made with care.