Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
TCLスクリプトを使用して、NS2の二重リンクとキューを使用した2ノードTCPベースの通信をシミュレートしました。そして、ノードの通信中に現在のキューサイズにアクセスしたい。では、現在のキュー サイズにアクセスして変数に代入するにはどうすればよいでしょうか。
このコードを使用して、端末で cwnd サイズを取得します。
proc plotWindow {tcpSource outfile} { global ns set now [$ns now] set cwnd [$tcpSource set cwnd_] puts $outfile "$now $cwnd" $ns at [expr $now+0.1] "plotWindow $tcpSource $outfile" } $ns at 0.0 "plotWindow $tcp1 stdout"