NS-3 简介

NS-3 简介
全称为 Network Simulator 3
官网: http://www.nsnam.org/
ns-2 的官网: http://isi.edu/nsnam/ns/

目前,比较流行的版本有NS-2,以及NS-3。
NS-2采用C++和OTcl代码编写,在学习过程中需要学习新的OTcl语言。NS-3全部采用C++语言编写,并且还可以用Python语言编写代码。
相对来说,NS-2的资料比较多。因为NS-2流行好几年了,流行的协议,毕业论文的相关代码,都比较多。
但是,如果您是初学,个人建议你还是学习NS-3.因为NS-3全部采用C++编写,一般来说大家都会C++,上手容易。而且,在编程方面,NS-3更加灵活。

ns-3目前的最新版本号是ns-3.12(2011年10月23日)
ns-3.10以前的版本是集成化设计。
ns-3-dev, ns-3.12,ns-3.11,ns-3.10, 都采用模块化设计,比如,你想调用core模块, #include "ns3/core-module.h" 就行了。
程序的设计,越来越复杂,在具体设计程序中,不同用户用的模块都不一样。因此,模块化设计更加方便、灵活。
用户还可以自己设计模块,然后添加到ns-3中。见例: http://blog.csdn.net/barcodegun/article/details/6898193

用户可以根据自己的要求,安装相关版本,我安装的是 ns-3-dev版本。

本文主要介绍ns-3.

NS-3方面的资料:
官网:     http://www.nsnam.org/
Wiki:   http://www.nsnam.org/wiki/index.php/Main_Page

资料下载: http://www.nsnam.org/ns-3-dev/documentation/
在上面网站中,主要有以下主要资料:
Tutorial:  初步介绍NS-3的相关知识,以及下载及安装,简单使用。
Manual:    更深一步讲解NS-3的相关知识。
Model Library: 主要介绍NS-3的相关模块。用户可以选择自己实际需要的模块学习,不需要全部看。
API Documentation: 在线帮助手册。   http://www.nsnam.org/docs/doxygen/index.html

在编程中,最常用的就是 http://www.nsnam.org/docs/doxygen/index.html   查询类的成员函数,类的属性等。
此在线文档用doxygen程序生成,   http://www.doxygen.org/index.html
原理是在编写ns-3代码时,用doxygen规定的注释。
比如:
/**
  * \param firstParam a short description of the purpose of this parameter
  * \returns a short description of what is returned from this function.
  *
  * A detailed description of the purpose of the method.
  */
 int DoSomething (int firstParam);
将在帮助文档中生成:
A detailed description of the purpose of the method.
Parameters:
firstParam   a short description of the purpose of this parameter
Returns:
a short description of what is returned from this function.

你可能感兴趣的:(编程,文档,语言,NetWork,documentation,library)