Skip to content

Commit

Permalink
Add r_distance
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardoughton committed Feb 29, 2020
1 parent e9fa145 commit 87531fa
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions scripts/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,7 @@ def write_full_results(data, environment, site_radius, frequency,
'ant_type',
'receiver_x',
'receiver_y',
'r_distance',
'path_loss_dB',
'r_model',
'received_power_dB',
Expand All @@ -401,6 +402,7 @@ def write_full_results(data, environment, site_radius, frequency,
ant_type,
row['receiver_x'],
row['receiver_y'],
row['distance'],
row['path_loss'],
row['r_model'],
row['received_power'],
Expand Down Expand Up @@ -986,7 +988,7 @@ def run_simulator(parameters, spectrum_portfolio,
if __name__ == '__main__':

PARAMETERS = {
'iterations': 100,
'iterations': 1,
'seed_value1': 1,
'seed_value2': 2,
'indoor_users_percentage': 50,
Expand Down Expand Up @@ -1086,8 +1088,8 @@ def generate_site_radii(min, max, increment):
for n in range(min, max, increment):
yield n

INCREMENT_MA = (400, 30400, 400)
INCREMENT_MI = (25, 500, 25)
INCREMENT_MA = (5000, 5500, 500) #(400, 30400, 400)
INCREMENT_MI = (300, 400, 100)

SITE_RADII = {
'macro': {
Expand Down

0 comments on commit 87531fa

Please sign in to comment.