Skip to content

Commit bbd7233

Browse files
''
1 parent 90620ba commit bbd7233

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • samples/duration_constellation/network_performance

samples/duration_constellation/network_performance/delay.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ def delay():
5050

5151
delay = DELAY.delay(constellation.constellation_name, Istanbul, Nairobi, dT, constellation.shells[0])
5252
delay = np.array(delay)
53-
output_file = os.path.join(path, '/Istanbul_Nairobi.txt')
53+
output_file = os.path.join(path, 'Istanbul_Nairobi.txt')
5454
np.savetxt(output_file, delay, fmt='%.3f')
5555
print("The average delay time from ", Istanbul.user_name, " to ", Nairobi.user_name, " is ", np.mean(delay),
5656
" s")
5757

5858
delay = DELAY.delay(constellation.constellation_name, Mumbai, Wellington, dT, constellation.shells[0])
5959
delay = np.array(delay)
60-
output_file = os.path.join(path, '/Mumbai_Wellington.txt')
60+
output_file = os.path.join(path, 'Mumbai_Wellington.txt')
6161
np.savetxt(output_file, delay, fmt='%.3f')
6262
print("The average delay time from ", Mumbai.user_name, " to ", Wellington.user_name, " is ", np.mean(delay),
6363
" s")

0 commit comments

Comments
 (0)