example3.tcl
来自「NS-2.28的802.11e协议扩展源代码」· TCL 代码 · 共 58 行
TCL
58 行
#Create a simulator objectset ns [new Simulator]#Tell the simulator to use dynamic routing$ns rtproto DV#Open the nam trace fileset nf [open out.nam w]$ns namtrace-all $nf#Define a 'finish' procedureproc finish {} { global ns nf $ns flush-trace #Close the trace file close $nf #Execute nam on the trace file exec nam out.nam & exit 0}#Create seven nodesfor {set i 0} {$i < 7} {incr i} { set n($i) [$ns node]}#Create links between the nodesfor {set i 0} {$i < 7} {incr i} { $ns duplex-link $n($i) $n([expr ($i+1)%7]) 1Mb 10ms DropTail}#Create a CBR agent and attach it to node n(0)set cbr0 [new Agent/CBR]$ns attach-agent $n(0) $cbr0$cbr0 set packetSize_ 500$cbr0 set interval_ 0.005#Create a Null agent (a traffic sink) and attach it to node n(3)set null0 [new Agent/Null]$ns attach-agent $n(3) $null0#Connect the traffic source with the traffic sink$ns connect $cbr0 $null0 #Schedule events for the CBR agent and the network dynamics$ns at 0.5 "$cbr0 start"$ns rtmodel-at 1.0 down $n(1) $n(2)$ns rtmodel-at 2.0 up $n(1) $n(2)$ns at 4.5 "$cbr0 stop"#Call the finish procedure after 5 seconds of simulation time$ns at 5.0 "finish"#Run the simulation$ns run
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?