Changes between Version 17 and Version 18 of Tutorials/Wireless/mmwave Paam Link Rate


Ignore:
Timestamp:
Mar 25, 2024, 9:16:14 PM (8 months ago)
Author:
zhenzhou77
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/Wireless/mmwave Paam Link Rate

    v17 v18  
    227227=== Experiment Execution ===
    228228
     229==== Download code from GitHub ====
     230
     231First, create a new folder {{{workarea}}} and enter into this folder by
     232{{{#!shell
     233root@srv1-lg1:~# mkdir workarea
     234root@srv1-lg1:~# cd workarea
     235}}}
     236
     237Download codes from GitHub repository and enter into the repository folder by
     238{{{#!shell
     239root@srv1-lg1:~/workarea# git clone https://github.com/functions-lab/MAMBAS-MobiCom2024
     240root@srv1-lg1:~/workarea# cd MAMBAS-MobiCom2024/
     241}}}
     242
    229243==== Configure USRP parameters ====
    230244In MATLAB, open {{{GetParam.m}}}, and configure the parameters below:
     
    236250param.subdevTx = "B:1";
    237251param.deviceTx = "10.117.2.1";
    238 param.gainTx = 60;
     252param.gainTx = 30;
    239253   
    240254param.deviceRx = "10.117.3.1";
     
    247261{{{param.deviceTx}}} and {{{param.deviceRx}}}: the IP address of the TX/RX USRP, which is {{{10.117.2.1}}} and {{{10.117.3.1}}}.
    248262
    249 {{{param.subdevTx}}} and {{{param.subdevRX}}}: the subdevice settings of the TX/RX USRP. The connection on the sb2 requires to set both parameters as {{{B:0}}}.
    250 
    251 {{{param.gainTx}}} and {{{param.gainRx}}}: the TX/RX gain of the USRPs, whose range varies over different USRP types, which can be found by running {{{uhd_usrp_probe}}} command in the terminal. In sb2, the recommended value for {{{param.gainTx}}} is {{{60}}}, for {{{param.gainRx}}} is {{{40}}}.
     263{{{param.subdevTx}}} and {{{param.subdevRX}}}: the subdevice settings of the TX/RX USRP. The connection on the sb2 requires to set both parameters as {{{B:1}}} to use the port {{{RF3}}}.
     264
     265{{{param.gainTx}}} and {{{param.gainRx}}}: the TX/RX gain of the USRPs, whose range varies over different USRP types, which can be found by running {{{uhd_usrp_probe}}} command in the terminal. In sb2, the recommended value for {{{param.gainTx}}} is {{{30}}}, for {{{param.gainRx}}} is {{{40}}}.
    252266
    253267==== Conduct the transmission ====
     
    255269In MATLAB, open {{{main.m}}}, and directly run this script.
    256270
    257 The displayed information include:
     271The displayed information includes:
    258272
    259273{{{CFO}}}: carrier frequency offset
     
    267281{{{BER}}}: bit error rate
    268282
    269 {{{CSI}}}: the amplitudes and the phases of the channel state information over all the subcarriers
    270 
    271283{{{Constel.png}}}: the saved constellation plot.
    272284