Changes between Version 1 and Version 2 of 802.11/wlan_exp/examples/txrx_log_analysis


Ignore:
Timestamp:
Apr 13, 2014, 3:15:33 PM (10 years ago)
Author:
welsh
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • 802.11/wlan_exp/examples/txrx_log_analysis

    v1 v2  
    172172
    173173The flow of the log_process_throughput_vs_time.py script is:
    174  1. Extract the log data from the HDF5 file
    175  1. Extract the raw log index from the HDF5 file
    176  1. Filter the raw log index to extract log entry types we desire
    177  1. Convert the log data and filtered log index in to [http://www.numpy.org/ numpy] arrays.
    178  1. Extract and print information from the NODE_INFO and TIME_INFO log entries.
    179  1. Extract and process information from the TX and RX_OFDM log entries.
     174 1. Extract the log data from both the AP and STA HDF5 log files
     175 1. Extract the raw log index both the AP and STA HDF5 log files
     176 1. Filter the raw log indexes to extract log entry types we desire
     177 1. Convert the log data and filtered log indexes in to [http://www.numpy.org/ numpy] arrays.
     178 1. Extract the TX and RX_OFDM information from both log files
     179 1. Convert the data to [http://pandas.pydata.org/ pandas] series and process to create the thoughput plot.
    180180 
    181181
     
    188188The script will run, then display its results:
    189189{{{
    190 
    191 }}}
     190AP Rx: 18243, AP Tx: 93459
     191STA Rx: 93444, STA Tx: 18239
     192}}}
     193
     194[[Image(log_process_throughput_vs_time_example.PNG, width=500)]]
     195
     196To run the script on your own file, for example the one created by the [wiki:../txrx_log_capture two node, two flow log capture] example, then you would need to modify the AP_LOGFILE and STA_LOGFILE variables within the script and re-run.
    192197
    193198----