This commit is contained in:
沈瑗杰 2021-01-01 13:51:09 +08:00
parent 3b67c1c2fa
commit 03abb4241c

View File

@ -77,5 +77,9 @@ def G_C(M, m, R, G): # stand for gravity calculation
"""
g = libs.config.basic_number()
A = S_N_M(M, m, G)
B = S_N_D(A, S_N_M(R, R))
return B
g = S_N_D(A, S_N_M(R, R))
return g
def distance(A, B):
pass