(self)
| 131 | print("Link initialization done.") |
| 132 | |
| 133 | def run_routing_deamon(self): |
| 134 | routing_thread = sn_Routing_Init_Thread( |
| 135 | self.remote_ssh, self.remote_ftp, self.orbit_number, |
| 136 | self.sat_number, self.constellation_size, self.fac_num, |
| 137 | self.file_path, self.sat_bandwidth, self.sat_ground_bandwidth, |
| 138 | self.sat_loss, self.sat_ground_loss) |
| 139 | routing_thread.start() |
| 140 | routing_thread.join() |
| 141 | print("Bird routing in all containers are running.") |
| 142 | |
| 143 | def get_distance(self, sat1_index, sat2_index, time_index): |
| 144 | delaypath = self.configuration_file_path + "/" + self.file_path + '/delay/' + str( |
no test coverage detected