run
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:0k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #!/bin/sh
  2. # used for energy study with enough energy
  3. # one mobility mode, random change distribution of traffic source
  4. for proto in AODV DSR TORA DSDV
  5. do
  6.   echo "$proto simulation"
  7.   i=1
  8.   while [ "$i" -le 1 ] 
  9.   do 
  10.     echo "# $i run ..."
  11.     ../../../ns estudy.tcl -rp $proto -initialenergy 0.5 -tr e-$proto.tr -cp cbr.tcl -sc mobility.tcl -nam $proto.nam -x 670 -y 670 -nn 5 -stop 500
  12.     i=`expr $i + 1`
  13.   done
  14. done