delay-compute.sh

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

SH
39
字号
############             Lamia ROMDHANI    ###### This script is used to compute the latency of each class in all the nodes and collect the#result in an output file. In our case we will get three output file because we have three#classes.#The user can modify this script if he uses another topology.# we run the latency-dist.sh script following this one to compute the latency distribution of#each class category.  ##############      Lamia    #################################!/bin/csh -fset name_file = audio-video-Bt.tclns ns  main_AEDCF_EDCF.tcl  $name_file 15 5000 80 1wlan-goodput $name_file 0.5 set flow = 0set max_flows = 14set increment1 = 15set increment2 = 30while ( $flow <= $max_flows ) wlan-lat  $name_file $flow AGTwlan-lat  $name_file $increment1 AGTwlan-lat $name_file $increment2 AGT	 	 @ flow = $flow  +  1	@ increment1 = $increment1 + 1	@ increment2 = $increment2 + 1end

⌨️ 快捷键说明

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