美文网首页
NS-3 WiFi Module

NS-3 WiFi Module

作者: 小超超爱超超 | 来源:发表于2018-08-06 11:15 被阅读0次
WiFi Module

解释:

The DCF mechanism is also based on the use of the optional RTS/CTS (Request- To-Send and Clear-To-Send) scheme. If a node has a packet to send, it firstly transmits an RTS packet to request the channel. If the receiver is ready to receive data, it replies with a CTS packet. After the sender receives the CTS packet successfully, it transmits the actual data packet. Figure 3, shows an overview of 802.11 module architecture in the ns-3 simulator. The WifiNetDevice class holds together WifiChannel, WifiPhy, WifiMac, and WifiRemoteStationManager. If transmission is initiated by an application, the WifiNetDevice interface sends the packet to WifiMac class which handles high MAC level functions. Each WifiNetDevice is aggregated to a StationManager which stores all transmission parameters (e.g. payload data rate, RTS/CTS, fragmentation, etc.) The main classes implementing the IEEE 802.11 DCF scheme are DcfManager and DcaTxop classes. DcaTxop can handle only one packet. If other transmissions have been initiated, WifiMac pushes the packets to WifiMacQueue. DcaTxop is used to handle the request access to the channel from DcfManager. When access is granted, DcaTxop pushes the packet to MacLow for transmission. MacLow initiates data transmission. WifiPhy class is designed to support all physical layer related issues, such as channel sensing, SINR computation, interferences, etc. Its design is sufficiently generic that it is able to support the implementation of different MAC designs. YansWifiPhy is the implementation of the IEEE 802.11 physical layer. It models an additive Gaussian Noise Channel (AWGN) with cumulative noise handled by InterferenceHelper. The abstract class WifiChannel is designed to model the radio signal transmission. Yan- sWifiChannel is the only implementation modeling an IEEE 802.11 channel. 

相关文章

  • NS-3 WiFi Module

    解释: The DCF mechanism is also based on the use of the opt...

  • NS-3 简介

    ns-3模拟器是一个离散事件网络模拟器,主要用于研究和教育用途。 ns-3项目始于2006年,是一个开发ns-3的...

  • 在ns-3中如何动态调整瓶颈链路带宽

    ns-3的tutorial和安装完ns-3后,目录example下给的例子,都是预先设定好channel的band...

  • NS-TRACING

    TRACING The *ns-3 *tracing system is built on the concept...

  • Jetbot WiFi Module 调试过程

    硬件: Jetson Nano接口: USB软件: Ubuntu18.04(Kernel 4.9)WIFI: ...

  • NS3学习--dynamic-global-routing

    一、学习工具: 1. 参考资源: a.《ns-3网络模拟器基础及应用》 b. NS-3中文手册 c. NS3官网...

  • Internet Stack

    Internet stack aggregation ns-3源代码目录src / internet提供TCP /...

  • ns3使我哭泣

    小白试图装ns3 3.28版本一直报wifi module 错误 退回3.26就安装成功了 感觉是版本问题?(对的...

  • NS3-ENERGY FRAMEWORK

    为无线网写的ENERGY模型 The ns-3 Energy Framework is composed of 3...

  • ns-3资料链接整理

    示例代码 ns-3官网: rip-simple-network.cc simple-global-routing....

网友评论

      本文标题:NS-3 WiFi Module

      本文链接:https://www.haomeiwen.com/subject/mepwvftx.html