【网络仿真】ns-3安装可视化工具PyViz&NetAnim
2021/5/2 18:26:50
本文主要是介绍【网络仿真】ns-3安装可视化工具PyViz&NetAnim,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1 PyViz
官方文档
1.1 引言
NS-3 PyViz is a live simulation visualizer, meaning that it uses no trace files. It can be most useful for debugging purposes, i.e. to figure out if mobility models are what you expect, where packets are being dropped, etc. There’s also a builtin interactive python console that can be used to debug the state of the running objects. Although it is mostly written in Python, it works both with Python and pure C++ simulations.
NS-3 PyViz是在线模拟仿真可视化工具,使用python编写,在python和c++环境中都可以使用。
使用Pyviz工具可以更加直观的看出节点间通信的效果。
1.2 安装
在ns-3的3.10版本之后,ns-3中包括了PyViz。(因此不需要单独下载,只需要配置一下就可以了)
sudo ./waf configure --build-profile=debug --enable-example --enable-tests --with-pybindgen=/home/jnbai/桌面/ns3/ns-allinone-3.30.1/pybindgen-0.20.0 --enable-sudo
若有错误提示:PyViz visualizer : not enabled (Missing python modules: pygraphviz),执行以下:
sudo pip3 install pygraphviz sudo ./waf configure --build-profile=debug --enable-example --enable-tests --with-pybindgen=/home/jnbai/桌面/ns3/ns-allinone-3.30.1/pybindgen-0.20.0 --enable-sudo
成功!
测试一下:
#在ns-3.XX目录下: ./waf --run first --vis
2 NetAnim
官方文档
NetAnim is an offline animator based on the Qt toolkit. It currently animates the simulation using an XML trace file collected during simulation. The first version was developed by George F Riley.
参考安装教程
先安装三个插件:
sudo apt-get install qt4-qmake # 安装工具 sudo apt-get purge libqt4-opengl-dev # 绘图工具(用这个命令可能出错sudo apt-get install libqt4-dev) sudo apt-get install libxml2-dev # netanim读取程序生成的xml文件,离线展示动画
安装:
cd ns-allinone-3.xx cd netanim-3.xxx make clean qmake NetAnim.pro make
启动:
./NetAnim
出现界面:
运行:
cp examples/tutorial/first.cc scratch chmod 777 scratch/first.cc vim scratch/first.cc
修改scratch/first.cc文件:
//加头文件 #include "ns3/netanim-module.h" //在Simulator::Run();前面加这三句 AnimationInterface anim("first.xml"); anim.SetConstantPosition(nodes.Get(0), 1.0, 2.0);//描述节点0的坐标 anim.SetConstantPosition(nodes.Get(1), 2.0, 3.0);//描述节点1的坐标
保存退出。
# (普通用户)在ns-3.xx文件下,编译程序 sudo ./waf --run scratch/first # 在netanim文件夹下重新启动 ./NetAnim
在netanim界面中点击open->first.xml->play
成功!
这篇关于【网络仿真】ns-3安装可视化工具PyViz&NetAnim的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-18机器学习与数据分析的区别
- 2024-10-28机器学习资料入门指南
- 2024-10-25机器学习开发的几大威胁及解决之道
- 2024-10-24以下是五个必备的MLOps (机器学习运维)工具,帮助提升你的生产效率 ??
- 2024-10-15如何选择最佳的机器学习部署策略:云 vs. 边缘
- 2024-10-12从软件工程师转行成为机器学习工程师
- 2024-09-262024年机器学习路线图:精通之路步步为营指南
- 2024-09-13机器学习教程:初学者指南
- 2024-08-07从入门到精通:全面解析机器学习基础与实践
- 2024-01-24手把手教你使用MDK仿真调试