ns2的第一个tcl脚本
set ns [new Simulator]
set tracef [open example1.tr w]
$ns trace-all $tracef
set namtf [open example1.nam w]
$ns namtrace-all $namtf
proc finish {} {//括號之間要有空格
global ns tracef namtf
$ns flush-trace
close $tracef
close $namtf
exec nam example1.nam&
exit 0
}
set n0 [$ns node]//中括號前要有空格
set n1 [$ns node]
$ns duplex-link $n0 $n1 1Mb 10ms DropTail
set udp0 [new Agent/UDP]
$ns attach-agent $n0 $udp0
set cbr0 [new Application/Traffic/CBR]
$cbr0 set packetSize_ 500//下劃線與數(shù)字之間要有空格,500是參數(shù)
$cbr0 set interval_ 0.005
$cbr0 attach-agent $udp0
set null0 [new Agent/Null]
$ns attach-agent $n1 $null0
$ns connect $udp0 $null0
$ns at 0.5 "$cbr0 start"//引號前要有空格
$ns at 4.5 "$cbr0 stop"
$ns at 5.0"finish"
$ns run
?
?
總結:不同部分之間基本都要用空格隔開
?
這段話涉及了nam文件的本質(zhì),nam的本質(zhì)。tr文件與nam文件的區(qū)別。
轉載于:https://www.cnblogs.com/fastchargingpikachu/p/11176398.html
總結
以上是生活随笔為你收集整理的ns2的第一个tcl脚本的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 说说报表工具的无编码定制能力
- 下一篇: 开博序