example1b.tcl

来自「ns-2的文件包。多多下载」· TCL 代码 · 共 51 行

TCL
51
字号
#Create a simulator objectset ns [new Simulator]#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 two nodesset n0 [$ns node]set n1 [$ns node]#Create a duplex link between the nodes$ns duplex-link $n0 $n1 1Mb 10ms DropTail#Create a UDP agent and attach it to node n0set udp0 [new Agent/UDP]$ns attach-agent $n0 $udp0# Create a CBR traffic source and attach it to udp0set cbr0 [new Application/Traffic/CBR]$cbr0 set packetSize_ 500$cbr0 set interval_ 0.005$cbr0 attach-agent $udp0#Create a Null agent (a traffic sink) and attach it to node n1set null0 [new Agent/Null]$ns attach-agent $n1 $null0#Connect the traffic source with the traffic sink$ns connect $udp0 $null0  #Schedule events for the CBR agent$ns at 0.5 "$cbr0 start"$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 + -
显示快捷键?