Function to calculate the round trip communication time of Voyager 1

120 Views Asked by At

''' 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)  
1

There are 1 best solutions below

3
On

I think this is what you are after:

import time

distance_now = 22944706739.083 #in km
velocity_voy_1 = 16.9995 # in km/s
speed_of_light = 299792 # km/s

def where_will_voyager_be( days ):
    return distance_now + velocity_voy_1 * 86400 * days

def communication_time( distance ):
    return 2 * distance / speed_of_light

def comm_time_in_days( days ):
    dist = where_will_voyager_be( days )
    return communication_time( dist )

# How long is comm time now?

print( "Now:", comm_time_in_days(0), "s" )
print( "Next month:", comm_time_in_days(30), "s" )
print( "Next year:", comm_time_in_days(365.25), "s" )
print( "5 years:", comm_time_in_days(5 * 365.25), "s" )
print( "10 years:", comm_time_in_days(10 * 365.25), "s" )
print( "30 years:", comm_time_in_days(30 * 365.25), "s" )

Output:

Now: 153070.84071011236 s
Next month: 153364.79587902947 s
Next year: 156649.74489167825 s
5 years: 170965.3616179418 s
10 years: 188859.88252577122 s
30 years: 260437.96615708893 s