Created
December 6, 2025 05:33
-
-
Save BrianMartell/8a1aca3a491537a30a8652474480f85e to your computer and use it in GitHub Desktop.
PUH- BrianMartell PUH_v6_Time_Emergent_Sim.py- update new Py code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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