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

通讯编程

开发平台:

Visual C++

  1. # -*- Mode:tcl; tcl-indent-level:8; tab-width:8; indent-tabs-mode:t -*-
  2. Agent/TCP set tcpTick_ 0.1
  3. # The default for tcpTick_ is being changed to reflect a changing reality.
  4. Agent/TCP set rfc2988_ false
  5. # The default for rfc2988_ is being changed to true.
  6. Agent/TCP set SetCWRonRetransmit_ true
  7. # Changing the default value.
  8. Mac/802_11 set bugFix_timer_ false;     # default changed 2006/1/30
  9. #
  10. # Copyright (c) 1998,2000 University of Southern California.
  11. # All rights reserved.                                            
  12. #                                                                
  13. # Redistribution and use in source and binary forms are permitted
  14. # provided that the above copyright notice and this paragraph are
  15. # duplicated in all such forms and that any documentation, advertising
  16. # materials, and other materials related to such distribution and use
  17. # acknowledge that the software was developed by the University of
  18. # Southern California, Information Sciences Institute.  The name of the
  19. # University may not be used to endorse or promote products derived from
  20. # this software without specific prior written permission.
  21. # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
  22. # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  23. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  24. # $Header: /cvsroot/nsnam/ns-2/tcl/test/test-suite-WLtutorial.tcl,v 1.18 2006/01/30 21:27:52 mweigle Exp $
  25. ###########################################################################
  26. # IMPORTANT NOTE:
  27. # If you are updating any part of this WLtutorial test-suite, please
  28. # update the examples (wireless1.tcl, wireless2.tcl & wireless3.tcl) used
  29. # for wireless tutorial under vint/tutorial/example directory.
  30. ###########################################################################
  31. # This test suite is for validating wireless examples used in Greis' tutorial
  32. # To run all tests: test-all-WLtutorial
  33. # to run individual test:
  34. # ns test-suite-WLtutorial.tcl wireless1
  35. # ns test-suite-WLtutorial.tcl wireless2
  36. # ns test-suite-WLtutorial.tcl wireless3
  37. # ....
  38. #
  39. # To view a list of available test to run with this script:
  40. # ns test-suite-WLtutorial.tcl
  41. #
  42. # FOR UPDATING GLOBAL DEFAULTS:
  43. Agent/TCP set precisionReduce_ false ;   # default changed on 2006/1/24.
  44. Agent/TCP set rtxcur_init_ 6.0 ;      # Default changed on 2006/01/21
  45. Agent/TCP set updated_rttvar_ false ;  # Variable added on 2006/1/21
  46. Agent/TCP set useHeaders_ false
  47. # The default is being changed to useHeaders_ true.
  48. Agent/TCP set windowInit_ 1
  49. # The default is being changed to 2.
  50. Agent/TCP set singledup_ 0
  51. # The default is being changed to 1
  52. Agent/TCP set minrto_ 0
  53. # The default is being changed to minrto_ 1
  54. Agent/TCP set syn_ false
  55. Agent/TCP set delay_growth_ false
  56. # In preparation for changing the default values for syn_ and delay_growth_.
  57. Class TestSuite
  58. # tutorial example of a simple wireless scenario
  59. Class Test/wireless1 -superclass TestSuite
  60. # tutorial example involving a wired-cum-wireless scenario
  61. Class Test/wireless2 -superclass TestSuite
  62. # tutorial example on wirelessMIP
  63. Class Test/wireless3 -superclass TestSuite
  64. proc usage {} {
  65. global argv0
  66. puts stderr "usage: ns $argv0 <tests> "
  67.         puts "Valid Tests: wireless1 wireless2 wireless3"
  68. exit 1
  69. }
  70. proc default-options {} {
  71. global opt
  72. set opt(chan)       Channel/WirelessChannel
  73. set opt(prop)       Propagation/TwoRayGround
  74. set opt(netif)      Phy/WirelessPhy
  75. set opt(mac)        Mac/802_11
  76. set opt(ifq)        Queue/DropTail/PriQueue
  77. set opt(ll)         LL
  78. set opt(ant)        Antenna/OmniAntenna
  79. set opt(x)              670   
  80. set opt(y)              670   
  81. set opt(ifqlen)         50           
  82. set opt(tr)          temp.rands
  83. }    
  84. # =====================================================================
  85. Test/wireless1 instproc init {} {
  86.   global opt
  87.   $self instvar ns_
  88. set opt(adhocRouting)   DSR
  89. set opt(ifq)            CMUPriQueue
  90.   set opt(nn)             3             
  91.   set opt(cp)             "../mobility/scene/cbr-3-test"
  92.   set opt(sc)             "../mobility/scene/scen-3-test"
  93.   set opt(stop)           400.0           
  94.     
  95.   set ns_         [new Simulator]  
  96.   set topo        [new Topography] 
  97.   set tracefd     [open $opt(tr) w]
  98.   $ns_ trace-all $tracefd
  99.   $topo load_flatgrid $opt(x) $opt(y)
  100.   set god_ [create-god $opt(nn)]
  101.   $ns_ node-config -adhocRouting $opt(adhocRouting) 
  102.                  -llType $opt(ll) 
  103.                  -macType $opt(mac) 
  104.                  -ifqType $opt(ifq) 
  105.                  -ifqLen $opt(ifqlen) 
  106.                  -antType $opt(ant) 
  107.                  -propInstance [new $opt(prop)] 
  108.                  -phyType $opt(netif) 
  109.                  -channel [new $opt(chan)] 
  110.                  -topoInstance $topo 
  111.                  -agentTrace ON 
  112.                  -routerTrace OFF 
  113.                  -macTrace OFF
  114.    for {set i 0} {$i < $opt(nn) } {incr i} {
  115.         set node_($i) [$ns_ node]
  116.         $node_($i) random-motion 0              ;# disable random motion
  117.  }
  118.   puts "Loading connection pattern..."
  119.   source $opt(cp) 
  120.   puts "Loading scenario file..."
  121.   source $opt(sc) 
  122.   
  123.   for {set i 0} {$i < $opt(nn)} {incr i} {
  124.     $ns_ initial_node_pos $node_($i) 20
  125.   }
  126.   for {set i 0} {$i < $opt(nn) } {incr i} {
  127.     $ns_ at $opt(stop).000000001 "$node_($i) reset";
  128.   }
  129.   $ns_ at  $opt(stop).000000001 "puts "NS EXITING..." ; $ns_ halt"  
  130. }
  131. Test/wireless1 instproc run {} {
  132. $self instvar ns_
  133. puts "Starting Simulation..."
  134. $ns_ run
  135. }
  136. Test/wireless2 instproc init {} {
  137.   global opt
  138.   $self instvar ns_
  139.   set opt(nn)             3                       
  140.   set opt(adhocRouting)   DSDV                      
  141.   set opt(cp)             ""                        
  142.   set opt(sc)             "../mobility/scene/scen-3-test"   
  143.   set opt(stop)           250                           
  144.   set num_wired_nodes      2
  145.   set num_bs_nodes         1
  146.   set ns_   [new Simulator]
  147.   # set up for hierarchical routing
  148.   $ns_ node-config -addressType hierarchical
  149.   AddrParams set domain_num_ 2           
  150.   lappend cluster_num 2 1                
  151.   AddrParams set cluster_num_ $cluster_num
  152.   lappend eilastlevel 1 1 4              
  153.   AddrParams set nodes_num_ $eilastlevel 
  154.   set tracefd  [open $opt(tr) w]
  155.   $ns_ trace-all $tracefd
  156.   set topo   [new Topography]
  157.   $topo load_flatgrid $opt(x) $opt(y)
  158.   create-god [expr $opt(nn) + $num_bs_nodes]
  159.   #create wired nodes
  160.   set temp {0.0.0 0.1.0}        
  161.   for {set i 0} {$i < $num_wired_nodes} {incr i} {
  162.       set W($i) [$ns_ node [lindex $temp $i]]
  163.   } 
  164.   $ns_ node-config -adhocRouting $opt(adhocRouting) 
  165.                  -llType $opt(ll) 
  166.                  -macType $opt(mac) 
  167.                  -ifqType $opt(ifq) 
  168.                  -ifqLen $opt(ifqlen) 
  169.                  -antType $opt(ant) 
  170.                  -propInstance [new $opt(prop)] 
  171.                  -phyType $opt(netif) 
  172.                  -channel [new $opt(chan)] 
  173.                  -topoInstance $topo 
  174.                  -wiredRouting ON 
  175.                  -agentTrace ON 
  176.                  -routerTrace OFF 
  177.                  -macTrace OFF
  178.   set temp {1.0.0 1.0.1 1.0.2 1.0.3}   
  179.   set BS(0) [$ns_ node [lindex $temp 0]]
  180.   $BS(0) random-motion 0 
  181.   $BS(0) set X_ 1.0
  182.   $BS(0) set Y_ 2.0
  183.   $BS(0) set Z_ 0.0
  184.   #configure for mobilenodes
  185.   $ns_ node-config -wiredRouting OFF
  186.   for {set j 0} {$j < $opt(nn)} {incr j} {
  187.     set node_($j) [ $ns_ node [lindex $temp 
  188.             [expr $j+1]] ]
  189.     $node_($j) base-station [AddrParams addr2id [$BS(0) node-addr]]
  190.   }
  191.   #create links between wired and BS nodes
  192.   $ns_ duplex-link $W(0) $W(1) 5Mb 2ms DropTail
  193.   $ns_ duplex-link $W(1) $BS(0) 5Mb 2ms DropTail
  194.   $ns_ duplex-link-op $W(0) $W(1) orient down
  195.   $ns_ duplex-link-op $W(1) $BS(0) orient left-down
  196.   # setup TCP connections
  197.   set tcp1 [new Agent/TCP]
  198.   $tcp1 set class_ 2
  199.   set sink1 [new Agent/TCPSink]
  200.   $ns_ attach-agent $node_(0) $tcp1
  201.   $ns_ attach-agent $W(0) $sink1
  202.   $ns_ connect $tcp1 $sink1
  203.   set ftp1 [new Application/FTP]
  204.   $ftp1 attach-agent $tcp1
  205.   $ns_ at 160 "$ftp1 start"
  206.   for {set i 0} {$i < $opt(nn)} {incr i} {
  207.       $ns_ initial_node_pos $node_($i) 20
  208.    }
  209.   for {set i } {$i < $opt(nn) } {incr i} {
  210.       $ns_ at $opt(stop).0000010 "$node_($i) reset";
  211.   }
  212.   $ns_ at $opt(stop).0000010 "$BS(0) reset";
  213.   $ns_ at $opt(stop).1 "puts "NS EXITING..." ; $ns_ halt"
  214. }
  215. Test/wireless2 instproc run {} {
  216.   $self instvar ns_
  217.   puts "Starting Simulation..."
  218.   $ns_ run 
  219. }
  220.   
  221. Test/wireless3 instproc init {} {
  222.   global opt
  223.   $self instvar ns_
  224.   set opt(nn)             1                      
  225.   set opt(adhocRouting)   DSDV                   
  226.   set opt(cp)             ""                             
  227.   set opt(sc)             ""
  228.   set opt(stop)           250                            
  229.   set num_wired_nodes      2
  230.   set num_bs_nodes         2
  231.   # create simulator instance
  232.   set ns_   [new Simulator]
  233.   # set up for hierarchical routing
  234.   $ns_ node-config -addressType hierarchical
  235.   AddrParams set domain_num_ 3           
  236.   lappend cluster_num 2 1 1              
  237.   AddrParams set cluster_num_ $cluster_num
  238.   lappend eilastlevel 1 1 2 1            
  239.   AddrParams set nodes_num_ $eilastlevel 
  240.   set tracefd  [open $opt(tr) w]
  241.   $ns_ trace-all $tracefd
  242.   set topo   [new Topography]
  243.   $topo load_flatgrid $opt(x) $opt(y)
  244.   # 2 for the FA / the HA
  245.   create-god [expr $opt(nn)  + 2]
  246.   #create wired nodes
  247.   set temp {0.0.0 0.1.0}           
  248.   for {set i 0} {$i < $num_wired_nodes} {incr i} {
  249.       set W($i) [$ns_ node [lindex $temp $i]]
  250.   }
  251.   #Configure for ForeignAgent and HomeAgent nodes
  252.   $ns_ node-config -mobileIP ON 
  253.                  -adhocRouting $opt(adhocRouting) 
  254.                  -llType $opt(ll) 
  255.                  -macType $opt(mac) 
  256.                  -ifqType $opt(ifq) 
  257.                  -ifqLen $opt(ifqlen) 
  258.                  -antType $opt(ant) 
  259.                  -phyType $opt(netif) 
  260.                  -propInstance [new $opt(prop)] 
  261.                  -channel [new $opt(chan)] 
  262.                  -topoInstance $topo 
  263.                  -wiredRouting ON 
  264.                  -agentTrace ON 
  265.                  -routerTrace OFF 
  266.                  -macTrace OFF
  267.   # Create HA and FA
  268.   set HA [$ns_ node 1.0.0]
  269.   set FA [$ns_ node 2.0.0]     
  270.   $HA random-motion 0
  271.   $FA random-motion 0
  272.   # Position (fixed) for base-station nodes (HA & FA).
  273.   $HA set X_ 1.000000000000
  274.   $HA set Y_ 2.000000000000
  275.   $HA set Z_ 0.000000000000
  276.   $FA set X_ 650.000000000000
  277.   $FA set Y_ 600.000000000000
  278.   $FA set Z_ 0.000000000000
  279.   $ns_ node-config -wiredRouting OFF
  280.   set MH [$ns_ node 1.0.2]
  281.   set node_(0) $MH
  282.   set HAaddress [AddrParams addr2id [$HA node-addr]]
  283.   [$MH set regagent_] set home_agent_ $HAaddress
  284.   $MH set Z_ 0.000000000000
  285.   $MH set Y_ 2.000000000000
  286.   $MH set X_ 2.000000000000
  287.   # MH starts to move towards FA
  288.   $ns_ at 100.000000000000 "$MH setdest 640.000000000000 
  289. 610.000000000000 20.000000000000"
  290.   # MH goes back to HA
  291.   $ns_ at 200.000000000000 "$MH setdest 2.000000000000 
  292. 2.000000000000 20.000000000000"
  293.   # create links between wired and BaseStation nodes
  294.   $ns_ duplex-link $W(0) $W(1) 5Mb 2ms DropTail
  295.   $ns_ duplex-link $W(1) $HA 5Mb 2ms DropTail
  296.   $ns_ duplex-link $W(1) $FA 5Mb 2ms DropTail
  297.   $ns_ duplex-link-op $W(0) $W(1) orient down
  298.   $ns_ duplex-link-op $W(1) $HA orient left-down
  299.   $ns_ duplex-link-op $W(1) $FA orient right-down 
  300.   set tcp1 [new Agent/TCP]
  301.   $tcp1 set class_ 2
  302.   set sink1 [new Agent/TCPSink]
  303.   $ns_ attach-agent $W(0) $tcp1
  304.   $ns_ attach-agent $MH $sink1
  305.   $ns_ connect $tcp1 $sink1
  306.   set ftp1 [new Application/FTP]
  307.   $ftp1 attach-agent $tcp1
  308.   $ns_ at 100.0 "$ftp1 start"
  309.   for {set i 0} {$i < $opt(nn)} {incr i} {
  310.     $ns_ initial_node_pos $node_($i) 20
  311.   }
  312.   for {set i 0} {$i < $opt(nn) } {incr i} {
  313.     $ns_ at $opt(stop).0000010 "$node_($i) reset"
  314.   }
  315.   $ns_ at $opt(stop).0000010 "$HA reset"
  316.   $ns_ at $opt(stop).0000010 "$FA reset"
  317.   $ns_ at $opt(stop).1 "puts "NS EXITING..." ; $ns_ halt"
  318. }
  319. Test/wireless3 instproc finish {} {
  320. $self instvar ns_
  321. $ns_ flush-trace
  322. exit 0
  323. }
  324. Test/wireless3 instproc run {} {
  325.   $self instvar ns_
  326.   puts "Starting Simulation..."  
  327.   $ns_ run     
  328. }
  329. proc runtest {arg} {
  330. global quiet
  331. set quiet 0
  332. set b [llength $arg]
  333. if {$b == 1} {
  334. set test $arg
  335. } elseif {$b == 2} {
  336. set test [lindex $arg 0]
  337. if {[lindex $arg 1] == "QUIET"} {
  338. set quiet 1
  339. }
  340. } else {
  341. usage
  342. }
  343. set t [new Test/$test]
  344. $t run
  345. }
  346. global argv arg0
  347. default-options
  348. runtest $argv