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

通讯编程

开发平台:

Visual C++

  1. #
  2. # simple 2 phase pull example
  3. # This example tests directed diffusion in a 5 node scenario with a single sender and a single recvr
  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  ;# old name for twophasepull filter
  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) 50 ;# simulation time
  22. set opt(prestop)        19       ;# time to prepare to stop
  23. set opt(tr) "2pp-5n-1s-1r.tr" ;# trace file
  24. set opt(nam)            "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 ON 
  79.                  -routerTrace ON 
  80.                  -macTrace ON
  81.                   
  82. #  Create the specified number of nodes [$opt(nn)] and "attach" them
  83. #  to the channel. 
  84. for {set i 0} {$i < $opt(nn) } {incr i} {
  85. set node_($i) [$ns_ node $i]
  86.         $node_($i) color black
  87. $node_($i) random-motion 0 ;# disable random motion
  88.         $god_ new_node $node_($i)
  89. }
  90. puts "Loading connection pattern..."
  91. $node_(0) set X_ 618.716707738489
  92. $node_(0) set Y_ 620.707335765875
  93. $node_(0) set Z_ 0.000000000000
  94. $node_(1) set X_ 524.192740186325
  95. $node_(1) set Y_ 540.384818286195
  96. $node_(1) set Z_ 0.000000000000
  97. $node_(2) set X_ 406.438972165239
  98. $node_(2) set Y_ 425.843469852367
  99. $node_(2) set Z_ 0.000000000000
  100. $node_(3) set X_ 320.192740186325
  101. $node_(3) set Y_ 350.384818286195
  102. $node_(3) set Z_ 0.000000000000
  103. $node_(4) set X_ 177.438972165239
  104. $node_(4) set Y_ 145.843469852367
  105. $node_(4) set Z_ 0.000000000000
  106. # 1 ping sender
  107. set src_(0) [new Application/DiffApp/PingSender/TPP]
  108. $ns_ attach-diffapp $node_(0) $src_(0)
  109. $ns_ at 0.123 "$src_(0) publish"
  110. # 1 ping receiver
  111. set snk_(0) [new Application/DiffApp/PingReceiver/TPP]
  112. $ns_ attach-diffapp $node_(4) $snk_(0)
  113. $ns_ at 1.456 "$snk_(0) subscribe"
  114. # Define node initial position in nam
  115. for {set i 0} {$i < $opt(nn)} {incr i} {
  116.     # 20 defines the node size in nam, must adjust it according to your scenario
  117.     # The function must be called after mobility model is defined
  118.     
  119.     $ns_ initial_node_pos $node_($i) 20
  120. }
  121. #
  122. # Tell nodes when the simulation ends
  123. #
  124. for {set i 0} {$i < $opt(nn) } {incr i} {
  125.     $ns_ at $opt(stop).000000001 "$node_($i) reset";
  126. }
  127. # tell nam the simulation stop time
  128. $ns_ at  $opt(stop) "$ns_ nam-end-wireless $opt(stop)"
  129. $ns_ at  $opt(stop).000000001 "puts "NS EXITING..." ; $ns_ halt"
  130. puts $tracefd "Directed Diffusion:2PP/5nodes/1sender/1rcvr"
  131. puts $tracefd "M 0.0 nn $opt(nn) x $opt(x) y $opt(y)"
  132. puts $tracefd "M 0.0 prop $opt(prop) ant $opt(ant)"
  133. puts "Starting Simulation..."
  134. $ns_ run