Skip to content

Instantly share code, notes, and snippets.

@BrianMartell
Created December 6, 2025 05:33
Show Gist options
  • Select an option

  • Save BrianMartell/8a1aca3a491537a30a8652474480f85e to your computer and use it in GitHub Desktop.

Select an option

Save BrianMartell/8a1aca3a491537a30a8652474480f85e to your computer and use it in GitHub Desktop.
PUH- BrianMartell PUH_v6_Time_Emergent_Sim.py- update new Py code
import numpy as np
import matplotlib.pyplot as plt
v_over_c = np.linspace(0, 0.999999, 500)
dtau_dt = np.sqrt(1 - v_over_c**2)
plt.figure(figsize=(8,5))
plt.semilogy(v_over_c, dtau_dt, 'b-')
plt.xlabel('v/c')
plt.ylabel('Proper time rate $d\\tau/dt$')
plt.title('PUH v6: Time Emerges for Folded Excitations')
plt.grid(True)
plt.savefig('puh_time_emergent.png', dpi=300)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment