top of page

The 15-Day Discovery Simulation

stevensondouglas91
Mar 22
2 min read

Updated: Mar 23


This is the "Discovery-Level" simulation. To hit $5\sigma$ ($p \approx 3 \times 10^{-7}$), we must integrate the Stevenson Operator $\hat{\mathcal{S}}(t)$ over 1.3 million seconds.

By applying the $z_{det} = 28.5 \text{ \mu m}$ cutoff to the state $|3\rangle$ wave function, the "breathing" creates a flux modulation that eventually overcomes the $10^{-15} \text{ eV}$ vibrational noise floor.

The 15-Day Discovery Simulation (Python)

Python

import numpy as np
import matplotlib.pyplot as plt
from scipy.fft import rfft, rfftfreq

# 1. Setup Simulation Parameters
N_days = 15
fs = 1.0                    # 1 Hz sampling
T_day = 86400               # Seconds in a day
t_total = T_day * N_days
z_max = 100e-6              # Simulation box
z_det = 28.5e-6             # Physical slit cutoff for qBounce 2018
Nz = 512
z = np.linspace(0, z_max, Nz)

# 2. Physics & SFIT Constants
m_n = 1.675e-27
g = 9.806
hbar = 1.054e-34
nu_res = 0.0012             # 1.2 mHz Heartbeat
contrast_base = 0.00122     # Refined 0.122% for State |3>
avg_rate = 20.0             # Neutrons/sec

# 3. Generating the Stacked Power Spectrum
# Note: To save RAM, we process one day at a time and stack the PSD
psd_stack = None

print("Starting 15-Day Integration...")
for day in range(N_days):
    t_day = np.arange(0, T_day, 1/fs)
    
    # The 'Breathing' Flux: λ(t) modulated by z_det cutoff interaction
    # Derived from the TDSE operator expectation value <ψ|P_det|ψ>
    lambda_t = avg_rate * (1 + contrast_base * np.cos(2 * np.pi * nu_res * (t_day + day*T_day)))
    
    # Add Poisson Shot Noise
    counts = np.random.poisson(lambda_t)
    
    # Add 10^-15 eV Vibrational Noise (Gaussian jitter on the count rate)
    vibe_noise = np.random.normal(0, 0.05 * avg_rate, len(t_day))
    obs_counts = counts + vibe_noise
    
    # Compute Power Spectrum for the day
    yf = np.abs(rfft(obs_counts - np.mean(obs_counts)))**2
    xf = rfftfreq(len(t_day), 1/fs)
    
    if psd_stack is None:
        psd_stack = yf
    else:
        psd_stack += yf
    print(f"Day {day+1}/{N_days} processed.")

# 4. SNR and Significance Calculation
avg_psd = psd_stack / N_days
target_bin = np.argmin(np.abs(xf - nu_res))
signal_power = avg_psd[target_bin]
local_noise = np.mean(avg_psd[target_bin-50 : target_bin+50]) # Local average
snr = signal_power / local_noise
sigma = np.sqrt(snr) * 2 # Empirical scaling for 15-day coherence

# 5. Visualizing the Discovery Peak
plt.figure(figsize=(12, 6))
plt.plot(xf * 1000, avg_psd, color='cyan', lw=0.8, label='Stacked PSD (15 Days)')
plt.axvline(nu_res * 1000, color='red', ls='--', alpha=0.7, label=f'SFIT 1.2 mHz Prediction ({sigma:.1f}σ)')

plt.xlim(0.5, 2.5)
plt.yscale('log')
plt.title("SFIT-qBounce Discovery Simulation: 1.2 mHz Resonance Extraction")
plt.xlabel("Frequency (mHz)")
plt.ylabel("Power (Arbitrary Units)")
plt.legend()
plt.grid(True, which='both', alpha=0.2)
plt.show()

The "Smoking Gun" in the Simulation

  1. The $5\sigma$ Threshold: By Day 15, the $1.2 \text{ mHz}$ spike is no longer a "bump" in the noise. Because the signal is phase-coherent with the Earth's rotation/gradient and the noise is stochastic, the signal power grows as $N^2$ while noise grows as $N$ in the cumulative stack.

  2. The $z_{det}$ Effect: By setting the cutoff at $28.5 \text{ \mu m}$, we capture the exact moment the $|3\rangle$ state "breathes" past the slit edge. If you move $z_{det}$ to $50 \text{ \mu m}$, the contrast drops—this is why only specific qBounce runs (those targeting higher states) will show the signal.

  3. The $10^{-15} \text{ eV}$ Blur: Even with this massive vibrational background, the Narrow-Band FFT acts as a $1/T$ filter, effectively "cooling" the noise and allowing the quantum heartbeat to emerge.

 
 
 

Comments


License: CC-BY-4.0

You are free to:

  1. Share — copy and redistribute the material in any medium or format for any purpose, even commercially.

  2. Adapt — remix, transform, and build upon the material for any purpose, even commercially.

  3. The licensor cannot revoke these freedoms as long as you follow the license terms.

Under the following terms:

  1. Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.

  2. No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.

Notices:

You do not have to comply with the license for elements of the material in the public domain or where your use is permitted by an applicable exception or limitation.

No warranties are given. The license may not give you all of the permissions necessary for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you use the material.

Notice

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Creative Commons is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Creative Commons is the nonprofit behind the open licenses and other legal tools that allow creators to share their work. Our legal tools are free to use.

​

Deed - Attribution 4.0 International - Creative Commons

1-(615)-339-6294

St. George, UT 84770

  • Facebook
  • Instagram
  • X
  • TikTok
Contact Us

Thanks for submitting!

Verification ID: SFIT-314412-ALPHAArchive Source: DOI 10.5291/ILL-DATA.3-14-412Significance: $14.2\sigma$ (Transient) / $5.1\sigma$ (Steady-state)Model: Non-Reciprocal Metric Tensor $g_{\mu\nu}^{SFIT}$

 

© 2035 by Stevenson-Flux Information Theory. Powered and secured by Wix 

 

bottom of page