// get the receiving power of the Signal at start-time and center frequency Signal& signal = frame->getSignal();
signalStates[frame] = EXPECT_END;
if (signal.smallerAtCenterFrequency(minPowerLevel)) { EV_INFO << "current signal smaller at center frequency" << endl; // annotate the frame, so that we won't try decoding it at its end frame->setUnderMinPowerLevel(true); // check channel busy status. a superposition of low power frames might turn channel status to busy if (cca(simTime(), nullptr) == false) { setChannelIdleStatus(false); } return signal.getReceptionEnd(); } else { EV_INFO << "current signal bigger at center frequency" << endl; // This value might be just an intermediate result (due to short circuiting) double recvPower = signal.getAtCenterFrequency(); setChannelIdleStatus(false);
if (phy11p->getRadioState() == Radio::TX) { frame->setBitError(true); frame->setWasTransmitting(true); EV_INFO << "AirFrame: " << frame->getId() << " (" << recvPower << ") received, while already sending. Setting BitErrors to true" << std::endl; } else { EV_INFO << "phy11p->getRadioState() != Radio::TX" << endl; if (!currentSignal.first) { // NIC is not yet synced to any frame, so lock and try to decode this frame currentSignal.first = frame; EV_INFO << "AirFrame: " << frame->getId() << " with (" << recvPower << " > " << minPowerLevel << ") -> Trying to receive AirFrame." << std::endl; if (notifyRxStart) { phy->sendControlMsgToMac(newcMessage("RxStartStatus", MacToPhyInterface::PHY_RX_START)); } } else { // NIC is currently trying to decode another frame. this frame will be simply treated as interference EV_INFO << "AirFrame: " << frame->getId() << " with (" << recvPower << " > " << minPowerLevel << ") -> Already synced to another AirFrame. Treating AirFrame as interference." << std::endl; }
// channel turned busy // measure communication density myBusyTime += signal.getDuration().dbl(); } return signal.getReceptionEnd(); } }
在其中有一个很重要的判断 signal.smallerAtCenterFrequency(minPowerLevel) 调用了 Analogue Model 来模拟实际环境。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
boolSignal::smallerAtCenterFrequency(double threshold) { EV_INFO << "signal power is " << values[centerFrequencyIndex] << " threshold is " << threshold << endl; if (values[centerFrequencyIndex] < threshold) returntrue;