large-sim.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # Testing for CPU/memory efficiency for routing code in ns-2
  2. # using t1000 - a 1000 node ts topology
  3. set ns [new Simulator]
  4. ###source /nfs/ruby/haldar/conser/ns-2/tcl/ex/t1000.tcl
  5. source t1000.tcl
  6. set linkBW 5Mb
  7. global n ns
  8. puts "starting to create topology"
  9. puts "time: [clock format [clock seconds] -format %X]"
  10. create-topology ns node $linkBW
  11. puts [Node set nn_]
  12. puts "completed creating topology"
  13. puts "ns run.."
  14. puts "time: [clock format [clock seconds] -format %X]"
  15. $ns run
  16. puts "completed simulation"
  17. puts "time: [clock format [clock seconds] -format %X]"