📄 test-suite-smac-multihop.tcl
字号:
# Copyright (c) 2000 by the University of Southern California# All rights reserved.## Permission to use, copy, modify, and distribute this software and its# documentation in source and binary forms for non-commercial purposes# and without fee is hereby granted, provided that the above copyright# notice appear in all copies and that both the copyright notice and# this permission notice appear in supporting documentation. 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.## THE UNIVERSITY OF SOUTHERN CALIFORNIA makes no representations about# the suitability of this software for any purpose. 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.## Other copyrights might apply to parts of this software and are so# noted when applicable.## Yuan Li(USC/ISI)# ### run SMAC in a 10-nodes multihop network with DSR routingset opt(chan) Channel/WirelessChannelset opt(prop) Propagation/TwoRayGroundset opt(netif) Phy/WirelessPhyset opt(mac) Mac/SMACset opt(ifq) Queue/DropTail/PriQueueset opt(ll) LLset opt(ant) Antenna/OmniAntennaset opt(x) 2000 ;# X dimension of the topographyset opt(y) 2000 ;# Y dimension of the topographyset opt(ifqlen) 50 ;# max packet in ifqset opt(seed) 0.0set opt(tr) temp.rands ;# trace fileset opt(adhocRouting) DSRset opt(filters) GradientFilterset opt(nn) 10 ;# how many nodes are simulatedset opt(stop) 1000.0 ;# simulation timeset opt(syncFlag) 1 ;# is set to 1 when SMAC uses sleep-wakeup cycleset opt(selfConfigFlag) 1 ;# is set to 0 when SMAC uses user configurable schedule start timeset val(initialenergy) 100set val(radiomodel) Radio/Simple ;# generic radio hardwareset val(receivepower) .5 ;# Receiving Powerset val(transmitpower) .5 ;# Transmitting Powerset val(idlepower) .05 ;# Idle Power # =====================================================================# Other default settings LL set mindelay_ 50usLL set delay_ 25usLL set bandwidth_ 0 ; Agent/Null set sport_ 0Agent/Null set dport_ 0 Agent/CBR set sport_ 0Agent/CBR set dport_ 0 Agent/TCPSink set sport_ 0Agent/TCPSink set dport_ 0 Agent/TCP set sport_ 0Agent/TCP set dport_ 0Agent/TCP set packetSize_ 512 Queue/DropTail/PriQueue set Prefer_Routing_Protocols 1 # unity gain, omni-directional antennas# set up the antennas to be centered in the node and 1.5 meters above itAntenna/OmniAntenna set X_ 0Antenna/OmniAntenna set Y_ 0Antenna/OmniAntenna set Z_ 1.5Antenna/OmniAntenna set Gt_ 1.0Antenna/OmniAntenna set Gr_ 1.0 # Initialize the SharedMedia interface with parameters to make# it work like the 914MHz Lucent WaveLAN DSSS radio interfacePhy/WirelessPhy set CPThresh_ 10.0Phy/WirelessPhy set CSThresh_ 1.559e-11Phy/WirelessPhy set RXThresh_ 3.652e-10Phy/WirelessPhy set Rb_ 2*1e6Phy/WirelessPhy set Pt_ 0.2818Phy/WirelessPhy set freq_ 914e+6Phy/WirelessPhy set L_ 1.0 # SMAC settingsMac/SMAC set syncFlag_ 1 ; # sleep wakeup cyclesMac/SMAC set SMAC_DUTY_CYCLE 10ErrorModel set rate_ 0.1 proc UniformErrorProc {} { global opt set errObj [new ErrorModel] $errObj unit packet return $errObj} Class TestSuiteClass Test/smac-multihop -superclass TestSuiteproc usage {} { global argv0 puts stderr "usage: ns $argv0 <tests>" puts "Valid tests: smac-multihop"}Test/smac-multihop instproc init {} { global opt # create simulator instance $self instvar ns_ set ns_ [new Simulator] # set wireless topography object $self instvar wtopo set wtopo [new Topography] # create trace object for ns $self instvar tracefd set tracefd [open $opt(tr) w] $ns_ trace-all $tracefd # define topology $wtopo load_flatgrid $opt(x) $opt(y) ## Create God# $self instvar god_ set god_ [create-god $opt(nn)] ## define how node should be created# # node setting $ns_ node-config -adhocRouting $opt(adhocRouting) \ -llType $opt(ll) \ -macType $opt(mac) \ -ifqType $opt(ifq) \ -ifqLen $opt(ifqlen) \ -antType $opt(ant) \ -propType $opt(prop) \ -phyType $opt(netif) \ -channelType $opt(chan) \ -topoInstance $wtopo \ -diffusionFilter $opt(filters) \ -agentTrace ON \ -routerTrace ON \ -macTrace ON # -energyModel "EnergyModel" \ # -initialEnergy $val(initialenergy) \ # -rxPower $val(receivepower) \ # -txPower $val(transmitpower) \ # -idlePower $val(idlepower) ## Create the specified number of nodes [$opt(nn)] and "attach" them# to the channel. for {set i 0} {$i < $opt(nn) } {incr i} { set node_($i) [$ns_ node $i] $node_($i) random-motion 0 ;# disable random motion }## Create DSR Agent# rt_rq_max_period indicates maximum time between rt reqs# rt_rq_period indicates length of one backoff period# send_timeout indicates how long a packet can live in sendbuffor {set i 0} {$i < $opt(nn)} {incr i} { set dsr($i) [new Agent/DSRAgent] $dsr($i) node $node_($i) $dsr($i) rt_rq_max_period 100 $dsr($i) rt_rq_period 30 $dsr($i) send_timeout 300}## Create the topology# $node_(0) set Z_ 0.0$node_(0) set Y_ 50.0$node_(0) set X_ 100.0$node_(1) set Z_ 0.0$node_(1) set Y_ 250.0$node_(1) set X_ 100.0$node_(2) set Z_ 0.0$node_(2) set Y_ 450.0$node_(2) set X_ 100.0$node_(3) set Z_ 0.0$node_(3) set Y_ 650.0$node_(3) set X_ 100.0$node_(4) set Z_ 0.0$node_(4) set Y_ 850.0$node_(4) set X_ 100.0$node_(5) set Z_ 0.0$node_(5) set Y_ 1050.0$node_(5) set X_ 100.0$node_(6) set Z_ 0.0$node_(6) set Y_ 1250.0$node_(6) set X_ 100.0$node_(7) set Z_ 0.0$node_(7) set Y_ 1450.0$node_(7) set X_ 100.0$node_(8) set Z_ 0.0$node_(8) set Y_ 1650.0$node_(8) set X_ 100.0$node_(9) set Z_ 0.0$node_(9) set Y_ 1850.0$node_(9) set X_ 100.0 ## Define traffic model#puts "Loading connection pattern..." set udp_(0) [new Agent/UDP]$ns_ attach-agent $node_(0) $udp_(0)set null_(0) [new Agent/Null]$ns_ attach-agent $node_(9) $null_(0)set cbr_(0) [new Application/Traffic/CBR]$cbr_(0) set packetSize_ 50# Interval is measured in seconds$cbr_(0) set interval_ 200$cbr_(0) set random_ 1$cbr_(0) set maxpkts_ 10000$cbr_(0) set fid_ 0$cbr_(0) attach-agent $udp_(0)$ns_ connect $udp_(0) $null_(0)$ns_ at 100.0 "$cbr_(0) start" ## Tell nodes when the simulation ends#for {set i 0} {$i < $opt(nn) } {incr i} { $ns_ at $opt(stop).000000001 "$node_($i) reset";} $ns_ at $opt(stop).000000001 "puts \"NS EXITING...\" ; $ns_ halt"}Test/smac-multihop instproc run {} { $self instvar ns_ puts "Starting Simulation..." $ns_ run}proc runtest {arg} { set b [llength $arg] if {$b == 1} { set test $arg } else { usage } set test "smac-multihop" set t [new Test/$test] $t run} runtest $argv
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -