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

通讯编程

开发平台:

Visual C++

  1. # simple directed diffusion example
  2. # This example tests directed diffusion in 2 simple scenarios
  3. # (1) where all 3 nodes can hear each other and a source and sink application pair is setup on two of the nodes.
  4. # and
  5. # (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.
  6. # ==================================================================
  7. # Define options
  8. # ===================================================================
  9. set opt(chan) Channel/WirelessChannel
  10. set opt(prop) Propagation/TwoRayGround
  11. set opt(netif) Phy/WirelessPhy
  12. set opt(mac) Mac/802_11
  13. set opt(ifq) Queue/DropTail/PriQueue
  14. set opt(ll) LL
  15. set opt(ant)            Antenna/OmniAntenna
  16. set opt(filters)        GradientFilter    ;# options can be one or more of 
  17.                                 ;# TPP/OPP/Gear/Rmst/SourceRoute/Log/TagFilter
  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) 3 ;# number of nodes
  22. set opt(seed) 0.0
  23. set opt(stop) 50 ;# simulation time
  24. set opt(prestop)        19       ;# 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(filters) 
  81.  -agentTrace ON 
  82.                  -routerTrace OFF 
  83.                  -macTrace ON
  84.                   
  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_ 500.716707738489
  95. $node_(0) set Y_ 620.707335765875
  96. $node_(0) set Z_ 0.000000000000
  97. $node_(1) set X_ 320.192740186325
  98. $node_(1) set Y_ 450.384818286195
  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/PingSender/TPP]
  110. $ns_ attach-diffapp $node_(0) $src_(0)
  111. $ns_ at 0.123 "$src_(0) publish"
  112. # another diff application
  113. #set src_(1) [new Application/DiffApp/PingSender/TPP]
  114. #$ns_ attach-diffapp $node_(1) $src_(1)
  115. #$ns_ at 1.3 "$src_(1) publish"
  116. #Diffusion sink application
  117. set snk_(0) [new Application/DiffApp/PingReceiver/TPP]
  118. $ns_ attach-diffapp $node_(2) $snk_(0)
  119. $ns_ at 1.456 "$snk_(0) subscribe"
  120. # Define node initial position in nam
  121. for {set i 0} {$i < $opt(nn)} {incr i} {
  122.     # 20 defines the node size in nam, must adjust it according to your scenario
  123.     # The function must be called after mobility model is defined
  124.     
  125.     $ns_ initial_node_pos $node_($i) 20
  126. }
  127. #
  128. # Tell nodes when the simulation ends
  129. #
  130. for {set i 0} {$i < $opt(nn) } {incr i} {
  131.     $ns_ at $opt(stop).000000001 "$node_($i) reset";
  132. }
  133. # tell nam the simulation stop time
  134. $ns_ at  $opt(stop) "$ns_ nam-end-wireless $opt(stop)"
  135. $ns_ at  $opt(stop).000000001 "puts "NS EXITING..." ; $ns_ halt"
  136. puts $tracefd "Directed Diffusion:"
  137. puts $tracefd "M 0.0 nn $opt(nn) x $opt(x) y $opt(y)"
  138. puts $tracefd "M 0.0 prop $opt(prop) ant $opt(ant)"
  139. puts "Starting Simulation..."
  140. $ns_ run