⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 srm-chain-session.tcl

📁 CBRP协议(移动adhoc中基于分簇的路由协议)ns2下的源码
💻 TCL
字号:
## Copyright (C) 1997 by USC/ISI# All rights reserved.                                            #                                                                # Redistribution and use in source and binary forms are permitted# provided that the above copyright notice and this paragraph are# duplicated in all such forms and that any documentation, advertising# materials, and other materials related to such distribution and use# acknowledge that the software was developed by the University of# Southern California, Information Sciences Institute.  The name of the# University may not be used to endorse or promote products derived from# this software without specific prior written permission.# # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED# WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.# ## Maintainer: Kannan Varadhan <kannan@isi.edu># Version Date: $Date: 1998/01/13 15:06:12 $## @(#) $Header: /usr/cvs/ns/ns-src/tcl/ex/srm-chain-session.tcl,v 1.1.1.1 1998/01/13 15:06:12 root Exp $ (USC/ISI)#if [string match {*.tcl} $argv0] {    set prog [string range $argv0 0 [expr [string length $argv0] - 5]]} else {    set prog $argv0}if {[llength $argv] > 0} {    set srmSimType [lindex $argv 0]} else {    set srmSimType Deterministic}source ../mcast/srm-nam.tcl		;# to separate control messages.#source ../mcast/srm-debug.tcl		;# to trace delay compute fcn. details.set ns [new SessionSim]$ns trace-all [open out.tr w]# make the nodesset nmax 5for {set i 0} {$i <= $nmax} {incr i} {    set n($i) [$ns node]}# now the linksset chainMax [expr $nmax - 1]set j 0for {set i 1} {$i <= $chainMax} {incr i} {    $ns duplex-link $n($i) $n($j) 1.5Mb 10ms DropTail    set j $i}$ns duplex-link $n([expr $nmax - 2]) $n($nmax) 1.5Mb 10ms DropTail#$ns queue-limit $n(0) $n(1) 2	;# q-limit is 1 more than max #packets in q.#$ns queue-limit $n(1) $n(0) 2set group 0x8000# now the multicast, and the agentsset srmStats [open srmStatsSes.tr w]set srmEvents [open srmEventsSes.tr w]set fid 0for {set i 0} {$i <= 5} {incr i} {    set srm($i) [new Agent/SRM/$srmSimType]    $srm($i) set dst_ $group    $srm($i) set fid_ [incr fid]    $srm($i) trace $srmEvents    $srm($i) log $srmStats    $ns at 1.0 "$srm($i) start"    $ns attach-agent $n($i) $srm($i)    set sessionhelper($i) [$ns create-session $n($i) $srm($i)]}# Attach a data source to srm(1)set packetSize 800set s [new Agent/CBR]$s set interval_ 0.04$s set packetSize_ $packetSize$srm(0) traffic-source $s$srm(0) set packetSize_ $packetSize$s set fid_ 0$ns at 3.5 "$srm(0) start-source"#$ns rtmodel-at 3.519 down $n(0) $n(1)	;# this ought to drop exactly one#$ns rtmodel-at 3.521 up   $n(0) $n(1)	;# data packet?set loss_module [new SRMErrorModel]$loss_module drop-packet 2 10 1$loss_module drop-target [$ns set nullAgent_]$ns at 1.25 "$sessionhelper(0) insert-depended-loss $loss_module $srm(1) $srm(0) $group"proc distDump {} {    global srm    foreach i [array names srm] {	puts "distances [$srm($i) distances?]"    }    puts "---"}$ns at 3.3 "distDump"proc finish src {    $src stop    global prog ns srmStats srmEvents srm    $ns flush-trace		;# NB>  Did not really close out.tr...:-)    close $srmStats    close $srmEvents    set avg_info [open ses-avg-info w]    puts $avg_info "avg:\trep-delay\treq-delay\trep-dup\t\treq-dup"    foreach index [lsort -integer [array name srm]] {	set tmplist [$srm($index) array get stats_]	puts $avg_info "$index\t[format %7.4f [lindex $tmplist 1]]\t\t[format %7.4f [lindex $tmplist 5]]\t\t[format %7.4f [lindex $tmplist 9]]\t\t[format %7.4f [lindex $tmplist 13]]"    }    flush $avg_info    close $avg_info    exit 0}$ns at 4.0 "finish $s"$ns run 

⌨️ 快捷键说明

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