Solkar
Anmeldedatum: 29.05.2009 Beiträge: 293
|
Verfasst am: 06.05.2017, 12:32 Titel: Zu W. Engelhardt: 'Free Fall in Gravitational Theory' |
|
|
Code: | #!/usr/bin/env python3
import numpy as np
import matplotlib.pyplot as plt
R_s = 1
def f(r):
g = R_s/r
return (1 - g) * np.sqrt(g)
logs_10 = np.arange(0, 12, .1)
r = np.array([10.**log10 for log10 in logs_10])
fig, axes = plt.subplots(2)
for i, ax in enumerate(axes):
ax.set_xscale('log')
ax.plot(r, f(r))
ax.invert_xaxis()
ax.set_ylabel('|dr/dt| [c]')
ax.set_xlabel('r/R_s')
if (i == 1):
ax.set_yscale('log')
fig.savefig('ssr.png')
#plt.show()
|
LINK _________________ Nein! Das ist bestimmt irgendwas mit Quanten!
Man muss das nämlich alles erstmal quantenmechanisch beurteilen, mit allem Drum und Dran... |
|