The Schwarzschild radius is given as
with G the gravitational constant approx. 6.674 10^-11 m^3kg^-1 s^-2 and c the speed of light 299,792,458 m/s.
Using those units the resulting radius will be in meters.
G = 6674 * 10**-11 c = 299792458 def schwarzschild(M, G=G, c=c): return 2*G*M / c**2
I
weigh about 75kg and am about 1.70m tall. When I put my mass into the
equation I'll get my Schwarzschild radius which I can compare to my
current height.
mymass = 75
myheight = 1.7
myradius = schwarzschild(mymass)
print("My Schwarzschild radius: ", myradius, "m")
print("Ratio compared to my height: ", myheight/myradius)
In
order to get a better understand of what that means we look at the size
of a hydrogen atom. There are two sizes that we can look at, the
covelant radius, which measures the size of the atom that forms the
covalent bond, and the van der waal radius, which measures the size of
the atom with regards to how close it gets to other atoms. Both are
measured in picometres (10^-12m)
picom = 10**-12
covalent = 31 * picom
van_der_waal = 1.2 * picom
print("Ratio of my rs to a hydrogen covelant radius:", (covalent/myradius))
print("Ratio of my rs to a hydrogen van der waal radius:", van_der_waal/myradius)
Keine Kommentare:
Kommentar veröffentlichen