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

通讯编程

开发平台:

Visual C++

  1. #
  2. # Copyright (C) 1997 by USC/ISI
  3. # All rights reserved.                                            
  4. #                                                                
  5. # Redistribution and use in source and binary forms are permitted
  6. # provided that the above copyright notice and this paragraph are
  7. # duplicated in all such forms and that any documentation, advertising
  8. # materials, and other materials related to such distribution and use
  9. # acknowledge that the software was developed by the University of
  10. # Southern California, Information Sciences Institute.  The name of the
  11. # University may not be used to endorse or promote products derived from
  12. # this software without specific prior written permission.
  13. # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
  14. # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  15. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  16. #
  17. # Maintainer: Kannan Varadhan <kannan@isi.edu>
  18. #
  19. set ns [new Simulator]
  20. $ns use-scheduler Heap
  21. set n0 [$ns node]
  22. set n1 [$ns node]
  23. set n2 [$ns node]
  24. set n3 [$ns node]
  25. $ns color 1 red
  26. $ns color 2 white
  27. set f [open out.tr w]
  28. $ns trace-all $f
  29. set nf [open out.nam w]
  30. $ns namtrace-all $nf
  31. $ns duplex-link $n0 $n2 5Mb 2ms DropTail
  32. $ns duplex-link $n1 $n2 5Mb 2ms DropTail
  33. $ns duplex-link $n2 $n3 1.5Mb 10ms DropTail
  34. $ns duplex-link-op $n0 $n2 orient right-up
  35. $ns duplex-link-op $n1 $n2 orient right-down
  36. $ns duplex-link-op $n2 $n3 orient right
  37. $ns duplex-link-op $n2 $n3 queuePos 0.5
  38. set udp0 [new Agent/UDP]
  39. $ns attach-agent $n0 $udp0
  40. set cbr0 [new Application/Traffic/CBR]
  41. $cbr0 attach-agent $udp0
  42. set udp1 [new Agent/UDP]
  43. $ns attach-agent $n3 $udp1
  44. $udp1 set class_ 1
  45. set cbr1 [new Application/Traffic/CBR]
  46. $cbr1 attach-agent $udp1
  47. set null0 [new Agent/Null]
  48. $ns attach-agent $n3 $null0
  49. set null1 [new Agent/Null]
  50. $ns attach-agent $n1 $null1
  51. $ns connect $udp0 $null0
  52. $ns connect $udp1 $null1
  53. $ns at 1.0 "$cbr0 start"
  54. $ns at 1.1 "$cbr1 start"
  55. set tcp [new Agent/TCP]
  56. $tcp set class_ 2
  57. set sink [new Agent/TCPSink]
  58. $ns attach-agent $n0 $tcp
  59. $ns attach-agent $n3 $sink
  60. $ns connect $tcp $sink
  61. set ftp [new Application/FTP]
  62. $ftp attach-agent $tcp
  63. $ns at 1.2 "$ftp start"
  64. puts [$cbr0 set packetSize_]
  65. puts [$cbr0 set interval_]
  66. $ns at 3.0 "finish"
  67. proc finish {} {
  68. global ns f nf
  69. $ns flush-trace
  70. close $f
  71. close $nf
  72. puts "running nam..."
  73. exec nam out.nam &
  74. exit 0
  75. }
  76. $ns run