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

📄 wireless-mitf.tcl

📁 ns2下用于802.11的无线传输模型的代码 增加了基于信噪比计算差错率等功能
💻 TCL
字号:
#Copyright (c) 1997 Regents of the University of California.# All rights reserved.## Redistribution and use in source and binary forms, with or without# modification, are permitted provided that the following conditions# are met:# 1. Redistributions of source code must retain the above copyright#    notice, this list of conditions and the following disclaimer.# 2. Redistributions in binary form must reproduce the above copyright#    notice, this list of conditions and the following disclaimer in the#    documentation and/or other materials provided with the distribution.# 3. All advertising materials mentioning features or use of this software#    must display the following acknowledgement:#      This product includes software developed by the Computer Systems#      Engineering Group at Lawrence Berkeley Laboratory.# 4. Neither the name of the University nor of the Laboratory may be used#    to endorse or promote products derived from this software without#    specific prior written permission.## THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF# SUCH DAMAGE.## $Header: /nfs/jade/vint/CVSROOT/ns-2/tcl/ex/wireless-mitf.tcl,v 1.2 2000/08/30 00:10:45 haoboy Exp $## Simple demo script for the new APIs to support multi-interface for # wireless node.## Define options# Please note: # 1. you can still specify "channelType" in node-config right now:# set val(chan)           Channel/WirelessChannel# $ns_ node-config ...#		 -channelType $val(chan)#                  ...# But we recommend you to use node-config in the way shown in this script# for your future simulations.  # # 2. Because the ad-hoc routing agents do not support multiple interfaces#    currently, this script can't generate anything interesting if you config#    the interfaces of node 1 and 2 on different channels#   #     --Xuan Chen, USC/ISI, July 21, 2000#set val(chan)           Channel/WirelessChannel    ;#Channel Typeset val(prop)           Propagation/TwoRayGround   ;# radio-propagation modelset val(netif)          Phy/WirelessPhy            ;# network interface typeset val(mac)            Mac/802_11                 ;# MAC typeset val(ifq)            Queue/DropTail/PriQueue    ;# interface queue typeset val(ll)             LL                         ;# link layer typeset val(ant)            Antenna/OmniAntenna        ;# antenna modelset val(ifqlen)         50                         ;# max packet in ifqset val(nn)             2                          ;# number of mobilenodesset val(rp)             DSDV                       ;# routing protocol#set val(rp)             DSR                       ;# routing protocolset val(x)		500set val(y)		500#Added by Wu Xiuchao for ErrorModel80211# the unit is dBmErrorModel80211 noise1 -94ErrorModel80211 noise2 -91ErrorModel80211 noise55 -87ErrorModel80211 noise11 -82ErrorModel80211 shortpreamble	1ErrorModel80211 LoadBerSnrFile ber_snr.txt#end by Wu XiuchaoAntenna/OmniAntenna set Gt_     1Antenna/OmniAntenna set Gr_     1Phy/WirelessPhy set L_ 1.0Phy/WirelessPhy set freq_ 2.472e9Phy/WirelessPhy set bandwidth_ 11MbPhy/WirelessPhy set Pt_ 0.031622777Phy/WirelessPhy set CPThresh_ 6.0Phy/WirelessPhy set CSThresh_ 5.011872e-12Phy/WirelessPhy set RXThresh_ 6.68786e-11Mac/802_11 set dataRate_ 11MbMac/802_11 set basicRate_ 1MbAgent/TCP set packetSize_ 500# Initialize Global Variablesset ns_		[new Simulator]set tracefd     [open wireless_mitf.tr w]$ns_ trace-all $tracefdset namtrace [open wireless_mitf.nam w]$ns_ namtrace-all-wireless $namtrace $val(x) $val(y)# set up topography objectset topo       [new Topography]$topo load_flatgrid $val(x) $val(y)# Create Godcreate-god $val(nn)# New API to config node: # 1. Create channel (or multiple-channels);# 2. Specify channel in node-config (instead of channelType);# 3. Create nodes for simulations.# Create channel #1 and #2set chan_1_ [new $val(chan)]set chan_2_ [new $val(chan)]# Create node(0) "attached" to channel #1# configure node, please note the change below.$ns_ node-config -adhocRouting $val(rp) \		-llType $val(ll) \		-macType $val(mac) \		-ifqType $val(ifq) \		-ifqLen $val(ifqlen) \		-antType $val(ant) \		-propType $val(prop) \		-phyType $val(netif) \		-topoInstance $topo \		-agentTrace ON \		-routerTrace ON \		-macTrace ON \		-movementTrace OFF \		-channel $chan_1_ set node_(0) [$ns_ node]# node_(1) can also be created with the same configuration, or with a different# channel specified.# Uncomment below two lines will create node_(1) with a different channel.#  $ns_ node-config \#		 -channel $chan_2_ set node_(1) [$ns_ node]$node_(0) random-motion 0$node_(1) random-motion 0for {set i 0} {$i < $val(nn)} {incr i} {	$ns_ initial_node_pos $node_($i) 20}## Provide initial (X,Y, for now Z=0) co-ordinates for mobilenodes#$node_(0) set X_ 5.0$node_(0) set Y_ 2.0$node_(0) set Z_ 0.0$node_(1) set X_ 8.0$node_(1) set Y_ 5.0$node_(1) set Z_ 0.0## Now produce some simple node movements# Node_(1) starts to move towards node_(0)#$ns_ at 3.0 "$node_(1) setdest 50.0 40.0 25.0"$ns_ at 3.0 "$node_(0) setdest 48.0 38.0 5.0"# Node_(1) then starts to move away from node_(0)$ns_ at 20.0 "$node_(1) setdest 490.0 480.0 30.0" # Setup traffic flow between nodes# TCP connections between node_(0) and node_(1)set tcp [new Agent/TCP]$tcp set class_ 2set sink [new Agent/TCPSink]$ns_ attach-agent $node_(0) $tcp$ns_ attach-agent $node_(1) $sink$ns_ connect $tcp $sinkset ftp [new Application/FTP]$ftp attach-agent $tcp$ns_ at 3.0 "$ftp start" ## Tell nodes when the simulation ends#for {set i 0} {$i < $val(nn) } {incr i} {    $ns_ at 30.0 "$node_($i) reset";}$ns_ at 30.0 "stop"$ns_ at 30.01 "puts \"NS EXITING...\" ; $ns_ halt"proc stop {} {    global ns_ tracefd    $ns_ flush-trace    close $tracefd}puts "Starting Simulation..."$ns_ run

⌨️ 快捷键说明

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