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

通讯编程

开发平台:

Visual C++

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