wired-cum-wireless-sim.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:4k
源码类别:

通讯编程

开发平台:

Visual C++

  1. ### This simulation is an example of combination of wired and wireless 
  2. ### topologies.
  3. global opt
  4. set opt(chan)       Channel/WirelessChannel
  5. set opt(prop)       Propagation/TwoRayGround
  6. set opt(netif)      Phy/WirelessPhy
  7. set opt(mac)        Mac/802_11
  8. set opt(ifq)        Queue/DropTail/PriQueue
  9. set opt(ll)         LL
  10. set opt(ant)        Antenna/OmniAntenna
  11. set opt(x)             670   
  12. set opt(y)              670   
  13. set opt(ifqlen)         50   
  14. set opt(tr)          wired-and-wireless.tr
  15. set opt(namtr)       wired-and-wireless.nam
  16. set opt(nn)             3                       
  17. set opt(adhocRouting)   DSDV                      
  18. set opt(cp)             ""                        
  19. set opt(sc)             "../mobility/scene/scen-3-test"   
  20. set opt(stop)           250                           
  21. set num_wired_nodes      2
  22. set num_bs_nodes         2
  23. set ns_   [new Simulator]
  24. # set up for hierarchical routing
  25.   $ns_ node-config -addressType hierarchical
  26.   AddrParams set domain_num_ 3          
  27.   lappend cluster_num 2 1 1                
  28.   AddrParams set cluster_num_ $cluster_num
  29.   lappend eilastlevel 1 1 4 1              
  30.   AddrParams set nodes_num_ $eilastlevel 
  31.   set tracefd  [open $opt(tr) w]
  32.   $ns_ trace-all $tracefd
  33.   set namtracefd [open $opt(namtr) w]
  34.   $ns_ namtrace-all $namtracefd
  35.   set topo   [new Topography]
  36.   $topo load_flatgrid $opt(x) $opt(y)
  37.   # god needs to know the number of all wireless interfaces
  38.   create-god [expr $opt(nn) + $num_bs_nodes]
  39.   #create wired nodes
  40.   set temp {0.0.0 0.1.0}        
  41.   for {set i 0} {$i < $num_wired_nodes} {incr i} {
  42.       set W($i) [$ns_ node [lindex $temp $i]]
  43.   } 
  44.   $ns_ node-config -adhocRouting $opt(adhocRouting) 
  45.                  -llType $opt(ll) 
  46.                  -macType $opt(mac) 
  47.                  -ifqType $opt(ifq) 
  48.                  -ifqLen $opt(ifqlen) 
  49.                  -antType $opt(ant) 
  50.                  -propInstance [new $opt(prop)] 
  51.                  -phyType $opt(netif) 
  52.                  -channel [new $opt(chan)] 
  53.                  -topoInstance $topo 
  54.                  -wiredRouting ON 
  55.                  -agentTrace ON 
  56.                  -routerTrace OFF 
  57.                  -macTrace OFF
  58.   set temp {1.0.0 1.0.1 1.0.2 1.0.3}   
  59.   set BS(0) [$ns_ node [lindex $temp 0]]
  60.   set BS(1) [$ns_ node 2.0.0]
  61.   $BS(0) random-motion 0 
  62.   $BS(1) random-motion 0
  63.   $BS(0) set X_ 1.0
  64.   $BS(0) set Y_ 2.0
  65.   $BS(0) set Z_ 0.0
  66.   
  67.   $BS(1) set X_ 650.0
  68.   $BS(1) set Y_ 600.0
  69.   $BS(1) set Z_ 0.0
  70.   
  71.   #configure for mobilenodes
  72.   $ns_ node-config -wiredRouting OFF
  73.   for {set j 0} {$j < $opt(nn)} {incr j} {
  74.     set node_($j) [ $ns_ node [lindex $temp 
  75.             [expr $j+1]] ]
  76.     $node_($j) base-station [AddrParams addr2id [$BS(0) node-addr]]
  77.   }
  78.   #create links between wired and BS nodes
  79.   $ns_ duplex-link $W(0) $W(1) 5Mb 2ms DropTail
  80.   $ns_ duplex-link $W(1) $BS(0) 5Mb 2ms DropTail
  81.   $ns_ duplex-link $W(1) $BS(1) 5Mb 2ms DropTail
  82.   $ns_ duplex-link-op $W(0) $W(1) orient down
  83.   $ns_ duplex-link-op $W(1) $BS(0) orient left-down
  84.   $ns_ duplex-link-op $W(1) $BS(1) orient right-down
  85.   # setup TCP connections
  86.   set tcp1 [new Agent/TCP]
  87.   $tcp1 set class_ 2
  88.   set sink1 [new Agent/TCPSink]
  89.   $ns_ attach-agent $node_(0) $tcp1
  90.   $ns_ attach-agent $W(0) $sink1
  91.   $ns_ connect $tcp1 $sink1
  92.   set ftp1 [new Application/FTP]
  93.   $ftp1 attach-agent $tcp1
  94.   $ns_ at 160 "$ftp1 start"
  95.   set tcp2 [new Agent/TCP]
  96.   $tcp2 set class_ 2
  97.   set sink2 [new Agent/TCPSink]
  98.   $ns_ attach-agent $W(1) $tcp2
  99.   $ns_ attach-agent $node_(2) $sink2
  100.   $ns_ connect $tcp2 $sink2
  101.   set ftp2 [new Application/FTP]
  102.   $ftp2 attach-agent $tcp2
  103.   $ns_ at 180 "$ftp2 start"
  104.   
  105.   for {set i 0} {$i < $opt(nn)} {incr i} {
  106.       $ns_ initial_node_pos $node_($i) 20
  107.    }
  108.   for {set i } {$i < $opt(nn) } {incr i} {
  109.       $ns_ at $opt(stop).0000010 "$node_($i) reset";
  110.   }
  111.   $ns_ at $opt(stop).0000010 "$BS(0) reset";
  112.   $ns_ at $opt(stop).1 "puts "NS EXITING..." ; $ns_ halt"
  113.   puts "Starting Simulation..."
  114.   $ns_ run