close
Warning:
Can't synchronize with repository "(default)" (/common/SVN/wimax does not appear to be a Subversion repository.). Look in the Trac log for more information.
- Timestamp:
-
Apr 17, 2012, 3:22:10 PM (11 years ago)
- Author:
-
Nilanjan Paul
- Comment:
-
—
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v3
|
v4
|
|
125 | 125 | |
126 | 126 | * Now run the experiment script: |
127 | | * '''$ omf-5.2 exec mclient.rb -- --nClients 4 --packetsize 512 --bitrate 8192000''' |
| 127 | * '''$ omf-5.2 exec mclient.rb -- --nClients 4 --packetsize 512 --bitrate 1024000''' |
128 | 128 | {{{ |
129 | 129 | RUN EXPERIMENT HERE |
130 | 130 | }}} |
131 | 131 | |
132 | | This experiment generates the sqlite3 database file with the name of the file as the ExperimentID and this file is automatically copied to the current directory. |
| 132 | == A few words on post processing == |
| 133 | This experiment generates a sqlite3 database file named with the experiment id and this file is automatically copied to the current directory. The .sql file will have several tables: _experiment_metadata, _senders, otg2_udp_out, otr2_udp_in.[[BR]] |
| 134 | In particular, '''otr2_udp_in''' table contain information about the received packets from the various senders.[[BR]] |
| 135 | |
| 136 | The following will display the tables in the file:[[BR]] |
| 137 | * '''$ sqlite3 udp_n4_p512_br1024000.sq3 ".tables"''' |
| 138 | {{{ |
| 139 | TABLES |
| 140 | }}} |
| 141 | |
| 142 | The following will display the contents of the udp_otr2_in table:[[BR]] |
| 143 | * '''$ sqlite3 -header udp_n4_p512_br1024000.sq3 "select * from otr2_udp_in"''' |
| 144 | {{{ |
| 145 | TABLES |
| 146 | }}} |
| 147 | |
| 148 | For a rough calculation on bandwidth... each line in otr2_udp_in display data pertinent to a client node (identified by the IP address in column 17) with the correspond time stamps (column 4), packet received (column 14). |