Changes between Version 4 and Version 5 of Tutorials/Wireless/MobilePAAMOFDM


Ignore:
Timestamp:
Nov 15, 2024, 5:12:04 PM (6 days ago)
Author:
khermstein
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/Wireless/MobilePAAMOFDM

    v4 v5  
    1919=== Resources Required ===
    2020
    21 Two mobile PAAMs.
     21Two mobile PAAMs. This tutorial uses {{{mob4-1}}} and {{{mob4-2}}}, but either may be swapped for {{{mob4-3}}} if necessary.
    2222
    2323=== Tutorial Setup ===
     
    5555
    5656=== Experiment Execution ===
     57==== Configure the mobile PAAM ====
     58COSMOS uses a RESTful [https://wiki.cosmos-lab.org/wiki/Resources/Services/ArrayMgmt service for PAAM management]. A local version of this service is running on each mobile PAAM to allow for configuration outside of SB1. There are two paradigms for array management:
     59 * Dynamic array management - The user connects to the antenna using {{{connect}}} command, dynamically steers the antenna during the experiment using {{{steer}}} command, and disconnects once the experiment is done.
     60 * Static array management - The user can connect, steer, and disconnect in a single command, {{{configure}}}
     61We will use mob4-1 as our transmitter. We will enable it to use all ICs and 16 elements with V-polarization. Initially, it will be steered towards broadside (0,0).
     62{{{#!shell
     63root@mob4-1:~# curl "http://rfdev-mob:3000/array_mgmt/enable?dev_name=Local&ics=all&num_elements=16&txrx=tx&pol=v&theta=0&phi=0"
     64}}}
     65Now we configure mob4-2 as the receiver with the same parameters.
     66{{{#!shell
     67root@mob4-2:~# curl "http://rfdev-mob:3000/array_mgmt/enable?dev_name=Local&ics=all&num_elements=16&txrx=rx&pol=v&theta=0&phi=0"
     68}}}
     69
     70==== Run the experiment ====
     71Open GNURadio companion on the sessions initialized with {{{-Y}}}
     72{{{#!shell
     73root@mob4-1:~# gnuradio-companion
     74}}}
     75{{{#!shell
     76root@mob4-2:~# gnuradio-companion
     77}}}
     78
     79On mob4-1, open the TX_OFDM.grc file. On mob4-2, open the RX_OFDM.grc file.
     80
     81==== Observe and improve the results ====
     82
     83