example1.tcl

来自「对IEEE 802.11e里的分布式信道接入算法EDCA进行改进」· TCL 代码 · 共 28 行

TCL
28
字号
#example1.tcl#create a simulator objectset ns [new Simulator]#open a file for writing that is used for nam trace dataset nf [open out.nam w]$ns namtrace-all $nf#finish procedure that closes the trace file and starts namproc finish {} {         global ns nf         $ns flush-trace         close $nf         exec nam out.nam &         exit 0}#execute the "finish" procedure after 5.0 seconds of simulation time$ns at 5.0 "finish"#start the simulation$ns run

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?