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

通讯编程

开发平台:

Visual C++

  1. #
  2. # A 1 phase pull example
  3. # This example tests directed diffusion in a 5 node scenario with 1 sender 
  4. # and 1 recvr
  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)        OnePhasePullFilter  
  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) 5 ;# number of nodes
  21. set opt(sndr)            1      ;# no of senders
  22. set opt(rcvr)            1      ;# no of recvrs
  23. set opt(seed) 0.0
  24. set opt(stop) 500 ;# simulation time
  25. set opt(prestop)        499       ;# time to prepare to stop
  26. set opt(tr) "1pp-5n-1s-1r.tr" ;# trace file
  27. set opt(nam)            "1pp-5n-1s-1r.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. # 1 ping sender
  110. for {set i 0} {$i < $opt(sndr)} {incr i} {
  111.     set src_($i) [new Application/DiffApp/PingSender/OPP]
  112.     $ns_ attach-diffapp $node_([expr $i + 1]) $src_($i)
  113.     $ns_ at [expr 0.123 * [expr 1+$i]] "$src_($i) publish"
  114. }
  115. # 1 ping receiver
  116. for {set i 0} {$i < $opt(rcvr)} {incr i} {
  117.     set snk_($i) [new Application/DiffApp/PingReceiver/OPP]
  118.     $ns_ attach-diffapp $node_([expr $opt(nn)-1 -$i]) $snk_($i)
  119.     $ns_ at [expr 1.156*[expr 1+$i]] "$snk_($i) subscribe"
  120. }
  121. # Define node initial position in nam
  122. for {set i 0} {$i < $opt(nn)} {incr i} {
  123.     # 20 defines the node size in nam, must adjust it according to your scenario
  124.     # The function must be called after mobility model is defined
  125.     
  126.     $ns_ initial_node_pos $node_($i) 20
  127. }
  128. #
  129. # Tell nodes when the simulation ends
  130. #
  131. for {set i 0} {$i < $opt(nn) } {incr i} {
  132.     $ns_ at $opt(stop).000000001 "$node_($i) reset";
  133. }
  134. # tell nam the simulation stop time
  135. $ns_ at  $opt(stop) "$ns_ nam-end-wireless $opt(stop)"
  136. $ns_ at  $opt(stop).000000001 "puts "NS EXITING..." ; $ns_ halt"
  137. puts $tracefd "Directed Diffusion:$opt(filters)"
  138. puts $tracefd "M 0.0 nn $opt(nn) x $opt(x) y $opt(y)"
  139. puts $tracefd "M 0.0 prop $opt(prop) ant $opt(ant)"
  140. puts "Starting Simulation..."
  141. $ns_ run