''' Hi there
I trying to find a simple function that I can use to estimate the round trip communication time of the Voyager 1 Space craft (1, 3 10 100 or 300 years from now).
This is the information that I have so far, it should be a simple function and I understand the math. Just need the language.
Thanks
import time
def communication_time(days):
distance_start = 0
distance_now = 22944706739.083 #in km
velocity_voy_1 = 16.9995 # in km/s
speed_of_light = 299792 # km/s
distance = distance_start + velocity_voy_1 * time_since_start
round_trip_communication_time = (2 * distance_now/speed_of_light)
return 0
print(abs(communication_time(0) - 146143.0) < 10)
print(abs(communication_time(55) - 146682.0) < 10)
print(abs(communication_time(365.25 * 6) - 167616.0) < 10)
I think this is what you are after:
Output: