Changes between Version 3 and Version 4 of 802.11/wlan_exp/sample_data


Ignore:
Timestamp:
Apr 12, 2014, 10:47:42 PM (10 years ago)
Author:
murphpo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • 802.11/wlan_exp/sample_data

    v3 v4  
    99== Automatic Download ==
    1010
     11The wlan_exp package can download the latest sample data files automatically. The auto download method requires the Python [http://docs.python-requests.org/en/latest/ requests] package.
     12To download the sample data automatically open a Python interpreter and run:
    1113{{{#!python
    1214import wlan_exp.log.util_sample_data as sample_data_util
     
    1416}}}
    1517
     18The download will proceed automatically. The script will show a progress bar for each file as it downloads.
     19
     20If successful the output will be similar to:
     21{{{
     22Downloading 802.11 Reference Design sample data to local directory:
     23 /work/Mango_Mango_802.11_RefDes_v0.9_beta/python/wlan_exp/log/sample_data
     24
     25Downloading raw_log_dual_flow_ap.hdf5 (19.30 MB)
     26[======================================================================]
     27
     28Downloading raw_log_dual_flow_sta.hdf5 (31.34 MB)
     29[======================================================================]
     30
     31Downloading raw_log_one_flow.hdf5 ( 9.11 MB)
     32[======================================================================]
     33
     34Downloading np_rx_ofdm_entries.hdf5 ( 5.87 MB)
     35[======================================================================]
     36}}}
     37
     38If you do not have the {{{requests}}} package installed you will see this error:
     39{{{
     40ERROR: auto download requires the Python requests package!
     41
     42 Please download sample data files manually from:
     43   http://warpproject.org/w/802.11/wlan_exp/
     44
     45 Sample data files should be saved in local folder:
     46   /work/Mango_Mango_802.11_RefDes_v0.9_beta/python/wlan_exp/log/sample_data
     47}}}
     48
     49To resolve this error, either install {{{requests}}} or proceed with the manual download below.
     50
    1651== Manual Download ==
     52Use the links below to download the sample data files. These files should be saved to the {{{wlan_exp/log/sample_data}}} folder in your local wlan_exp package.
     53
     54To verify the correct folder for saving the sample_data files, open a Python interpreter and run:
     55{{{#!python
     56import wlan_exp.log.util_sample_data as sample_data_util
     57sample_data_util.get_sample_data_dir()
     58}}}
     59
     60This method will print the full path of the correct {{{sample_data}}} directory.
     61
     62== Data Files ==
     63The files below are sorted by release of the 802.11 Reference Design. The log file format may change between releases of the design. These data files should only be used with the matching version of the wlan_exp package.
    1764
    1865=== 0.9-beta Release ===
    1966
    20 ||=  File  =||=  Size  =||=  URL  =||
    21 || raw_log_dual_flow_ap.hdf5 || 19.3 MB || [http://warpproject.org/dl/refdes/802.11/sample_data/0.9/raw_log_dual_flow_ap.hdf5 Download] ||
    22 || raw_log_dual_flow_sta.hdf5 || 31.3 MB || [http://warpproject.org/dl/refdes/802.11/sample_data/0.9/raw_log_dual_flow_sta.hdf5 Download] ||
    23 || raw_log_one_flow.hdf5 || 9.1 MB || [http://warpproject.org/dl/refdes/802.11/sample_data/0.9/raw_log_one_flow.hdf5 Download] ||
    24 || np_rx_ofdm_entries.hdf5 || 5.9 MB || [http://warpproject.org/dl/refdes/802.11/sample_data/0.9/np_rx_ofdm_entries.hdf5 Download] ||
     67||=  File  =||=  Size  =||=  Link  =||=  Description  =||
     68|| raw_log_dual_flow_ap.hdf5 || 19.3 MB || [http://warpproject.org/dl/refdes/802.11/sample_data/0.9/raw_log_dual_flow_ap.hdf5 Download] || "Dual Flow" (details below) ||
     69|| raw_log_dual_flow_sta.hdf5 || 31.3 MB || [http://warpproject.org/dl/refdes/802.11/sample_data/0.9/raw_log_dual_flow_sta.hdf5 Download] || "Dual Flow" (details below) ||
     70|| raw_log_one_flow.hdf5 || 9.1 MB || [http://warpproject.org/dl/refdes/802.11/sample_data/0.9/raw_log_one_flow.hdf5 Download] || "One Flow" (details below) ||
     71|| np_rx_ofdm_entries.hdf5 || 5.9 MB || [http://warpproject.org/dl/refdes/802.11/sample_data/0.9/np_rx_ofdm_entries.hdf5 Download] || "One Flow" (details below) ||
     72
     73'''Dual Flow Experiment''':
     74Please refer to the [wiki:../examples/txrx_log txrx_log examples] for analysis scripts that use these sample data files.
     75
     76This experiment uses two WARP v3 nodes, one as AP, one as STA. Both nodes are controlled from a Python script. The AP node uses a local traffic generator to send fully-backlogged traffic to the STA for the full duration of the experiment. The STA also uses a fully-backlogged LTG, but only for the middle 30 seconds. This scenario allows measurement of the unidirectional throughput (AP->STA with STA is not transmitting) as well as joint throughput when both nodes are transmitting.
     77
     78Experiment Summary:
     79 * 2 WARP v3 nodes
     80  * One AP (MAC address {{{40:D8:55:04:21:3A}}})
     81  * One STA (MAC address {{{40:D8:55:04:20:BC}}}
     82 * RF A of both nodes connected by coaxial cable with 60dB series attenuation
     83 * Experiment duration ~90 seconds
     84 * Fully backlogged AP -> STA traffic for 90 seconds
     85 * Fully backlogged STA -> AP traffic for middle 30 seconds
     86
     87'''One Flow Experiment''':