gear-2pp-5n-1s-1r.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:5k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #
  2. # simple gear/2pp example
  3. # This example tests directed diffusion in a 5 node scenario with a single sender and a single recvr using gear app with push rtg algorithm
  4. #
  5. # ==================================================================
  6. # Define options
  7. # ===================================================================
  8. set opt(chan) Channel/WirelessChannel
  9. set opt(prop) Propagation/TwoRayGround
  10. set opt(netif) Phy/WirelessPhy
  11. set opt(mac) Mac/802_11
  12. set opt(ifq) Queue/DropTail/PriQueue
  13. set opt(ll) LL
  14. set opt(ant)            Antenna/OmniAntenna
  15. set opt(filters)        GradientFilter/GeoRoutingFilter 
  16. set opt(x) 670 ;# X dimension of the topography
  17. set opt(y) 670     ;# Y dimension of the topography
  18. set opt(ifqlen) 50 ;# max packet in ifq
  19. set opt(nn) 5 ;# number of nodes
  20. set opt(seed) 0.0
  21. set opt(stop) 500 ;# simulation time
  22. set opt(prestop)        499      ;# time to prepare to stop
  23. set opt(tr) "gear-2pp-5n-1s-1r.tr" ;# trace file
  24. set opt(nam)            "gear-2pp-5n-1s-1r.nam"  ;# nam file
  25. set opt(adhocRouting)   Directed_Diffusion
  26. # ==================================================================
  27. LL set mindelay_ 50us
  28. LL set delay_ 25us
  29. LL set bandwidth_ 0 ;# not used
  30. Queue/DropTail/PriQueue set Prefer_Routing_Protocols    1
  31. # unity gain, omni-directional antennas
  32. # set up the antennas to be centered in the node and 1.5 meters above it
  33. Antenna/OmniAntenna set X_ 0
  34. Antenna/OmniAntenna set Y_ 0
  35. Antenna/OmniAntenna set Z_ 1.5
  36. Antenna/OmniAntenna set Gt_ 1.0
  37. Antenna/OmniAntenna set Gr_ 1.0
  38. # Initialize the SharedMedia interface with parameters to make
  39. # it work like the 914MHz Lucent WaveLAN DSSS radio interface
  40. Phy/WirelessPhy set CPThresh_ 10.0
  41. Phy/WirelessPhy set CSThresh_ 1.559e-11
  42. Phy/WirelessPhy set RXThresh_ 3.652e-10
  43. Phy/WirelessPhy set Rb_ 2*1e6
  44. Phy/WirelessPhy set Pt_ 0.2818
  45. Phy/WirelessPhy set freq_ 914e+6 
  46. Phy/WirelessPhy set L_ 1.0
  47. # ==================================================================
  48. # Main Program
  49. # =================================================================
  50. #
  51. # Initialize Global Variables
  52. #
  53. set ns_ [new Simulator] 
  54. set topo [new Topography]
  55. set tracefd [open $opt(tr) w]
  56. $ns_ trace-all $tracefd
  57. set nf [open $opt(nam) w]
  58. $ns_ namtrace-all-wireless $nf $opt(x) $opt(y)
  59. #$ns_ use-newtrace
  60. $topo load_flatgrid $opt(x) $opt(y)
  61. set god_ [create-god $opt(nn)]
  62. # log the mobile nodes movements if desired
  63. #if { $opt(lm) == "on" } {
  64. #    log-movement
  65. #}
  66. #global node setting
  67. $ns_ node-config -adhocRouting $opt(adhocRouting) 
  68.  -llType $opt(ll) 
  69.  -macType $opt(mac) 
  70.  -ifqType $opt(ifq) 
  71.  -ifqLen $opt(ifqlen) 
  72.  -antType $opt(ant) 
  73.  -propType $opt(prop) 
  74.  -phyType $opt(netif) 
  75.  -channelType $opt(chan) 
  76.  -topoInstance $topo 
  77.                  -diffusionFilter $opt(filters) 
  78.  -agentTrace OFF 
  79.                  -routerTrace OFF 
  80.                  -macTrace ON 
  81.                  -stopTime $opt(stop)
  82.                   
  83. #  Create the specified number of nodes [$opt(nn)] and "attach" them
  84. #  to the channel. 
  85. for {set i 0} {$i < $opt(nn) } {incr i} {
  86. set node_($i) [$ns_ node $i]
  87.         $node_($i) color black
  88. $node_($i) random-motion 0 ;# disable random motion
  89.         #$god_ new_node $node_($i)
  90. }
  91. puts "Loading connection pattern..."
  92. $node_(0) set X_ 618.716707738489
  93. $node_(0) set Y_ 620.707335765875
  94. $node_(0) set Z_ 0.000000000000
  95. $node_(1) set X_ 524.192740186325
  96. $node_(1) set Y_ 540.384818286195
  97. $node_(1) set Z_ 0.000000000000
  98. $node_(2) set X_ 406.438972165239
  99. $node_(2) set Y_ 425.843469852367
  100. $node_(2) set Z_ 0.000000000000
  101. $node_(3) set X_ 320.192740186325
  102. $node_(3) set Y_ 350.384818286195
  103. $node_(3) set Z_ 0.000000000000
  104. $node_(4) set X_ 177.438972165239
  105. $node_(4) set Y_ 145.843469852367
  106. $node_(4) set Z_ 0.000000000000
  107. for {set i 0} {$i < $opt(nn)} {incr i} {
  108.     set gearf($i) [new Application/DiffApp/GeoRoutingFilter 
  109.        [$node_($i) get-dr]]
  110.     $gearf($i) start
  111. }
  112.     
  113. # 1 ping sender
  114. set src_(0) [new Application/DiffApp/GearSenderApp]
  115. $ns_ attach-diffapp $node_(0) $src_(0)
  116. $src_(0) push-pull-options pull point 618.716 620.707
  117. $ns_ at 0.123 "$src_(0) publish"
  118. # 1 ping receiver
  119. set snk_(0) [new Application/DiffApp/GearReceiverApp]
  120. $ns_ attach-diffapp $node_(4) $snk_(0)
  121. $snk_(0) push-pull-options pull region 600 650 600 650
  122. $ns_ at 1.456 "$snk_(0) subscribe"
  123. # Define node initial position in nam
  124. for {set i 0} {$i < $opt(nn)} {incr i} {
  125.     # 20 defines the node size in nam, must adjust it according to your scenario
  126.     # The function must be called after mobility model is defined
  127.     
  128.     $ns_ initial_node_pos $node_($i) 20
  129. }
  130. #
  131. # Tell nodes when the simulation ends
  132. #
  133. for {set i 0} {$i < $opt(nn) } {incr i} {
  134.     $ns_ at $opt(stop).000000001 "$node_($i) reset";
  135. }
  136. # tell nam the simulation stop time
  137. $ns_ at  $opt(stop) "$ns_ nam-end-wireless $opt(stop)"
  138. $ns_ at  $opt(stop).000000001 "puts "NS EXITING..." ; $ns_ halt"
  139. puts $tracefd "Directed Diffusion:2PP/5nodes/1sender/1rcvr"
  140. puts $tracefd "M 0.0 nn $opt(nn) x $opt(x) y $opt(y)"
  141. puts $tracefd "M 0.0 prop $opt(prop) ant $opt(ant)"
  142. puts "Starting Simulation..."
  143. $ns_ run