zoukankan      html  css  js  c++  java
  • NS3随手记

    George's Blog

    NS3 tutorial (1) - NS3 installation in Ubuntu 12.04

    Documentation

    API Ref

    NS3 WiFiNetDevice结构

    NS3 系列博客
    ./waf --run hello-simulator

    ./waf --run first

    ./waf --pyrun ./examples/tutorial/first.py

    https://ixs.im/Note/NS3/

    如果visualizer模块没有编译,需在http://code.nsnam.org/gjc/ns-3.9-pyviz/下载pyviz软件包,解压后放在/NS3_install/ns-allinone-3.28/ns-3.28/目录下,再需重新编译如下命令:

    $ ./waf clean

    $ ./waf –build-profile=optimized–enable-examples –enable-tests configure

    把自己修改编写的代码放进scratch文件夹里,由于wscript执行文件搜索路径包含scratch,故用户编写的程序均应当放入其中方可正常运行

    修改logging日志输出等级以及各函数调用情况以及各事件发生时间

    export 'NS_LOG=UdpEchoClientApplication=level_function|prefix_func|prefix_time:UdpEchoServerApplication=level_all|prefix_func|prefix_time'
    
    # 在myfirst.cc中添加自定义变量
    uint32_t nPackets = 2;
    cmd.AddValue("nPackets", "Number of PAckets to echo", nPackets);
    # 在命令行中查看是否存在自定义变量
    ./waf --run "myfirst --PrintHelp"
    # 在命令行中使用自定义变量
    ./waf --run "myfirst --nPackets=5"
    

    运行PyViz ./waf --run first --vis

    运行gnuplot绘制图形

    $ gnuplot
    gnuplot> plot 80211n-mimo-throughput.plt
    

    ZigBee Simulation in NS3:

    API of the IEEE 802.15.4-related models.

    NS3 for WSN

    工业级无线传感器网络源码


    NodeContainer : 节点类,负责创建计算机

    PointToPointHelper: 创建网卡和信道,把网卡连接到节点,设置信道

    NetdeviceContainer: 网络设备类,即带有网卡的计算机

    InternetStackHelper: 给node安装安装协议

    Ipv4AddressHelper: 分配IP地址

    Ipv4InterfaceContainer:关联IP地址到设备

    UdpEchoServerHelper: 设置端口号

    ApplicationContainer: UdpEchoServerHelper安装UdpEchoServerApplication到Node上,返回的容器

    Inns-3, nodes can have multiple WifiNetDevices on separate channels, and the WifiNetDevice can coexist with otherdevice types. With the use of theSpectrumWifiPhyframework, one can also build scenarios involving cross-channelinterference or multiple wireless technologies on a single channel.

  • 相关阅读:
    python爬取网络上图片【小例子】
    python统计英文单词出现次数【小例子】
    python敏感字处理【小例子】
    platform操作系统信息
    迭代器
    xxxxx
    test
    Jquery
    Jquery二
    DOM文档对象模型
  • 原文地址:https://www.cnblogs.com/WindyZ/p/11727523.html
Copyright © 2011-2022 走看看