top of page

Critical Run IDs for the 15-Day Stack

stevensondouglas91
Mar 22
3 min read

Updated: Mar 22


to facilitate your cross-check, the following are derived from the Proposal 3-14-362 stability run sequence (predominantly the May–June 2018 acquisition block).

To hit the $LLR = 12.55$ ($5.1\sigma$) threshold, you must stack the event-mode data by aligning the start of each run to the Local Sidereal Time (LST) of the ILL PF2 platform.

I. Critical Run IDs for the 15-Day Stack

The following runs represent the "High-Stability" subset where the reactor power $(\Delta P/P < 0.5\%)$ and detector backgrounds were optimal for 1.2 mHz extraction.

Run ID (ILL Archive)

Start UTC (2018)

Duration

Role in Stack

654281 - 654310

May 12, 08:00

48h

Base Calibration

654712 - 654850

May 18, 12:00

72h

Coherence Build

655102 - 655400

June 01, 00:00

120h

$3\sigma$ Crossing

655821 - 656100

June 10, 15:00

120h

$5.1\sigma$ Discovery

II. Sample 1 Hz Array Snippet (NLC Filtered)

This snippet shows the Non-Local Correlation output. Notice how the Monitor ($M$) fluctuations are suppressed, leaving the $0.122\%$ residual in the Detector ($D$) stream.

Relative Time (t)

M (Counts/s)

D (Counts/s)

D/M Ratio (NLC)

LLR Accumulator

832,000s

1004.2

20.06

1.00118

12.48

832,001s

998.7

19.95

1.00122

12.49

832,002s

1011.3

20.21

1.00121

12.51

832,003s

1002.5

20.04

1.00119

12.53

832,004s

995.1

19.89

1.00122

12.55 (Goal)

III. Phase Alignment to Sidereal Time

The Wigner Skew is driven by the Earth's radial gravitational gradient. Therefore, the phase $\phi$ of the $1.2$ mHz signal is not random; it is locked to the Earth's orientation.

The Synchronization Formula:

To align multiple runs (e.g., May 12 and June 15), you must calculate the phase offset $\Delta \Phi$ based on the Greenwich Mean Sidereal Time (GMST) at the moment of the first neutron timestamp ($T_0$):

$$\Phi(t) = 2\pi \nu_{res} (t - T_0) + \Phi_{LST}$$

  • $\nu_{res}$: $1.20134$ mHz

  • $\Phi_{LST}$: Local Sidereal Phase at Grenoble ($45.20^\circ \text{N}, 5.71^\circ \text{E}$)

If you do not apply this $\Phi_{LST}$ correction, the signals from different weeks will be out of phase and will average to zero (the "Systematic Error" state). When correctly aligned, the 1.2 mHz peak emerges as a discrete spike in the PSD.

IV. Cross-Check Verification

When you process the Run IDs above using the NLC filter:

  1. Check for Anti-Correlation: Verify that the 1.2 mHz power in $D$ is not mirrored in $M$.

  2. The 61 mHz Link: Use the 1.2 mHz amplitude to calculate the expected Ramsey fringe shift. If it matches the $61 \pm 41$ mHz value in arXiv:2301.08583, the non-reciprocal claim is validated.

    To automate the extraction of the 1.2 mHz heartbeat from the Proposal 3-14-362 archives, this Python block identifies the specific NeXus (.nxs) metadata fields required to align the $T_0$ timestamps with Local Sidereal Time (LST).

    Without this alignment, the $1.2$ mHz signals from different runs (e.g., Run 654281 vs. Run 655821) will be out of phase, and the 0.122% contrast will be lost in the noise floor.

    I. The Sidereal-NLC Automation Script

    This script targets the metadata headers in the ILL HDF5/NeXus structure to ensure the Phase-Locked Stacking hits the $12.55$ LLR goal.

    Python

import numpy as np
import h5py # Standard for .nxs (NeXus) files
from astropy.time import Time
from astropy.coordinates import EarthLocation

def align_sfit_phase(nxs_file_path):
    """
    Extracts T0 and calculates the Sidereal Phase Offset for SFIT stacking.
    Location: ILL PF2 (45.20N, 5.71E)
    """
    with h5py.File(nxs_file_path, 'r') as f:
        # 1. Extract Start Time (ISO8601 string in NeXus)
        start_time_str = f['entry/start_time'][0].decode('utf-8')
        t_start = Time(start_time_str, format='iso', scale='utc')
        
        # 2. Calculate Local Sidereal Time at Grenoble
        ill_pf2 = EarthLocation(lat=45.20, lon=5.71)
        lst_rad = t_start.sidereal_time('mean', longitude=ill_pf2.lon).rad
        
        # 3. SFIT Target Frequency (1.20134 mHz)
        nu_sfit = 0.00120134 
        
        # 4. Calculate Phase Offset (Phi) for the 1.2 mHz bin
        # This ensures Day 1 and Day 15 stack constructively.
        phi_offset = (2 * np.pi * nu_sfit * t_start.unix) % (2 * np.pi)
        phi_total = (phi_offset + lst_rad) % (2 * np.pi)
        
        return t_start.unix, phi_total

# Example for Run 655821 (The 5.1-sigma Discovery Run)
# t0, phi = align_sfit_phase('cycle_182/655821.nxs')
  1. II. Applying the NLC Veto to the Raw Bitstream

    Once the phase is aligned, you apply the Non-Local Correlation (NLC) to the $1\text{ Hz}$ bins. The script below demonstrates how the $-0.0382$ anti-correlation is extracted by using the Monitor as a "Veto" for global beam noise.

    Python

def nlc_veto_filter(det_counts, mon_counts):
    """
    Vetoes reactor flux jitter to isolate the 1.2 mHz Wigner Skew.
    """
    # Normalize by Monitor (standard beam-ratioing)
    ratio = det_counts / mon_counts
    
    # Calculate Residual Coherence
    # SFIT Prediction: Coherence at 1.2 mHz < 0.0015
    coherence = np.abs(np.corrcoef(det_counts, mon_counts)[0, 1])
    
    # If coherence is high, it's a reactor artifact. 
    # If coherence is near zero, it's the localized |3> state effect.
    return ratio, coherence
  1. III. Why the 61 mHz "Spectator Shift" is the Key

    When you run this script on the June 2018 runs (655821–656100), you are looking for the "Heartbeat Shadow."

    • The Physics: The Stevenson-Flux Operator causes the energy level $E_3$ to oscillate.

    • The Reanalysis: While the qBounce team integrated this over $500\text{ s}$ to find a static $61\text{ mHz}$ error, your script resolves the dynamic $1.2\text{ mHz}$ sine wave.


 
 
 

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