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

通讯编程

开发平台:

Visual C++

  1. #
  2. # A 2 phase pull example
  3. # This example tests directed diffusion in a 10 node scenario with 1 sender 
  4. # and 4 recvrs
  5. #
  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  ;# old name for twophasepull filter
  17. set opt(x) 670 ;# X dimension of the topography
  18. set opt(y) 670     ;# Y dimension of the topography
  19. set opt(ifqlen) 50 ;# max packet in ifq
  20. set opt(nn) 10 ;# number of nodes
  21. set opt(sndr)            1      ;# no of senders
  22. set opt(rcvr)            4      ;# no of recvrs
  23. set opt(seed) 0.0
  24. set opt(stop) 100 ;# simulation time
  25. set opt(prestop)        199       ;# time to prepare to stop
  26. set opt(tr) "2pp-10n-1s-4r.tr" ;# trace file
  27. set opt(nam)            "2pp-10n-1s-4r.nam"  ;# nam file
  28. set opt(adhocRouting)   Directed_Diffusion
  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 ON 
  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_ 18.587605569735
  95. $node_(0) set Y_ 401.886827012678
  96. $node_(0) set Z_ 0.000000000000
  97. $node_(1) set X_ 11.901958617639
  98. $node_(1) set Y_ 36.218497218617
  99. $node_(1) set Z_ 0.000000000000
  100. $node_(2) set X_ 224.282785411393
  101. $node_(2) set Y_ 20.774608253697
  102. $node_(2) set Z_ 0.000000000000
  103. $node_(3) set X_ 158.840938304009
  104. $node_(3) set Y_ 139.650216383776
  105. $node_(3) set Z_ 0.000000000000
  106. $node_(4) set X_ 101.186886005903
  107. $node_(4) set Y_ 147.993190973633
  108. $node_(4) set Z_ 0.000000000000
  109. $node_(5) set X_ 321.560825121175
  110. $node_(5) set Y_ 472.788096833600
  111. $node_(5) set Z_ 0.000000000000
  112. $node_(6) set X_ 149.543901734330
  113. $node_(6) set Y_ 384.356581531832
  114. $node_(6) set Z_ 0.000000000000
  115. $node_(7) set X_ 381.066146464027
  116. $node_(7) set Y_ 78.723958958779
  117. $node_(7) set Z_ 0.000000000000
  118. $node_(8) set X_ 113.578290026963
  119. $node_(8) set Y_ 410.320583900348
  120. $node_(8) set Z_ 0.000000000000
  121. $node_(9) set X_ 258.053977148981
  122. $node_(9) set Y_ 113.194171851670
  123. $node_(9) set Z_ 0.000000000000
  124. # 1 ping sender
  125. for {set i 0} {$i < $opt(sndr)} {incr i} {
  126.     set src_($i) [new Application/DiffApp/PingSender/TPP]
  127.     $ns_ attach-diffapp $node_([expr $i + 2]) $src_($i)
  128.     $ns_ at [expr 0.123 * [expr 1+$i]] "$src_($i) publish"
  129. }
  130. # 4 ping receivers
  131. for {set i 0} {$i < $opt(rcvr)} {incr i} {
  132.     set snk_($i) [new Application/DiffApp/PingReceiver/TPP]
  133.     $ns_ attach-diffapp $node_([expr $opt(nn)-1 -$i]) $snk_($i)
  134.     $ns_ at [expr 1.156*[expr 1+$i]] "$snk_($i) subscribe"
  135. }
  136. # Define node initial position in nam
  137. for {set i 0} {$i < $opt(nn)} {incr i} {
  138.     # 20 defines the node size in nam, must adjust it according to your scenario
  139.     # The function must be called after mobility model is defined
  140.     
  141.     $ns_ initial_node_pos $node_($i) 20
  142. }
  143. #
  144. # Tell nodes when the simulation ends
  145. #
  146. for {set i 0} {$i < $opt(nn) } {incr i} {
  147.     $ns_ at $opt(stop).000000001 "$node_($i) reset";
  148. }
  149. # tell nam the simulation stop time
  150. $ns_ at  $opt(stop) "$ns_ nam-end-wireless $opt(stop)"
  151. $ns_ at  $opt(stop).000000001 "puts "NS EXITING..." ; $ns_ halt"
  152. puts $tracefd "Directed Diffusion:2PP/5nodes/1sender/1rcvr"
  153. puts $tracefd "M 0.0 nn $opt(nn) x $opt(x) y $opt(y)"
  154. puts $tracefd "M 0.0 prop $opt(prop) ant $opt(ant)"
  155. puts "Starting Simulation..."
  156. $ns_ run