Changes between Version 1 and Version 2 of Tutorials/Wireless/mmwaveSB1


Ignore:
Timestamp:
Jan 6, 2020, 7:54:31 PM (4 years ago)
Author:
prasanthi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/Wireless/mmwaveSB1

    v1 v2  
    1 == Using mmWave equipment on SB1 COSMOS ==
     1== Using mmWave equipment on COSMOS SandBox1 (In Progress) ==
     2
     3=== Description ===
     4 A pair of Sivers EVK06002, evaluation kits for Sivers IMA IEEE 802.11ad Beam steering transceiver RFIC, are deployed on COSMOS SandBox1.
     5
     6Current deployment of COSMOS SB1 consists of 4 servers, 2 USRP N310s, 2 USRP 2974s and mmWave equipment, as shown in the following figure.  Nodes, srv1-lg1 and srv2-lg1 are directly connected (over USB, for JTAG programming) to USRP X310s sdr2-md2 and sdr2-md3 respectively. srv1-lg1 and srv2-lg1 also control the Sivers evaluation kits over USB.
     7Channel sounding is the process of evaluating the characteristics of a radio environment. Evaluating the power delay profile (PDP) of a radio channel helps in developing statistical models for channel simulation.
     8
     9
     10This tutorial demonstrates how to use the RFNoC channel sounder design for obtaining the PDP of channels up to 100MHz wide. An FPGA correlator module computes real time correlation power, and an averaging module, averages contiguous sets of PDP over time, and sends the result to host CPU. This design is compatible with 3rd generation Ettus USRP devices. This tutorial uses USRP X310s on ORBIT grid.
     11
     12=== Prerequisites ===
     13In order to access the test bed, create a reservation and have it approved by the reservation service. Access to the resources is granted after the reservation is confirmed. Please follow the process shown on [wiki:cosmos_workflow the COSMOS work flow page] to get started.
     14
     15=== Resources required ===
     162 host nodes and 2 USRP X310s are required for this experiment. USRP X310 devices in ORBIT grid are located in the massive MIMO mini-racks [https://www.orbit-lab.org/wiki/Hardware/bDomains/aGrid#Massive-MIMOmini-racks].
     17
     18=== Execution ===
     19
     20==== Prepare the host nodes ====
     21
     22 Determine the set of nodes that you're using. If you have a topology assigned, it will be entered in the form "system:topo:group-red" for example.
     23* Load channel-sounder.ndz on a pair of nodes (group assigned to you) 
     24  {{{
     25  prasanthi@console.grid:~$ omf load -i channel-sounder.ndz -t system:topo:group-red
     26  }}}
     27
     28* Turn the nodes on
     29  {{{
     30  prasanthi@console.grid:~$ omf tell -a on -t system:topo:group-red
     31  }}}
     32
     33* Check the status
     34  {{{
     35  prasanthi@console.grid:~$ omf stat -t system:topo:group-red
     36  }}}
     37  {{{
     38  -----------------------------------------------
     39  Node: node19-1.grid.orbit-lab.org       State: POWERON
     40  Node: node20-1.grid.orbit-lab.org       State: POWERON
     41  -----------------------------------------------
     42  }}}
     43
     44* ssh to the nodes
     45  {{{
     46  prasanthi@console.grid:~$ ssh root@node19-1
     47  }}}
     48
     49==== Prepare the USRPs ====
     50* If you are using a topology, USRPs are assigned by default. For example, group-red uses 23-16 as TX and 24-16 as RX.
     51
     52  ||='''Group color'''=||='''TX USRP''' =||='''RX USRP''' =||
     53  ||red     || 10.10.23.16 || 10.10.24.16 ||
     54  || yellow || 10.10.23.1  || 10.10.24.18 ||
     55  || green  || 10.10.23.14 || 10.10.24.14 ||
     56  || purple || 10.10.23.15 || 10.10.24.15 ||
     57  || blue   || 10.10.23.12 || 10.10.24.13 ||
     58  || black  || 10.10.23.11 || 10.10.24.11 ||
     59  || cyan   || 10.10.23.13 || 10.10.24.12 ||
     60  || white  || 10.10.23.18 || 10.10.24.17 ||
     61  || orange || 10.10.23.2  || 10.10.23.3  ||
     62  || pink   || 10.10.23.4  || 10.10.23.5  ||
     63  || tan    || 10.10.23.6  || 10.10.23.7  ||
     64  || gray   || 10.10.24.3  || local X310(PCIe) ||
     65  || brown  || 10.10.24.4  || local X310(PCIe) ||
     66  || silver || 10.10.24.5  || local X310(PCIe) ||
     67  || gold   || 10.10.24.6  || local X310(PCIe) ||
     68 
     69
     70 
     71
     72
     73
     74* Check if USRPs have the modules required for the experiment by running uhd_usrp_probe on each on of them. For USRP over the network, run
     75{{{
     76root@node19-1:~# uhd_usrp_probe --args="addr=10.10.23.16"
     77}}}
     78  For local USRP (PCIe), run
     79{{{
     80root@node3-20:~# uhd_usrp_probe --args="resource=RIO0"
     81}}}
     82{{{
     83|   |     _____________________________________________________
     84|   |    /
     85|   |   |       RFNoC blocks on this device:
     86|   |   |
     87|   |   |   * DmaFIFO_0
     88|   |   |   * Radio_0
     89|   |   |   * Radio_1
     90|   |   |   * DDC_0
     91|   |   |   * DUC_0
     92|   |   |   * Corrmag63avg8k_0
     93|   |   |   * Spreader_0
     94|   |   |   * SpecSense2k_0
     95|   |   |   * FIFO_0
     96|   |   |   * FIFO_1
     97}}}
     98  If you see the above at the end of uhd_usrp_probe output, the USRPs are ready. Spreader_0 is used to spread the transmit signal, and Corrmag63avg8k_0 is the correlator on the receive side.
     99
     100==== Run the experiment
     101* Start transmit application on the TX node. If you were assigned a group, the command below will start the application on the assigned TX USRP, with a bandwidth of 100MHz.
     102{{{
     103root@node19-1:~# /root/uhd/host/build/examples/channel_sounding_tx --group red
     104}}}
     105 
     106* Start receive application on the RX node. If you were assigned a group, the command below will start the application on the assigned RX USRP
     107{{{
     108  root@node20-1:~# ./uhd/host/build/examples/channel_sounding_rx --group red
     109}}}
     110 
     111* Download [https://wiki.cosmos-lab.org/raw-attachment/wiki/tutorials/wideband/channel_sounding_display.html channel_sounding_display.html] (also attached at the bottom of this tutorial) and open it in your browser. Select your group from the drop down menu and click Connect. Then, click the start button, and you should see PDP of the channel.
     112
     113    || [[Image(channel_sounding_display_orange.jpg]] ||