#!/bin/sh
#
#  Run multiple trials with different bottleneckRates
#  To run type: ./runmany

duration="2400.0"

testscript="mcc.tcl"

bottleneckRate="2.4kb"
window="40.0"
ns $testscript 0 1 0 $bottleneckRate $duration $window "PS"
ns $testscript 0 2 0 $bottleneckRate $duration $window "PS"
ns $testscript 0 3 0 $bottleneckRate $duration $window "PS"
ns $testscript 1 0 0 $bottleneckRate $duration $window "PS"
ns $testscript 1 1 0 $bottleneckRate $duration $window "PS"
ns $testscript 1 2 0 $bottleneckRate $duration $window "PS"
ns $testscript 2 0 0 $bottleneckRate $duration $window "PS"
ns $testscript 2 1 0 $bottleneckRate $duration $window "PS"
ns $testscript 2 2 0 $bottleneckRate $duration $window "PS"
ns $testscript 3 0 0 $bottleneckRate $duration $window "PS"

bottleneckRate="64kb"
window="10.0"
ns $testscript 0 1 0 $bottleneckRate $duration $window "PS"
ns $testscript 0 2 0 $bottleneckRate $duration $window "PS"
ns $testscript 0 3 0 $bottleneckRate $duration $window "PS"
ns $testscript 1 0 0 $bottleneckRate $duration $window "PS"
ns $testscript 1 1 0 $bottleneckRate $duration $window "PS"
ns $testscript 1 2 0 $bottleneckRate $duration $window "PS"
ns $testscript 2 0 0 $bottleneckRate $duration $window "PS"
ns $testscript 2 1 0 $bottleneckRate $duration $window "PS"
ns $testscript 2 2 0 $bottleneckRate $duration $window "PS"
ns $testscript 3 0 0 $bottleneckRate $duration $window "PS"

bottleneckRate="1Mb"
window="5.0"
ns $testscript 0 1 0 $bottleneckRate $duration $window "PS"
ns $testscript 0 2 0 $bottleneckRate $duration $window "PS"
ns $testscript 0 3 0 $bottleneckRate $duration $window "PS"
ns $testscript 1 0 0 $bottleneckRate $duration $window "PS"
ns $testscript 1 1 0 $bottleneckRate $duration $window "PS"
ns $testscript 1 2 0 $bottleneckRate $duration $window "PS"
ns $testscript 2 0 0 $bottleneckRate $duration $window "PS"
ns $testscript 2 1 0 $bottleneckRate $duration $window "PS"
ns $testscript 2 2 0 $bottleneckRate $duration $window "PS"
ns $testscript 3 0 0 $bottleneckRate $duration $window "PS"
