Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(188)

Issue 108047: Propagation and loss model enhanced

Can't Edit
Can't Publish+Mail
Start Review
Created:
16 years, 10 months ago by faker.moatamri
Modified:
10 years, 9 months ago
Reviewers:
CC:
amine.ismail_sophia.inria.fr
Visibility:
Public.

Patch Set 1 #

Total comments: 9
Unified diffs Side-by-side diffs Delta from patch set Stats (+2006 lines, -653 lines) Patch
M examples/simple-wimax.cc View 2 chunks +138 lines, -120 lines 2 comments Download
M examples/wscript View 1 chunk +107 lines, -107 lines 0 comments Download
A scratch/wimax-ofdm-simulation.cc View 1 chunk +275 lines, -0 lines 1 comment Download
M src/applications/UdpClientServer/udpServer.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M src/devices/wimax/IPCS_BS_Packet_classifier.cc View 2 chunks +124 lines, -121 lines 1 comment Download
M src/devices/wimax/IPCS_Bind_parameter_manager.h View 1 chunk +1 line, -1 line 0 comments Download
M src/devices/wimax/IPCS_SS_Packet_classifier.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M src/devices/wimax/bs-link-manager.cc View 2 chunks +4 lines, -5 lines 0 comments Download
M src/devices/wimax/connection-identifier-factory.cc View 1 chunk +3 lines, -1 line 0 comments Download
M src/devices/wimax/cost231-propagation-model.h View 2 chunks +6 lines, -0 lines 0 comments Download
M src/devices/wimax/cost231-propagation-model.cc View 4 chunks +29 lines, -11 lines 0 comments Download
M src/devices/wimax/ofdm-wimax-phy.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/devices/wimax/qos-parameter-set.h View 1 chunk +1 line, -0 lines 0 comments Download
M src/devices/wimax/simpleOfdmWimaxPhy.h View 5 chunks +26 lines, -3 lines 0 comments Download
M src/devices/wimax/simpleOfdmWimaxPhy.cc View 12 chunks +93 lines, -18 lines 0 comments Download
A src/devices/wimax/snr-to-block-error-rate-manager.h View 1 chunk +61 lines, -0 lines 1 comment Download
A src/devices/wimax/snr-to-block-error-rate-manager.cc View 1 chunk +232 lines, -0 lines 3 comments Download
A src/devices/wimax/snr-to-block-error-rate-record.h View 1 chunk +69 lines, -0 lines 0 comments Download
A src/devices/wimax/snr-to-block-error-rate-record.cc View 1 chunk +109 lines, -0 lines 0 comments Download
M src/devices/wimax/wimax-bs-net-device.cc View 1 chunk +1 line, -1 line 0 comments Download
M src/devices/wimax/wimax-ofdm-phy/OFDMSymbolCreator80216.h View 1 chunk +8 lines, -8 lines 0 comments Download
M src/devices/wimax/wimax-ofdm-phy/OFDMSymbolCreator80216.cpp View 1 chunk +54 lines, -28 lines 0 comments Download
M src/devices/wimax/wimax-ofdm-phy/TransmissionSimulator.h View 2 chunks +3 lines, -3 lines 0 comments Download
M src/devices/wimax/wimax-ofdm-phy/TransmissionSimulator.cpp View 1 chunk +69 lines, -41 lines 0 comments Download
M src/devices/wimax/wimax-ofdm-phy/packetCreator.cpp View 4 chunks +4 lines, -4 lines 0 comments Download
M src/devices/wimax/wimax-ofdm-phy/pilotModulator80216.cpp View 1 chunk +57 lines, -48 lines 0 comments Download
M src/devices/wimax/wimax-ofdm-phy/symbolCreator80216.h View 1 chunk +7 lines, -5 lines 0 comments Download
M src/devices/wimax/wimax-ofdm-phy/symbolCreator80216.cpp View 1 chunk +278 lines, -48 lines 1 comment Download
M src/devices/wimax/wimax-ofdm-phy/testfiles/TransmissionSimulation.cpp View 2 chunks +96 lines, -55 lines 0 comments Download
M src/devices/wimax/wimax-ofdm-phy/testfiles/testTransmissionSimulator.cpp View 1 chunk +20 lines, -18 lines 0 comments Download
A src/devices/wimax/wimax-ofdm-phy/testfiles/wimax-ofdm-simulation.cc View 1 chunk +120 lines, -0 lines 0 comments Download
M src/devices/wimax/wscript View 2 chunks +6 lines, -2 lines 0 comments Download

Messages

Total messages: 1
faker.moatamri
16 years, 10 months ago (2009-08-18 08:54:35 UTC) #1
Here is a quick review of your code.

http://codereview.appspot.com/108047/diff/1/2
File examples/simple-wimax.cc (right):

http://codereview.appspot.com/108047/diff/1/2#newcode71
Line 71: BSRxTrace(std::string context, Ptr<const Packet> packet, Mac48Address
address,
please avoid white space changes in all your code.

http://codereview.appspot.com/108047/diff/1/2#newcode163
Line 163: ss1->SetModulationType(WimaxPhy::MODULATION_TYPE_QAM64_34);
why you removed the space before parentheses, it was good before

http://codereview.appspot.com/108047/diff/1/4
File scratch/wimax-ofdm-simulation.cc (right):

http://codereview.appspot.com/108047/diff/1/4#newcode45
Line 45: /*
remove all commented code

http://codereview.appspot.com/108047/diff/1/6
File src/devices/wimax/IPCS_BS_Packet_classifier.cc (right):

http://codereview.appspot.com/108047/diff/1/6#newcode69
Line 69: #if 0
if 0 is never used is it?

http://codereview.appspot.com/108047/diff/1/17
File src/devices/wimax/snr-to-block-error-rate-manager.cc (right):

http://codereview.appspot.com/108047/diff/1/17#newcode70
Line 70: case 0:
what about creating a vector m_RecordModulation[7]?

http://codereview.appspot.com/108047/diff/1/17#newcode161
Line 161: m_RecordModulation0 = 0;
creating an array would also reduce this function to two lines with a for loop

http://codereview.appspot.com/108047/diff/1/17#newcode187
Line 187: record = m_RecordModulation0;
it would be record = m_RecordModulation [modulation]

http://codereview.appspot.com/108047/diff/1/18
File src/devices/wimax/snr-to-block-error-rate-manager.h (right):

http://codereview.appspot.com/108047/diff/1/18#newcode50
Line 50: std::vector<SNRToBlockErrorRateRecord *> * m_RecordModulation0;
an array of vectors instead of 7 vectors

http://codereview.appspot.com/108047/diff/1/28
File src/devices/wimax/wimax-ofdm-phy/symbolCreator80216.cpp (right):

http://codereview.appspot.com/108047/diff/1/28#newcode103
Line 103: // std::cout << "temp(99)= " << temp(100 - 1) << std::endl;
remove all commented code
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b