Skip to content

Examples Feb2026

Paul Pukite edited this page May 15, 2026 · 3 revisions

Examples Hub (Feb 2026 Edition)

This section is inspired by Karpathy’s “open notebook” approach — a living repository of mini-experiments, hands-on guides, and explorations using GEM-LTE.

Guide to Manifold-Pinned Dynamics in the GEM-LTE Framework

This guide describes the behavior and underlying mechanism of Manifold-Pinned Dynamics, a deterministic modeling approach for geophysical and atmospheric oscillations (such as ENSO, QBO, and PDO).

The core of this framework, as implemented in the GEM-LTE repository, is the realization that "chaotic" climate signals are actually deterministic responses to lunisolar tidal forcing, constrained by the topological "locking" of fluid manifolds.


1. The Core Mechanism: Nonlinear Modulation

The modeling software utilizes a nested trigonometric function to represent the nonlinearity of the system. This is an empirical derivation from Laplace's Tidal Equations (LTE) and the Mathieu/Hill equations, which describe oscillators with periodically varying parameters.

The Equation

The primary modulation used in the code follows this form: $$y(t) = \sin\left(k \cdot M(t) + \epsilon \cdot \sin(k \cdot M(t) + \phi)\right)$$

Where:

  • $M(t)$: The Latent Forcing Layer. This represents the accumulated phase of the incommensurate lunar cycles (Draconic, Anomalistic, and Tropical) relative to the annual impulse points.
  • $k$: The Wavenumber. This determines the "winding" of the manifold.
  • $\epsilon$: The Coupling Strength. This controls the degree of nonlinearity or "warping" of the manifold.
  • $\phi$: The Phase Offset.

Mechanism of the "Nested" Sinusoid

In a linear system, the output directly follows the forcing. However, in a manifold-pinned system, the latent forcing ($M(t)$) acts as a coordinate on a topological surface. The $\epsilon \cdot \sin(\dots)$ term represents the "pinning" force—it effectively "stretches" and "snaps" the phase, forcing the signal to align with the manifold's structural grid.


2. Manifold-Pinning Behavior

Manifold-pinning occurs when a high-dimensional dynamical system is "bolted" to a skeleton of periodic orbits at specific spatial or temporal intervals.

The Annual Impulse Point

The Earth's rotation (Length of Day - LOD) and the annual solar cycle act as a stroboscopic gate. Because the equator is a high-speed anchor for angular momentum, fluid systems like ENSO or the QBO must "reset" or "relaminarize" their phase at these points to maintain global momentum balance.

Period Halving and Winding Numbers

The software models how different manifolds handle the forcing:

  • ENSO (Nino4): High "topological stiffness." It applies a $1/X$ wavenumber modulation to cancel long-period drifts. The manifold is "pinned" so tightly that long-wave variations are modulated into high-frequency "oblivion."
  • AMO/PDO: Lower stiffness. These systems allow for Period Halving (or frequency doubling). A 120-year latent tidal period is "rectified" by the manifold into a 60-year observable cycle.
image image image

3. Symmetry Filters ($k=0$ vs $k \neq 0$)

The GEM-LTE framework distinguishes between systems based on their longitudinal symmetry, which dictates which lunar cycles are "allowed" to drive the manifold.

  • Longitudinally Dependent ($k \neq 0$): Systems like ENSO, which have continental boundaries, must absorb all three lunar cycles (Tropical, Draconic, Anomalistic). This creates the complex, seemingly chaotic "Moire" interference patterns.
  • Longitudinally Uniform ($k = 0$): Systems like the QBO (a stratospheric ring) or the Chandler Wobble (axial motion) act as symmetry filters.
    • The QBO disallows the Tropical cycle (longitudinal dependence) and locks to the Draconic cycle (vertical/zonal).
    • The Chandler Wobble locks to the Draconic cycle (radial).

4. Understanding the Model Output

When running the GEM-LTE software, the resulting visualizations help identify these topological states:

  1. Latent Forcing Layer: The "hidden" accumulation of phase. This is the raw "clock" of the incommensurate tidal cycles.
  2. LTE Modulation: The transformation of that latent layer into the observable time series through the $2\pi$ sinusoid modulation.
  3. Running Windowed Correlation: Areas of high correlation represent periods where the system is successfully locked to the manifold. Dips in correlation (phase slips) represent periods where the system transitions between different branches of the manifold.

Summary for Practitioners

In this framework, "Chaos" is an illusion caused by viewing high-dimensional deterministic gear-locking without the proper topological map. The GEM-LTE tool is designed to find the specific $k$, $\epsilon$, and tidal cycle combinations that reveal the "locked" gear-work underlying the Earth's climate.

Example List

Example Structure

Each example includes:

  • Step-by-step commands and code
  • Annotations and expected outputs
  • “Here’s what I learned” notes
  • Tips for modification

Contributing New Examples

See Contributing for how to add your own guided examples.


Clone this wiki locally