Changes between Version 3 and Version 4 of Hardware/bDomains/aGrid
- Timestamp:
- Aug 28, 2006, 11:14:44 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Hardware/bDomains/aGrid
v3 v4 4 4 5 5 This subsystem consists of a central arbitrary waveform generator (Agilent ESG) connected to four distribution antennas through a RF switch. 6 Using this subsystem, users can inject ''individually'' controllable (power/frequency) noise into the ORBIT grid.6 Using this subsystem, users can inject ''individually'' controllable noise into the ORBIT grid using the antennas. 7 7 8 8 == Webservice commands == … … 44 44 </service> 45 45 46 <service name="wave"> 47 <info>Configures interference injection singal type to one of the pre-recorded signals</info> 48 <args> 49 <arg name="waveform" value="waveform name"/> 50 </args> 51 </service> 46 52 47 </serviceGroup> 53 48 }}} 54 49 55 50 == Example == 56 To set AWGN on channel 36 at -30 dBm on antenna1 use 51 To set AWGN on channel 36 at -30 dBm on antenna1 use the following commands (either through a browser or '''wget''') 52 * Step 1: Select AWGN bandwidth (channel bw for 802.11a/b/g is 20 Mhz) 53 * {{{ 54 wget http://instrument1.orbit-lab.org/awgn?bandwidth=20 55 }}} 56 * Step 2: Set power level to -30 dBm 57 * {{{ 58 wget http://instrument1.orbit-lab.org/set?power=-30 59 }}} 60 * Step 3: Set channel number to 36 61 * {{{ 62 wget http://instrument1.orbit-lab.org/set?bchannel=36 63 }}} 64 * Step 4: Start RF injection 65 * {{{ 66 wget http://instrument1.orbit-lab.org/start 67 }}} 68 69 At the end of the experiment, 70 * Step 4: Stop RF injection 71 * {{{ 72 wget http://instrument1.orbit-lab.org/stop 73 }}}