• Tidak ada hasil yang ditemukan

Simulasi Dan Analisis Kinerja Zigbee Pada Jaringan Sensor Wireless

N/A
N/A
Protected

Academic year: 2017

Membagikan "Simulasi Dan Analisis Kinerja Zigbee Pada Jaringan Sensor Wireless"

Copied!
144
0
0

Teks penuh

(1)

Lampiran 1

F ile

TCL

Skema Simulasi A dengan

receive rate

0,95

# Generate Parameters

set val(chan) Channel/WirelessChannel ;# channel type

set val(prop) Propagation/Shadowing ;#radio-propagation model set val(netif) Phy/WirelessPhy/802_15_4 ;# network interface type set val(mac) Mac/802_15_4 # MAC type

set val(ifq) Queue/DropTail/PriQueue ;# interface queue type set val(ll) LL ;# link layer type set val(ant) Antenna/OmniAntenna ;# antenna model set val(ifqlen) 10 ;# max packet in ifq set val(nn) 11 ;# number of mobilenodes

set val(rp) AODV ;# protocol type

set val(x) 3000 ;#X dimension of topography set val(y) 3000 ;#Y dimension of topography set val(stop) 120 ;# simulation period

Phy/WirelessPhy set RXThresh_ 1.87848e-11 ;# -r 0.95

# Header

set ns [new Simulator] set tracefd [open trace-star.tr w] set namtrace [open nam-star.nam w] $ns trace-all $tracefd

$ns namtrace-all-wireless $namtrace $val(x) $val(y)

# Set up topography object set topo [new Topography] $topo load_flatgrid $val(x) $val(y) set god_ [create-god $val(nn)]

# Configure the node

$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) \

-channel [new $val(chan)] \ -topoInstance $topo \ -agentTrace ON \

for {set i 0} {$i < $val(nn) } { incr i } { set mnode_($i) [$ns node]

}

(2)

$mnode_(0) set Z_ 0.0

$mnode_(0) label "PAN Coord"

$mnode_(1) set X_ 1350.0 $mnode_(1) set Y_ 1200.0 $mnode_(1) set Z_ 0.0

$mnode_(2) set X_ 1050.0 $mnode_(2) set Y_ 1459.8 $mnode_(2) set Z_ 0.0

$mnode_(3) set X_ 1500.0 $mnode_(3) set Y_ 864.59 $mnode_(3) set Z_ 0.0

$mnode_(4) set X_ 1600.0 $mnode_(4) set Y_ 1647.21 $mnode_(4) set Z_ 0.0

$mnode_(5) set X_ 800.0 $mnode_(5) set Y_ 565.57 $mnode_(5) set Z_ 0.0

$mnode_(6) set X_ 300.0 $mnode_(6) set Y_ 1200.0 $mnode_(6) set Z_ 0.0

$mnode_(7) set X_ 1900.0 $mnode_(7) set Y_ 1982.62 $mnode_(7) set Z_ 0.0

$mnode_(8) set X_ 1200.0 $mnode_(8) set Y_ 0.0 $mnode_(8) set Z_ 0.0

$mnode_(9) set X_ 400.0 $mnode_(9) set Y_ 112.57 $mnode_(9) set Z_ 0.0

$mnode_(10) set X_ 1200.0 $mnode_(10) set Y_ 2700.0 $mnode_(10) set Z_ 0.0

for {set i 0} {$i < $val(nn)} { incr i } { $ns initial_node_pos $mnode_($i) 20 }

(3)

$ns attach-agent $mnode_(2) $udp1 set sink1 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink1 $ns connect $udp1 $sink1

$udp1 set fid_ 1

set udp2 [new Agent/UDP]

$ns attach-agent $mnode_(4) $udp2 set sink2 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink2 $ns connect $udp2 $sink2

$udp2 set fid_ 2

set udp3 [new Agent/UDP]

$ns attach-agent $mnode_(6) $udp3 set sink3 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink3 $ns connect $udp3 $sink3

$udp3 set fid_ 3

set udp4 [new Agent/UDP]

$ns attach-agent $mnode_(8) $udp4 set sink4 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink4 $ns connect $udp4 $sink4

$udp4 set fid_ 4

set udp5 [new Agent/UDP]

$ns attach-agent $mnode_(10) $udp5 set sink5 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink5 $ns connect $udp5 $sink5

$udp5 set fid_ 5

#Setup a TCP connection set tcp1 [new Agent/TCP]

$ns attach-agent $mnode_(1) $tcp1 set sink6 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink6 $ns connect $tcp1 $sink6

$tcp1 set fid_ 6 $sink6 set fid_ 6 $tcp1 set packetSize_ 24

set tcp2 [new Agent/TCP]

(4)

$tcp2 set fid_ 7 $sink7 set fid_ 7 $tcp2 set packetSize_ 24

set tcp3 [new Agent/TCP]

$ns attach-agent $mnode_(5) $tcp3 set sink8 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink8 $ns connect $tcp3 $sink8

$tcp3 set fid_ 8 $sink8 set fid_ 8 $tcp3 set packetSize_ 24

set tcp4 [new Agent/TCP]

$ns attach-agent $mnode_(7) $tcp4 set sink9 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink9 $ns connect $tcp4 $sink9

$tcp4 set fid_ 9 $sink9 set fid_ 9 $tcp4 set packetSize_ 24

set tcp5 [new Agent/TCP]

$ns attach-agent $mnode_(9) $tcp5 set sink10 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink10 $ns connect $tcp5 $sink10

$tcp5 set fid_ 10 $sink10 set fid_ 10 $tcp5 set packetSize_ 24

#Setup a CBR over UDP connection set cbr1 [new Application/Traffic/CBR] $cbr1 attach-agent $udp1

$cbr1 set type_ CBR $cbr1 set packet_size_ 24 $cbr1 set rate_ 448Kb $cbr1 set interval_ 0.5

set cbr2 [new Application/Traffic/CBR] $cbr2 attach-agent $udp2

$cbr2 set type_ CBR $cbr2 set packet_size_ 24 $cbr2 set rate_ 448Kb $cbr2 set interval_ 0.5

set cbr3 [new Application/Traffic/CBR] $cbr3 attach-agent $udp3

(5)

$cbr3 set packet_size_ 24 $cbr3 set rate_ 448Kb $cbr3 set interval_ 0.5

set cbr4 [new Application/Traffic/CBR] $cbr4 attach-agent $udp4

$cbr4 set type_ CBR $cbr4 set packet_size_ 24 $cbr4 set rate_ 448Kb $cbr4 set interval_ 0.5

set cbr5 [new Application/Traffic/CBR] $cbr5 attach-agent $udp5

$cbr5 set type_ CBR $cbr5 set packet_size_ 24 $cbr5 set rate_ 448Kb $cbr5 set interval_ 0.5

#Setup a FTP over TCP connection set ftp1 [new Application/FTP] $ftp1 attach-agent $tcp1 set ftp2 [new Application/FTP] $ftp2 attach-agent $tcp2 set ftp3 [new Application/FTP] $ftp3 attach-agent $tcp3 set ftp4 [new Application/FTP] $ftp4 attach-agent $tcp4 set ftp5 [new Application/FTP] $ftp5 attach-agent $tcp5

(6)

# Telling nodes when the simulation ends for {set i 0} {$i < $val(nn) } { incr i } { $ns at $val(stop) "$mnode_($i) reset;" }

# Ending nam and the simulation

$ns at $val(stop) "$ns nam-end-wireless $val(stop)" $ns at $val(stop) "stop"

$ns at [expr $val(stop) + 0.01] "puts \"end simulation\"; $ns halt" proc stop {} {

global ns tracefd namtrace $ns flush-trace

close $tracefd close $namtrace

exec nam nam-star.nam &

exec awk -f filter.awk trace-star.tr & }

(7)

Lampiran 2

F ile

TCL

Skema Simulasi A dengan

receive rate

0,9

# Generate Parameters

set val(chan) Channel/WirelessChannel ;# channel type

set val(prop) Propagation/Shadowing ;#radio-propagation model set val(netif) Phy/WirelessPhy/802_15_4 ;# network interface type set val(mac) Mac/802_15_4 ;# MAC type

set val(ifq) Queue/DropTail/PriQueue ;# interface queue type set val(ll) LL ;# link layer type set val(ant) Antenna/OmniAntenna ;# antenna model set val(ifqlen) 10 ;# max packet in ifq set val(nn) 11 ;# number of mobilenodes

set val(rp) AODV ;# protocol type

set val(x) 3000 ;#X dimension of topography set val(y) 3000 ;#Y dimension of topography set val(stop) 120 ;# simulation period

Phy/WirelessPhy set RXThresh_ 2.62499e-11 ;# -r 0.9

# Header

set ns [new Simulator] set tracefd [open trace-star.tr w] set namtrace [open nam-star.nam w] $ns trace-all $tracefd

$ns namtrace-all-wireless $namtrace $val(x) $val(y)

# Set up topography object set topo [new Topography] $topo load_flatgrid $val(x) $val(y) set god_ [create-god $val(nn)]

# Configure the node

$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) \

-channel [new $val(chan)] \ -topoInstance $topo \ -agentTrace ON \

for {set i 0} {$i < $val(nn) } { incr i } { set mnode_($i) [$ns node]

}

(8)

$mnode_(0) set Z_ 0.0

$mnode_(0) label "PAN Coord"

$mnode_(1) set X_ 1350.0 $mnode_(1) set Y_ 1200.0 $mnode_(1) set Z_ 0.0

$mnode_(2) set X_ 1050.0 $mnode_(2) set Y_ 1459.8 $mnode_(2) set Z_ 0.0

$mnode_(3) set X_ 1500.0 $mnode_(3) set Y_ 864.59 $mnode_(3) set Z_ 0.0

$mnode_(4) set X_ 1600.0 $mnode_(4) set Y_ 1647.21 $mnode_(4) set Z_ 0.0

$mnode_(5) set X_ 800.0 $mnode_(5) set Y_ 565.57 $mnode_(5) set Z_ 0.0

$mnode_(6) set X_ 300.0 $mnode_(6) set Y_ 1200.0 $mnode_(6) set Z_ 0.0

$mnode_(7) set X_ 1900.0 $mnode_(7) set Y_ 1982.62 $mnode_(7) set Z_ 0.0

$mnode_(8) set X_ 1200.0 $mnode_(8) set Y_ 0.0 $mnode_(8) set Z_ 0.0

$mnode_(9) set X_ 400.0 $mnode_(9) set Y_ 112.57 $mnode_(9) set Z_ 0.0

$mnode_(10) set X_ 1200.0 $mnode_(10) set Y_ 2700.0 $mnode_(10) set Z_ 0.0

for {set i 0} {$i < $val(nn)} { incr i } { $ns initial_node_pos $mnode_($i) 20 }

(9)

$ns attach-agent $mnode_(2) $udp1 set sink1 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink1 $ns connect $udp1 $sink1

$udp1 set fid_ 1

set udp2 [new Agent/UDP]

$ns attach-agent $mnode_(4) $udp2 set sink2 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink2 $ns connect $udp2 $sink2

$udp2 set fid_ 2

set udp3 [new Agent/UDP]

$ns attach-agent $mnode_(6) $udp3 set sink3 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink3 $ns connect $udp3 $sink3

$udp3 set fid_ 3

set udp4 [new Agent/UDP]

$ns attach-agent $mnode_(8) $udp4 set sink4 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink4 $ns connect $udp4 $sink4

$udp4 set fid_ 4

set udp5 [new Agent/UDP]

$ns attach-agent $mnode_(10) $udp5 set sink5 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink5 $ns connect $udp5 $sink5

$udp5 set fid_ 5

#Setup a TCP connection set tcp1 [new Agent/TCP]

$ns attach-agent $mnode_(1) $tcp1 set sink6 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink6 $ns connect $tcp1 $sink6

$tcp1 set fid_ 6 $sink6 set fid_ 6 $tcp1 set packetSize_ 24

set tcp2 [new Agent/TCP]

(10)

$tcp2 set fid_ 7 $sink7 set fid_ 7 $tcp2 set packetSize_ 24

set tcp3 [new Agent/TCP]

$ns attach-agent $mnode_(5) $tcp3 set sink8 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink8 $ns connect $tcp3 $sink8

$tcp3 set fid_ 8 $sink8 set fid_ 8 $tcp3 set packetSize_ 24

set tcp4 [new Agent/TCP]

$ns attach-agent $mnode_(7) $tcp4 set sink9 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink9 $ns connect $tcp4 $sink9

$tcp4 set fid_ 9 $sink9 set fid_ 9 $tcp4 set packetSize_ 24

set tcp5 [new Agent/TCP]

$ns attach-agent $mnode_(9) $tcp5 set sink10 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink10 $ns connect $tcp5 $sink10

$tcp5 set fid_ 10 $sink10 set fid_ 10 $tcp5 set packetSize_ 24

#Setup a CBR over UDP connection set cbr1 [new Application/Traffic/CBR] $cbr1 attach-agent $udp1

$cbr1 set type_ CBR $cbr1 set packet_size_ 24 $cbr1 set rate_ 448Kb $cbr1 set interval_ 0.5

set cbr2 [new Application/Traffic/CBR] $cbr2 attach-agent $udp2

$cbr2 set type_ CBR $cbr2 set packet_size_ 24 $cbr2 set rate_ 448Kb $cbr2 set interval_ 0.5

set cbr3 [new Application/Traffic/CBR] $cbr3 attach-agent $udp3

(11)

$cbr3 set packet_size_ 24 $cbr3 set rate_ 448Kb $cbr3 set interval_ 0.5

set cbr4 [new Application/Traffic/CBR] $cbr4 attach-agent $udp4

$cbr4 set type_ CBR $cbr4 set packet_size_ 24 $cbr4 set rate_ 448Kb $cbr4 set interval_ 0.5

set cbr5 [new Application/Traffic/CBR] $cbr5 attach-agent $udp5

$cbr5 set type_ CBR $cbr5 set packet_size_ 24 $cbr5 set rate_ 448Kb $cbr5 set interval_ 0.5

#Setup a FTP over TCP connection set ftp1 [new Application/FTP] $ftp1 attach-agent $tcp1 set ftp2 [new Application/FTP] $ftp2 attach-agent $tcp2 set ftp3 [new Application/FTP] $ftp3 attach-agent $tcp3 set ftp4 [new Application/FTP] $ftp4 attach-agent $tcp4 set ftp5 [new Application/FTP] $ftp5 attach-agent $tcp5

(12)

$ns at 111.0 "$ftp5 start" $ns at 111.615 "$ftp5 stop"

# Telling nodes when the simulation ends for {set i 0} {$i < $val(nn) } { incr i } { $ns at $val(stop) "$mnode_($i) reset;" }

# Ending nam and the simulation

$ns at $val(stop) "$ns nam-end-wireless $val(stop)" $ns at $val(stop) "stop"

$ns at [expr $val(stop) + 0.01] "puts \"end simulation\"; $ns halt" proc stop {} {

global ns tracefd namtrace $ns flush-trace

close $tracefd close $namtrace

exec nam nam-star.nam &

exec awk -f filter.awk trace-star.tr & }

(13)

Lampiran 3

F ile TCL

Skema Simulasi A dengan

receive rate

0,8

# Generate Parameters

set val(chan) Channel/WirelessChannel ;# channel type

set val(prop) Propagation/Shadowing ;#radio-propagation model set val(netif) Phy/WirelessPhy/802_15_4 ;# network interface type set val(mac) Mac/802_15_4 ;# MAC type

set val(ifq) Queue/DropTail/PriQueue ;# interface queue type set val(ll) LL ;# link layer type set val(ant) Antenna/OmniAntenna ;# antenna model set val(ifqlen) 10 ;# max packet in ifq set val(nn) 11 ;# number of mobilenodes

set val(rp) AODV ;# protocol type

set val(x) 3000 ;#X dimension of topography set val(y) 3000 ;#Y dimension of topography set val(stop) 120 ;# simulation period

Phy/WirelessPhy set RXThresh_ 3.9364e-11 ;# -r 0.8

# Header

set ns [new Simulator] set tracefd [open trace-star.tr w] set namtrace [open nam-star.nam w] $ns trace-all $tracefd

$ns namtrace-all-wireless $namtrace $val(x) $val(y)

# Set up topography object set topo [new Topography] $topo load_flatgrid $val(x) $val(y) set god_ [create-god $val(nn)]

# Configure the node

$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) \

-channel [new $val(chan)] \ -topoInstance $topo \ -agentTrace ON \

for {set i 0} {$i < $val(nn) } { incr i } { set mnode_($i) [$ns node]

}

(14)

$mnode_(0) set Y_ 1200.0 $mnode_(0) set Z_ 0.0

$mnode_(0) label "PAN Coord"

$mnode_(1) set X_ 1350.0 $mnode_(1) set Y_ 1200.0 $mnode_(1) set Z_ 0.0

$mnode_(2) set X_ 1050.0 $mnode_(2) set Y_ 1459.8 $mnode_(2) set Z_ 0.0

$mnode_(3) set X_ 1500.0 $mnode_(3) set Y_ 864.59 $mnode_(3) set Z_ 0.0

$mnode_(4) set X_ 1600.0 $mnode_(4) set Y_ 1647.21 $mnode_(4) set Z_ 0.0

$mnode_(5) set X_ 800.0 $mnode_(5) set Y_ 565.57 $mnode_(5) set Z_ 0.0

$mnode_(6) set X_ 300.0 $mnode_(6) set Y_ 1200.0 $mnode_(6) set Z_ 0.0

$mnode_(7) set X_ 1900.0 $mnode_(7) set Y_ 1982.62 $mnode_(7) set Z_ 0.0

$mnode_(8) set X_ 1200.0 $mnode_(8) set Y_ 0.0 $mnode_(8) set Z_ 0.0

$mnode_(9) set X_ 400.0 $mnode_(9) set Y_ 112.57 $mnode_(9) set Z_ 0.0

$mnode_(10) set X_ 1200.0 $mnode_(10) set Y_ 2700.0 $mnode_(10) set Z_ 0.0

(15)

#Setup a UDP connection set udp1 [new Agent/UDP]

$ns attach-agent $mnode_(2) $udp1 set sink1 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink1 $ns connect $udp1 $sink1

$udp1 set fid_ 1

set udp2 [new Agent/UDP]

$ns attach-agent $mnode_(4) $udp2 set sink2 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink2 $ns connect $udp2 $sink2

$udp2 set fid_ 2

set udp3 [new Agent/UDP]

$ns attach-agent $mnode_(6) $udp3 set sink3 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink3 $ns connect $udp3 $sink3

$udp3 set fid_ 3

set udp4 [new Agent/UDP]

$ns attach-agent $mnode_(8) $udp4 set sink4 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink4 $ns connect $udp4 $sink4

$udp4 set fid_ 4

set udp5 [new Agent/UDP]

$ns attach-agent $mnode_(10) $udp5 set sink5 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink5 $ns connect $udp5 $sink5

$udp5 set fid_ 5

#Setup a TCP connection set tcp1 [new Agent/TCP]

$ns attach-agent $mnode_(1) $tcp1 set sink6 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink6 $ns connect $tcp1 $sink6

$tcp1 set fid_ 6 $sink6 set fid_ 6 $tcp1 set packetSize_ 24

set tcp2 [new Agent/TCP]

(16)

$ns attach-agent $mnode_(0) $sink7 $ns connect $tcp2 $sink7

$tcp2 set fid_ 7 $sink7 set fid_ 7 $tcp2 set packetSize_ 24

set tcp3 [new Agent/TCP]

$ns attach-agent $mnode_(5) $tcp3 set sink8 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink8 $ns connect $tcp3 $sink8

$tcp3 set fid_ 8 $sink8 set fid_ 8 $tcp3 set packetSize_ 24

set tcp4 [new Agent/TCP]

$ns attach-agent $mnode_(7) $tcp4 set sink9 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink9 $ns connect $tcp4 $sink9

$tcp4 set fid_ 9 $sink9 set fid_ 9 $tcp4 set packetSize_ 24

set tcp5 [new Agent/TCP]

$ns attach-agent $mnode_(9) $tcp5 set sink10 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink10 $ns connect $tcp5 $sink10

$tcp5 set fid_ 10 $sink10 set fid_ 10 $tcp5 set packetSize_ 24

#Setup a CBR over UDP connection set cbr1 [new Application/Traffic/CBR] $cbr1 attach-agent $udp1

$cbr1 set type_ CBR $cbr1 set packet_size_ 24 $cbr1 set rate_ 448Kb $cbr1 set interval_ 0.5

set cbr2 [new Application/Traffic/CBR] $cbr2 attach-agent $udp2

$cbr2 set type_ CBR $cbr2 set packet_size_ 24 $cbr2 set rate_ 448Kb $cbr2 set interval_ 0.5

(17)

$cbr3 attach-agent $udp3 $cbr3 set type_ CBR $cbr3 set packet_size_ 24 $cbr3 set rate_ 448Kb $cbr3 set interval_ 0.5

set cbr4 [new Application/Traffic/CBR] $cbr4 attach-agent $udp4

$cbr4 set type_ CBR $cbr4 set packet_size_ 24 $cbr4 set rate_ 448Kb $cbr4 set interval_ 0.5

set cbr5 [new Application/Traffic/CBR] $cbr5 attach-agent $udp5

$cbr5 set type_ CBR $cbr5 set packet_size_ 24 $cbr5 set rate_ 448Kb $cbr5 set interval_ 0.5

#Setup a FTP over TCP connection set ftp1 [new Application/FTP] $ftp1 attach-agent $tcp1 set ftp2 [new Application/FTP] $ftp2 attach-agent $tcp2 set ftp3 [new Application/FTP] $ftp3 attach-agent $tcp3 set ftp4 [new Application/FTP] $ftp4 attach-agent $tcp4 set ftp5 [new Application/FTP] $ftp5 attach-agent $tcp5

(18)

$ns at 97.0 "$cbr5 start" $ns at 109.0 "$cbr5 stop" $ns at 110.0 "$ftp5 start" $ns at 110.25 "$ftp5 stop"

# Telling nodes when the simulation ends for {set i 0} {$i < $val(nn) } { incr i } { $ns at $val(stop) "$mnode_($i) reset;" }

# Ending nam and the simulation

$ns at $val(stop) "$ns nam-end-wireless $val(stop)" $ns at $val(stop) "stop"

$ns at [expr $val(stop) + 0.01] "puts \"end simulation\"; $ns halt" proc stop {} {

global ns tracefd namtrace $ns flush-trace

close $tracefd close $namtrace

exec nam nam-star.nam &

exec awk -f filter.awk trace-star.tr & }

(19)

Lampiran 4

F ile

TCL

Skema Simulasi B dengan

receive rate

0,95

# Generate Parameters

set val(chan) Channel/WirelessChannel ;# channel type

set val(prop) Propagation/Shadowing ;# radio-propagation model set val(netif) Phy/WirelessPhy/802_15_4 ;# network interface type set val(mac) Mac/802_15_4 ;# MAC type

set val(ifq) Queue/DropTail/PriQueue ;# interface queue type set val(ll) LL ;# link layer type set val(ant) Antenna/OmniAntenna ;# antenna model set val(ifqlen) 10 ;# max packet in ifq set val(nn) 11 ;# number of mobilenodes set val(rp) AODV ;# protocol type

set val(x) 3000 ;# X dimension of topography set val(y) 3000 ;# Y dimension of topography set val(stop) 120 ;# simulation period

Phy/WirelessPhy set RXThresh_ 4.22658e-11 ;# -r 0.95

# Header

set ns [new Simulator] set tracefd [open trace-mesh.tr w] set namtrace [open nam-mesh.nam w] $ns trace-all $tracefd

$ns namtrace-all-wireless $namtrace $val(x) $val(y)

# Set up topography object set topo [new Topography] $topo load_flatgrid $val(x) $val(y) set god_ [create-god $val(nn)]

# Configure the node

$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) \

-channel [new $val(chan)] \ -topoInstance $topo \ -agentTrace ON \

for {set i 0} {$i < $val(nn) } { incr i } { set mnode_($i) [$ns node]

}

(20)

$mnode_(0) set Z_ 0.0

$mnode_(1) set X_ 1331.66 $mnode_(1) set Y_ 2500.0 $mnode_(1) set Z_ 0.0

$mnode_(2) set X_ 2331.66 $mnode_(2) set Y_ 2500.0 $mnode_(2) set Z_ 0.0

$mnode_(3) set X_ 0.0 $mnode_(3) set Y_ 2000.0 $mnode_(3) set Z_ 0.0

$mnode_(4) set X_ 1000.0 $mnode_(4) set Y_ 2000.0 $mnode_(4) set Z_ 0.0

$mnode_(5) set X_ 1500.0 $mnode_(5) set Y_ 2000.0 $mnode_(5) set Z_ 0.0

$mnode_(6) set X_ 2000.0 $mnode_(6) set Y_ 2000.0 $mnode_(6) set Z_ 0.0

$mnode_(7) set X_ 3000.0 $mnode_(7) set Y_ 2000.0 $mnode_(7) set Z_ 0.0

$mnode_(8) set X_ 624.5 $mnode_(8) set Y_ 1500.0 $mnode_(8) set Z_ 0.0

$mnode_(9) set X_ 1624.5 $mnode_(9) set Y_ 1500.0 $mnode_(9) set Z_ 0.0

$mnode_(10) set X_ 2624.5 $mnode_(10) set Y_ 1500.0 $mnode_(10) set Z_ 0.0

for {set i 0} {$i < $val(nn)} { incr i } { $ns initial_node_pos $mnode_($i) 20 }

#Setup a UDP connection set udp1 [new Agent/UDP]

(21)

set sink1 [new Agent/Null]

$ns attach-agent $mnode_(1) $sink1 $ns connect $udp1 $sink1

$udp1 set fid_ 1

set udp2 [new Agent/UDP]

$ns attach-agent $mnode_(1) $udp2 set sink2 [new Agent/Null]

$ns attach-agent $mnode_(2) $sink2 $ns connect $udp2 $sink2

$udp2 set fid_ 2

set udp3 [new Agent/UDP]

$ns attach-agent $mnode_(2) $udp3 set sink3 [new Agent/Null]

$ns attach-agent $mnode_(7) $sink3 $ns connect $udp3 $sink3

$udp3 set fid_ 3

set udp4 [new Agent/UDP]

$ns attach-agent $mnode_(7) $udp4 set sink4 [new Agent/Null]

$ns attach-agent $mnode_(10) $sink4 $ns connect $udp4 $sink4

$udp4 set fid_ 4

set udp5 [new Agent/UDP]

$ns attach-agent $mnode_(2) $udp5 set sink5 [new Agent/Null]

$ns attach-agent $mnode_(6) $sink5 $ns connect $udp5 $sink5

$udp5 set fid_ 5

set udp6 [new Agent/UDP]

$ns attach-agent $mnode_(6) $udp6 set sink6 [new Agent/Null]

$ns attach-agent $mnode_(9) $sink6 $ns connect $udp6 $sink6

$udp6 set fid_ 6

set udp7 [new Agent/UDP]

$ns attach-agent $mnode_(10) $udp7 set sink7 [new Agent/Null]

$ns attach-agent $mnode_(6) $sink7 $ns connect $udp7 $sink7

$udp7 set fid_ 7

set udp8 [new Agent/UDP]

(22)

set sink8 [new Agent/Null]

$ns attach-agent $mnode_(1) $sink8 $ns connect $udp8 $sink8

$udp8 set fid_ 8

set udp9 [new Agent/UDP]

$ns attach-agent $mnode_(7) $udp9 set sink9 [new Agent/Null]

$ns attach-agent $mnode_(6) $sink9 $ns connect $udp9 $sink9

$udp9 set fid_ 9

set udp10 [new Agent/UDP]

$ns attach-agent $mnode_(6) $udp10 set sink10 [new Agent/Null]

$ns attach-agent $mnode_(5) $sink10 $ns connect $udp10 $sink10

$udp10 set fid_ 10

#Setup a TCP connection set tcp1 [new Agent/TCP]

$ns attach-agent $mnode_(1) $tcp1 set sink11 [new Agent/TCPSink] $ns attach-agent $mnode_(4) $sink11 $ns connect $tcp1 $sink11

$tcp1 set fid_ 11 $sink11 set fid_ 11 $tcp1 set packetSize_ 24

set tcp2 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp2 set sink12 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink12 $ns connect $tcp2 $sink12

$tcp2 set fid_ 12 $sink12 set fid_ 12 $tcp2 set packetSize_ 24

set tcp3 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp3 set sink13 [new Agent/TCPSink] $ns attach-agent $mnode_(5) $sink13 $ns connect $tcp3 $sink13

$tcp3 set fid_ 13 $sink13 set fid_ 13 $tcp3 set packetSize_ 24

set tcp4 [new Agent/TCP]

(23)

set sink14 [new Agent/TCPSink] $ns attach-agent $mnode_(3) $sink14 $ns connect $tcp4 $sink14

$tcp4 set fid_ 14 $sink14 set fid_ 14 $tcp4 set packetSize_ 24

set tcp5 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp5 set sink15 [new Agent/TCPSink] $ns attach-agent $mnode_(3) $sink15 $ns connect $tcp5 $sink15

$tcp5 set fid_ 15 $sink15 set fid_ 15 $tcp5 set packetSize_ 24

set tcp6 [new Agent/TCP]

$ns attach-agent $mnode_(3) $tcp6 set sink16 [new Agent/TCPSink] $ns attach-agent $mnode_(8) $sink16 $ns connect $tcp6 $sink16

$tcp6 set fid_ 16 $sink16 set fid_ 16 $tcp6 set packetSize_ 24

set tcp7 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp7 set sink17 [new Agent/TCPSink] $ns attach-agent $mnode_(8) $sink17 $ns connect $tcp7 $sink17

$tcp7 set fid_ 17 $sink17 set fid_ 17 $tcp7 set packetSize_ 24

set tcp8 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp8 set sink18 [new Agent/TCPSink] $ns attach-agent $mnode_(9) $sink18 $ns connect $tcp8 $sink18

$tcp8 set fid_ 18 $sink18 set fid_ 18 $tcp8 set packetSize_ 24

set tcp9 [new Agent/TCP]

$ns attach-agent $mnode_(8) $tcp9 set sink19 [new Agent/TCPSink] $ns attach-agent $mnode_(9) $sink19 $ns connect $tcp9 $sink19

(24)

$sink19 set fid_ 19 $tcp9 set packetSize_ 24

set tcp10 [new Agent/TCP]

$ns attach-agent $mnode_(9) $tcp10 set sink20 [new Agent/TCPSink] $ns attach-agent $mnode_(10) $sink20 $ns connect $tcp10 $sink20

$tcp10 set fid_ 20 $sink20 set fid_ 20 $tcp10 set packetSize_ 24

#Setup a CBR over UDP connection set cbr1 [new Application/Traffic/CBR] $cbr1 attach-agent $udp1

$cbr1 set type_ CBR $cbr1 set packet_size_ 24 $cbr1 set rate_ 448Kb $cbr1 set interval_ 0.5

set cbr2 [new Application/Traffic/CBR] $cbr2 attach-agent $udp2

$cbr2 set type_ CBR $cbr2 set packet_size_ 24 $cbr2 set rate_ 448Kb $cbr2 set interval_ 0.5

set cbr3 [new Application/Traffic/CBR] $cbr3 attach-agent $udp3

$cbr3 set type_ CBR $cbr3 set packet_size_ 24 $cbr3 set rate_ 448Kb $cbr3 set interval_ 0.5

set cbr4 [new Application/Traffic/CBR] $cbr4 attach-agent $udp4

$cbr4 set type_ CBR $cbr4 set packet_size_ 24 $cbr4 set rate_ 448Kb $cbr4 set interval_ 0.5

set cbr5 [new Application/Traffic/CBR] $cbr5 attach-agent $udp5

$cbr5 set type_ CBR $cbr5 set packet_size_ 24 $cbr5 set rate_ 448Kb $cbr5 set interval_ 0.5

(25)

$cbr6 attach-agent $udp6 $cbr6 set type_ CBR $cbr6 set packet_size_ 24 $cbr6 set rate_ 448Kb $cbr6 set interval_ 0.5

set cbr7 [new Application/Traffic/CBR] $cbr7 attach-agent $udp7

$cbr7 set type_ CBR $cbr7 set packet_size_ 24 $cbr7 set rate_ 448Kb $cbr7 set interval_ 0.5

set cbr8 [new Application/Traffic/CBR] $cbr8 attach-agent $udp8

$cbr8 set type_ CBR $cbr8 set packet_size_ 24 $cbr8 set rate_ 448Kb $cbr8 set interval_ 0.5

set cbr9 [new Application/Traffic/CBR] $cbr9 attach-agent $udp9

$cbr9 set type_ CBR $cbr9 set packet_size_ 24 $cbr9 set rate_ 448Kb $cbr9 set interval_ 0.5

set cbr10 [new Application/Traffic/CBR] $cbr10 attach-agent $udp10

$cbr10 set type_ CBR $cbr10 set packet_size_ 24 $cbr10 set rate_ 448Kb $cbr10 set interval_ 0.5

(26)

set ftp8 [new Application/FTP] $ftp8 attach-agent $tcp8 set ftp9 [new Application/FTP] $ftp9 attach-agent $tcp9 set ftp10 [new Application/FTP] $ftp10 attach-agent $tcp10

# Time Event for -r 0.95 $ns at 1.0 "$cbr1 start" $ns at 10.0 "$cbr1 stop" $ns at 11.0 "$cbr2 start" $ns at 20.0 "$cbr2 stop" $ns at 21.0 "$cbr3 start" $ns at 30.0 "$cbr3 stop" $ns at 31.0 "$cbr4 start" $ns at 40.0 "$cbr4 stop" $ns at 41.0 "$cbr5 start" $ns at 50.0 "$cbr5 stop" $ns at 51.0 "$cbr6 start" $ns at 60.0 "$cbr6 stop" $ns at 61.0 "$cbr7 start" $ns at 70.0 "$cbr7 stop" $ns at 71.0 "$cbr8 start" $ns at 80.0 "$cbr8 stop" $ns at 81.0 "$cbr9 start" $ns at 90.0 "$cbr9 stop" $ns at 91.0 "$cbr10 start" $ns at 100.0 "$cbr10 stop"

(27)

# Telling nodes when the simulation ends for {set i 0} {$i < $val(nn) } { incr i } { $ns at $val(stop) "$mnode_($i) reset;" }

# Ending nam and the simulation

$ns at $val(stop) "$ns nam-end-wireless $val(stop)" $ns at $val(stop) "stop"

$ns at [expr $val(stop) + 0.01] "puts \"end simulation\"; $ns halt" proc stop {} {

global ns tracefd namtrace $ns flush-trace

close $tracefd close $namtrace

exec nam nam-mesh.nam &

exec awk -f filter.awk trace-mesh.tr & }

(28)

Lampiran 5

F ile

TCL

Skema Simulasi B dengan

receive rate

0,9

# Generate Parameters

set val(chan) Channel/WirelessChannel ;# channel type

set val(prop) Propagation/Shadowing ;# radio-propagation model set val(netif) Phy/WirelessPhy/802_15_4 ;# network interface type set val(mac) Mac/802_15_4 ;# MAC type

set val(ifq) Queue/DropTail/PriQueue ;# interface queue type set val(ll) LL ;# link layer type set val(ant) Antenna/OmniAntenna ;# antenna model set val(ifqlen) 10 ;# max packet in ifq set val(nn) 11 ;# number of mobilenodes set val(rp) AODV ;# protocol type

set val(x) 3000 ;# X dimension of topography set val(y) 3000 ;# Y dimension of topography set val(stop) 120 ;# simulation period

Phy/WirelessPhy set RXThresh_ 5.90622e-11 ;# -r 0.9

# Header

set ns [new Simulator] set tracefd [open trace-mesh.tr w] set namtrace [open nam-mesh.nam w] $ns trace-all $tracefd

$ns namtrace-all-wireless $namtrace $val(x) $val(y)

# Set up topography object set topo [new Topography] $topo load_flatgrid $val(x) $val(y) set god_ [create-god $val(nn)]

# Configure the node

$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) \

-channel [new $val(chan)] \ -topoInstance $topo \ -agentTrace ON \

for {set i 0} {$i < $val(nn) } { incr i } { set mnode_($i) [$ns node]

}

(29)

$mnode_(0) set Z_ 0.0

$mnode_(1) set X_ 1331.66 $mnode_(1) set Y_ 2500.0 $mnode_(1) set Z_ 0.0

$mnode_(2) set X_ 2331.66 $mnode_(2) set Y_ 2500.0 $mnode_(2) set Z_ 0.0

$mnode_(3) set X_ 0.0 $mnode_(3) set Y_ 2000.0 $mnode_(3) set Z_ 0.0

$mnode_(4) set X_ 1000.0 $mnode_(4) set Y_ 2000.0 $mnode_(4) set Z_ 0.0

$mnode_(5) set X_ 1500.0 $mnode_(5) set Y_ 2000.0 $mnode_(5) set Z_ 0.0

$mnode_(6) set X_ 2000.0 $mnode_(6) set Y_ 2000.0 $mnode_(6) set Z_ 0.0

$mnode_(7) set X_ 3000.0 $mnode_(7) set Y_ 2000.0 $mnode_(7) set Z_ 0.0

$mnode_(8) set X_ 624.5 $mnode_(8) set Y_ 1500.0 $mnode_(8) set Z_ 0.0

$mnode_(9) set X_ 1624.5 $mnode_(9) set Y_ 1500.0 $mnode_(9) set Z_ 0.0

$mnode_(10) set X_ 2624.5 $mnode_(10) set Y_ 1500.0 $mnode_(10) set Z_ 0.0

for {set i 0} {$i < $val(nn)} { incr i } { $ns initial_node_pos $mnode_($i) 20 }

#Setup a UDP connection set udp1 [new Agent/UDP]

(30)

set sink1 [new Agent/Null]

$ns attach-agent $mnode_(1) $sink1 $ns connect $udp1 $sink1

$udp1 set fid_ 1

set udp2 [new Agent/UDP]

$ns attach-agent $mnode_(1) $udp2 set sink2 [new Agent/Null]

$ns attach-agent $mnode_(2) $sink2 $ns connect $udp2 $sink2

$udp2 set fid_ 2

set udp3 [new Agent/UDP]

$ns attach-agent $mnode_(2) $udp3 set sink3 [new Agent/Null]

$ns attach-agent $mnode_(7) $sink3 $ns connect $udp3 $sink3

$udp3 set fid_ 3

set udp4 [new Agent/UDP]

$ns attach-agent $mnode_(7) $udp4 set sink4 [new Agent/Null]

$ns attach-agent $mnode_(10) $sink4 $ns connect $udp4 $sink4

$udp4 set fid_ 4

set udp5 [new Agent/UDP]

$ns attach-agent $mnode_(2) $udp5 set sink5 [new Agent/Null]

$ns attach-agent $mnode_(6) $sink5 $ns connect $udp5 $sink5

$udp5 set fid_ 5

set udp6 [new Agent/UDP]

$ns attach-agent $mnode_(6) $udp6 set sink6 [new Agent/Null]

$ns attach-agent $mnode_(9) $sink6 $ns connect $udp6 $sink6

$udp6 set fid_ 6

set udp7 [new Agent/UDP]

$ns attach-agent $mnode_(10) $udp7 set sink7 [new Agent/Null]

$ns attach-agent $mnode_(6) $sink7 $ns connect $udp7 $sink7

$udp7 set fid_ 7

set udp8 [new Agent/UDP]

(31)

set sink8 [new Agent/Null]

$ns attach-agent $mnode_(1) $sink8 $ns connect $udp8 $sink8

$udp8 set fid_ 8

set udp9 [new Agent/UDP]

$ns attach-agent $mnode_(7) $udp9 set sink9 [new Agent/Null]

$ns attach-agent $mnode_(6) $sink9 $ns connect $udp9 $sink9

$udp9 set fid_ 9

set udp10 [new Agent/UDP]

$ns attach-agent $mnode_(6) $udp10 set sink10 [new Agent/Null]

$ns attach-agent $mnode_(5) $sink10 $ns connect $udp10 $sink10

$udp10 set fid_ 10

#Setup a TCP connection set tcp1 [new Agent/TCP]

$ns attach-agent $mnode_(1) $tcp1 set sink11 [new Agent/TCPSink] $ns attach-agent $mnode_(4) $sink11 $ns connect $tcp1 $sink11

$tcp1 set fid_ 11 $sink11 set fid_ 11 $tcp1 set packetSize_ 24

set tcp2 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp2 set sink12 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink12 $ns connect $tcp2 $sink12

$tcp2 set fid_ 12 $sink12 set fid_ 12 $tcp2 set packetSize_ 24

set tcp3 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp3 set sink13 [new Agent/TCPSink] $ns attach-agent $mnode_(5) $sink13 $ns connect $tcp3 $sink13

$tcp3 set fid_ 13 $sink13 set fid_ 13 $tcp3 set packetSize_ 24

set tcp4 [new Agent/TCP]

(32)

set sink14 [new Agent/TCPSink] $ns attach-agent $mnode_(3) $sink14 $ns connect $tcp4 $sink14

$tcp4 set fid_ 14 $sink14 set fid_ 14 $tcp4 set packetSize_ 24

set tcp5 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp5 set sink15 [new Agent/TCPSink] $ns attach-agent $mnode_(3) $sink15 $ns connect $tcp5 $sink15

$tcp5 set fid_ 15 $sink15 set fid_ 15 $tcp5 set packetSize_ 24

set tcp6 [new Agent/TCP]

$ns attach-agent $mnode_(3) $tcp6 set sink16 [new Agent/TCPSink] $ns attach-agent $mnode_(8) $sink16 $ns connect $tcp6 $sink16

$tcp6 set fid_ 16 $sink16 set fid_ 16 $tcp6 set packetSize_ 24

set tcp7 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp7 set sink17 [new Agent/TCPSink] $ns attach-agent $mnode_(8) $sink17 $ns connect $tcp7 $sink17

$tcp7 set fid_ 17 $sink17 set fid_ 17 $tcp7 set packetSize_ 24

set tcp8 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp8 set sink18 [new Agent/TCPSink] $ns attach-agent $mnode_(9) $sink18 $ns connect $tcp8 $sink18

$tcp8 set fid_ 18 $sink18 set fid_ 18 $tcp8 set packetSize_ 24

set tcp9 [new Agent/TCP]

$ns attach-agent $mnode_(8) $tcp9 set sink19 [new Agent/TCPSink] $ns attach-agent $mnode_(9) $sink19 $ns connect $tcp9 $sink19

(33)

$sink19 set fid_ 19 $tcp9 set packetSize_ 24

set tcp10 [new Agent/TCP]

$ns attach-agent $mnode_(9) $tcp10 set sink20 [new Agent/TCPSink] $ns attach-agent $mnode_(10) $sink20 $ns connect $tcp10 $sink20

$tcp10 set fid_ 20 $sink20 set fid_ 20 $tcp10 set packetSize_ 24

#Setup a CBR over UDP connection set cbr1 [new Application/Traffic/CBR] $cbr1 attach-agent $udp1

$cbr1 set type_ CBR $cbr1 set packet_size_ 24 $cbr1 set rate_ 448Kb $cbr1 set interval_ 0.5

set cbr2 [new Application/Traffic/CBR] $cbr2 attach-agent $udp2

$cbr2 set type_ CBR $cbr2 set packet_size_ 24 $cbr2 set rate_ 448Kb $cbr2 set interval_ 0.5

set cbr3 [new Application/Traffic/CBR] $cbr3 attach-agent $udp3

$cbr3 set type_ CBR $cbr3 set packet_size_ 24 $cbr3 set rate_ 448Kb $cbr3 set interval_ 0.5

set cbr4 [new Application/Traffic/CBR] $cbr4 attach-agent $udp4

$cbr4 set type_ CBR $cbr4 set packet_size_ 24 $cbr4 set rate_ 448Kb $cbr4 set interval_ 0.5

set cbr5 [new Application/Traffic/CBR] $cbr5 attach-agent $udp5

$cbr5 set type_ CBR $cbr5 set packet_size_ 24 $cbr5 set rate_ 448Kb $cbr5 set interval_ 0.5

(34)

$cbr6 attach-agent $udp6 $cbr6 set type_ CBR $cbr6 set packet_size_ 24 $cbr6 set rate_ 448Kb $cbr6 set interval_ 0.5

set cbr7 [new Application/Traffic/CBR] $cbr7 attach-agent $udp7

$cbr7 set type_ CBR $cbr7 set packet_size_ 24 $cbr7 set rate_ 448Kb $cbr7 set interval_ 0.5

set cbr8 [new Application/Traffic/CBR] $cbr8 attach-agent $udp8

$cbr8 set type_ CBR $cbr8 set packet_size_ 24 $cbr8 set rate_ 448Kb $cbr8 set interval_ 0.5

set cbr9 [new Application/Traffic/CBR] $cbr9 attach-agent $udp9

$cbr9 set type_ CBR $cbr9 set packet_size_ 24 $cbr9 set rate_ 448Kb $cbr9 set interval_ 0.5

set cbr10 [new Application/Traffic/CBR] $cbr10 attach-agent $udp10

$cbr10 set type_ CBR $cbr10 set packet_size_ 24 $cbr10 set rate_ 448Kb $cbr10 set interval_ 0.5

(35)

set ftp8 [new Application/FTP] $ftp8 attach-agent $tcp8 set ftp9 [new Application/FTP] $ftp9 attach-agent $tcp9 set ftp10 [new Application/FTP] $ftp10 attach-agent $tcp10

# Time Event for -r 0.9 $ns at 1.0 "$cbr1 start" $ns at 10.0 "$cbr1 stop" $ns at 11.0 "$cbr2 start" $ns at 20.0 "$cbr2 stop" $ns at 21.0 "$cbr3 start" $ns at 30.0 "$cbr3 stop" $ns at 31.0 "$cbr4 start" $ns at 40.0 "$cbr4 stop" $ns at 41.0 "$cbr5 start" $ns at 50.0 "$cbr5 stop" $ns at 51.0 "$cbr6 start" $ns at 60.0 "$cbr6 stop" $ns at 61.0 "$cbr7 start" $ns at 70.0 "$cbr7 stop" $ns at 71.0 "$cbr8 start" $ns at 80.0 "$cbr8 stop" $ns at 81.0 "$cbr9 start" $ns at 90.0 "$cbr9 stop" $ns at 91.0 "$cbr10 start" $ns at 100.0 "$cbr10 stop"

(36)

# Telling nodes when the simulation ends for {set i 0} {$i < $val(nn) } { incr i } { $ns at $val(stop) "$mnode_($i) reset;" }

# Ending nam and the simulation

$ns at $val(stop) "$ns nam-end-wireless $val(stop)" $ns at $val(stop) "stop"

$ns at [expr $val(stop) + 0.01] "puts \"end simulation\"; $ns halt" proc stop {} {

global ns tracefd namtrace $ns flush-trace

close $tracefd close $namtrace

exec nam nam-mesh.nam &

exec awk -f filter.awk trace-mesh.tr & }

(37)

Lampiran 6

F ile

TCL

Skema Simulasi B dengan

receive rate

0,8

# Generate Parameters

set val(chan) Channel/WirelessChannel ;# channel type

set val(prop) Propagation/Shadowing ;# radio-propagation model set val(netif) Phy/WirelessPhy/802_15_4 ;# network interface type set val(mac) Mac/802_15_4 ;# MAC type

set val(ifq) Queue/DropTail/PriQueue ;# interface queue type set val(ll) LL ;# link layer type set val(ant) Antenna/OmniAntenna ;# antenna model set val(ifqlen) 10 ;# max packet in ifq set val(nn) 11 ;# number of mobilenodes

set val(rp) AODV ;# protocol type

set val(x) 3000 ;# X dimension of topography set val(y) 3000 ;# Y dimension of topography set val(stop) 120 ;# simulation period

Phy/WirelessPhy set RXThresh_ 8.8569e-11 ;# -r 0.8

# Header

set ns [new Simulator] set tracefd [open trace-mesh.tr w] set namtrace [open nam-mesh.nam w] $ns trace-all $tracefd

$ns namtrace-all-wireless $namtrace $val(x) $val(y)

# Set up topography object set topo [new Topography] $topo load_flatgrid $val(x) $val(y) set god_ [create-god $val(nn)]

# Configure the node

$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) \

-channel [new $val(chan)] \ -topoInstance $topo \ -agentTrace ON \

for {set i 0} {$i < $val(nn) } { incr i } { set mnode_($i) [$ns node]

}

(38)

$mnode_(0) set Z_ 0.0

$mnode_(1) set X_ 1331.66 $mnode_(1) set Y_ 2500.0 $mnode_(1) set Z_ 0.0

$mnode_(2) set X_ 2331.66 $mnode_(2) set Y_ 2500.0 $mnode_(2) set Z_ 0.0

$mnode_(3) set X_ 0.0 $mnode_(3) set Y_ 2000.0 $mnode_(3) set Z_ 0.0

$mnode_(4) set X_ 1000.0 $mnode_(4) set Y_ 2000.0 $mnode_(4) set Z_ 0.0

$mnode_(5) set X_ 1500.0 $mnode_(5) set Y_ 2000.0 $mnode_(5) set Z_ 0.0

$mnode_(6) set X_ 2000.0 $mnode_(6) set Y_ 2000.0 $mnode_(6) set Z_ 0.0

$mnode_(7) set X_ 3000.0 $mnode_(7) set Y_ 2000.0 $mnode_(7) set Z_ 0.0

$mnode_(8) set X_ 624.5 $mnode_(8) set Y_ 1500.0 $mnode_(8) set Z_ 0.0

$mnode_(9) set X_ 1624.5 $mnode_(9) set Y_ 1500.0 $mnode_(9) set Z_ 0.0

$mnode_(10) set X_ 2624.5 $mnode_(10) set Y_ 1500.0 $mnode_(10) set Z_ 0.0

for {set i 0} {$i < $val(nn)} { incr i } { $ns initial_node_pos $mnode_($i) 20 }

#Setup a UDP connection set udp1 [new Agent/UDP]

(39)

set sink1 [new Agent/Null]

$ns attach-agent $mnode_(1) $sink1 $ns connect $udp1 $sink1

$udp1 set fid_ 1

set udp2 [new Agent/UDP]

$ns attach-agent $mnode_(1) $udp2 set sink2 [new Agent/Null]

$ns attach-agent $mnode_(2) $sink2 $ns connect $udp2 $sink2

$udp2 set fid_ 2

set udp3 [new Agent/UDP]

$ns attach-agent $mnode_(2) $udp3 set sink3 [new Agent/Null]

$ns attach-agent $mnode_(7) $sink3 $ns connect $udp3 $sink3

$udp3 set fid_ 3

set udp4 [new Agent/UDP]

$ns attach-agent $mnode_(7) $udp4 set sink4 [new Agent/Null]

$ns attach-agent $mnode_(10) $sink4 $ns connect $udp4 $sink4

$udp4 set fid_ 4

set udp5 [new Agent/UDP]

$ns attach-agent $mnode_(2) $udp5 set sink5 [new Agent/Null]

$ns attach-agent $mnode_(6) $sink5 $ns connect $udp5 $sink5

$udp5 set fid_ 5

set udp6 [new Agent/UDP]

$ns attach-agent $mnode_(6) $udp6 set sink6 [new Agent/Null]

$ns attach-agent $mnode_(9) $sink6 $ns connect $udp6 $sink6

$udp6 set fid_ 6

set udp7 [new Agent/UDP]

$ns attach-agent $mnode_(10) $udp7 set sink7 [new Agent/Null]

$ns attach-agent $mnode_(6) $sink7 $ns connect $udp7 $sink7

$udp7 set fid_ 7

set udp8 [new Agent/UDP]

(40)

set sink8 [new Agent/Null]

$ns attach-agent $mnode_(1) $sink8 $ns connect $udp8 $sink8

$udp8 set fid_ 8

set udp9 [new Agent/UDP]

$ns attach-agent $mnode_(7) $udp9 set sink9 [new Agent/Null]

$ns attach-agent $mnode_(6) $sink9 $ns connect $udp9 $sink9

$udp9 set fid_ 9

set udp10 [new Agent/UDP]

$ns attach-agent $mnode_(6) $udp10 set sink10 [new Agent/Null]

$ns attach-agent $mnode_(5) $sink10 $ns connect $udp10 $sink10

$udp10 set fid_ 10

#Setup a TCP connection set tcp1 [new Agent/TCP]

$ns attach-agent $mnode_(1) $tcp1 set sink11 [new Agent/TCPSink] $ns attach-agent $mnode_(4) $sink11 $ns connect $tcp1 $sink11

$tcp1 set fid_ 11 $sink11 set fid_ 11 $tcp1 set packetSize_ 24

set tcp2 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp2 set sink12 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink12 $ns connect $tcp2 $sink12

$tcp2 set fid_ 12 $sink12 set fid_ 12 $tcp2 set packetSize_ 24

set tcp3 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp3 set sink13 [new Agent/TCPSink] $ns attach-agent $mnode_(5) $sink13 $ns connect $tcp3 $sink13

$tcp3 set fid_ 13 $sink13 set fid_ 13 $tcp3 set packetSize_ 24

set tcp4 [new Agent/TCP]

(41)

set sink14 [new Agent/TCPSink] $ns attach-agent $mnode_(3) $sink14 $ns connect $tcp4 $sink14

$tcp4 set fid_ 14 $sink14 set fid_ 14 $tcp4 set packetSize_ 24

set tcp5 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp5 set sink15 [new Agent/TCPSink] $ns attach-agent $mnode_(3) $sink15 $ns connect $tcp5 $sink15

$tcp5 set fid_ 15 $sink15 set fid_ 15 $tcp5 set packetSize_ 24

set tcp6 [new Agent/TCP]

$ns attach-agent $mnode_(3) $tcp6 set sink16 [new Agent/TCPSink] $ns attach-agent $mnode_(8) $sink16 $ns connect $tcp6 $sink16

$tcp6 set fid_ 16 $sink16 set fid_ 16 $tcp6 set packetSize_ 24

set tcp7 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp7 set sink17 [new Agent/TCPSink] $ns attach-agent $mnode_(8) $sink17 $ns connect $tcp7 $sink17

$tcp7 set fid_ 17 $sink17 set fid_ 17 $tcp7 set packetSize_ 24

set tcp8 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp8 set sink18 [new Agent/TCPSink] $ns attach-agent $mnode_(9) $sink18 $ns connect $tcp8 $sink18

$tcp8 set fid_ 18 $sink18 set fid_ 18 $tcp8 set packetSize_ 24

set tcp9 [new Agent/TCP]

$ns attach-agent $mnode_(8) $tcp9 set sink19 [new Agent/TCPSink] $ns attach-agent $mnode_(9) $sink19 $ns connect $tcp9 $sink19

(42)

$sink19 set fid_ 19 $tcp9 set packetSize_ 24

set tcp10 [new Agent/TCP]

$ns attach-agent $mnode_(9) $tcp10 set sink20 [new Agent/TCPSink] $ns attach-agent $mnode_(10) $sink20 $ns connect $tcp10 $sink20

$tcp10 set fid_ 20 $sink20 set fid_ 20 $tcp10 set packetSize_ 24

#Setup a CBR over UDP connection set cbr1 [new Application/Traffic/CBR] $cbr1 attach-agent $udp1

$cbr1 set type_ CBR $cbr1 set packet_size_ 24 $cbr1 set rate_ 448Kb $cbr1 set interval_ 0.5

set cbr2 [new Application/Traffic/CBR] $cbr2 attach-agent $udp2

$cbr2 set type_ CBR $cbr2 set packet_size_ 24 $cbr2 set rate_ 448Kb $cbr2 set interval_ 0.5

set cbr3 [new Application/Traffic/CBR] $cbr3 attach-agent $udp3

$cbr3 set type_ CBR $cbr3 set packet_size_ 24 $cbr3 set rate_ 448Kb $cbr3 set interval_ 0.5

set cbr4 [new Application/Traffic/CBR] $cbr4 attach-agent $udp4

$cbr4 set type_ CBR $cbr4 set packet_size_ 24 $cbr4 set rate_ 448Kb $cbr4 set interval_ 0.5

set cbr5 [new Application/Traffic/CBR] $cbr5 attach-agent $udp5

$cbr5 set type_ CBR $cbr5 set packet_size_ 24 $cbr5 set rate_ 448Kb $cbr5 set interval_ 0.5

(43)

$cbr6 attach-agent $udp6 $cbr6 set type_ CBR $cbr6 set packet_size_ 24 $cbr6 set rate_ 448Kb $cbr6 set interval_ 0.5

set cbr7 [new Application/Traffic/CBR] $cbr7 attach-agent $udp7

$cbr7 set type_ CBR $cbr7 set packet_size_ 24 $cbr7 set rate_ 448Kb $cbr7 set interval_ 0.5

set cbr8 [new Application/Traffic/CBR] $cbr8 attach-agent $udp8

$cbr8 set type_ CBR $cbr8 set packet_size_ 24 $cbr8 set rate_ 448Kb $cbr8 set interval_ 0.5

set cbr9 [new Application/Traffic/CBR] $cbr9 attach-agent $udp9

$cbr9 set type_ CBR $cbr9 set packet_size_ 24 $cbr9 set rate_ 448Kb $cbr9 set interval_ 0.5

set cbr10 [new Application/Traffic/CBR] $cbr10 attach-agent $udp10

$cbr10 set type_ CBR $cbr10 set packet_size_ 24 $cbr10 set rate_ 448Kb $cbr10 set interval_ 0.5

(44)

set ftp8 [new Application/FTP] $ftp8 attach-agent $tcp8 set ftp9 [new Application/FTP] $ftp9 attach-agent $tcp9 set ftp10 [new Application/FTP] $ftp10 attach-agent $tcp10

# Time Event for -r 0.8 $ns at 1.0 "$cbr1 start" $ns at 10.0 "$cbr1 stop" $ns at 11.0 "$cbr2 start" $ns at 20.0 "$cbr2 stop" $ns at 21.0 "$cbr3 start" $ns at 30.0 "$cbr3 stop" $ns at 31.0 "$cbr4 start" $ns at 40.0 "$cbr4 stop" $ns at 41.0 "$cbr5 start" $ns at 50.0 "$cbr5 stop" $ns at 51.0 "$cbr6 start" $ns at 60.0 "$cbr6 stop" $ns at 61.0 "$cbr7 start" $ns at 70.0 "$cbr7 stop" $ns at 71.0 "$cbr8 start" $ns at 80.0 "$cbr8 stop" $ns at 81.0 "$cbr9 start" $ns at 87.5 "$cbr9 stop" $ns at 91.0 "$cbr10 start" $ns at 100.0 "$cbr10 stop"

(45)

# Telling nodes when the simulation ends for {set i 0} {$i < $val(nn) } { incr i } { $ns at $val(stop) "$mnode_($i) reset;" }

# Ending nam and the simulation

$ns at $val(stop) "$ns nam-end-wireless $val(stop)" $ns at $val(stop) "stop"

$ns at [expr $val(stop) + 0.01] "puts \"end simulation\"; $ns halt" proc stop {} {

global ns tracefd namtrace $ns flush-trace

close $tracefd close $namtrace

exec nam nam-mesh.nam &

exec awk -f filter.awk trace-mesh.tr & }

(46)

Lampiran 7

F ile

TCL

Skema Simulasi C dengan

receive rate

0,95

# Generate Parameters

set val(chan) Channel/WirelessChannel ;# channel type

set val(prop) Propagation/Shadowing ;# radio-propagation model set val(netif) Phy/WirelessPhy/802_15_4 ;# network interface type set val(mac) Mac/802_15_4 ;# MAC type

set val(ifq) Queue/DropTail/PriQueue ;# interface queue type set val(ll) LL ;# link layer type set val(ant) Antenna/OmniAntenna ;# antenna model set val(ifqlen) 10 ;# max packet in ifq set val(nn) 11 ;# number of mobilenodes set val(rp) AODV ;# protocol type

set val(x) 3000 ;# X dimension of topography set val(y) 3000 ;# Y dimension of topography set val(stop) 120 ;# simulation period

Phy/WirelessPhy set RXThresh_ 1.87848e-11 ;# -r 0.95

# Header

set ns [new Simulator] set tracefd [open trace-tree.tr w] set namtrace [open nam-tree.nam w] $ns trace-all $tracefd

$ns namtrace-all-wireless $namtrace $val(x) $val(y)

# Set up topography object set topo [new Topography] $topo load_flatgrid $val(x) $val(y) set god_ [create-god $val(nn)]

# Configure the node

$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) \

-channel [new $val(chan)] \ -topoInstance $topo \ -agentTrace ON \

for {set i 0} {$i < $val(nn) } { incr i } { set mnode_($i) [$ns node]

}

(47)

$mnode_(0) set Z_ 0.0

$mnode_(1) set X_ 1100.0 $mnode_(1) set Y_ 2700.0 $mnode_(1) set Z_ 0.0

$mnode_(2) set X_ 1900.0 $mnode_(2) set Y_ 2700.0 $mnode_(2) set Z_ 0.0

$mnode_(3) set X_ 500.0 $mnode_(3) set Y_ 1900.0 $mnode_(3) set Z_ 0.0

$mnode_(4) set X_ 1100.0 $mnode_(4) set Y_ 1900.0 $mnode_(4) set Z_ 0.0

$mnode_(5) set X_ 1900.0 $mnode_(5) set Y_ 1900.0 $mnode_(5) set Z_ 0.0

$mnode_(6) set X_ 2500.0 $mnode_(6) set Y_ 1900.0 $mnode_(6) set Z_ 0.0

$mnode_(7) set X_ 500.0 $mnode_(7) set Y_ 400.0 $mnode_(7) set Z_ 0.0

$mnode_(8) set X_ 1100.0 $mnode_(8) set Y_ 700.0 $mnode_(8) set Z_ 0.0

$mnode_(9) set X_ 1900.0 $mnode_(9) set Y_ 700.0 $mnode_(9) set Z_ 0.0

$mnode_(10) set X_ 2500.0 $mnode_(10) set Y_ 400.0 $mnode_(10) set Z_ 0.0

for {set i 0} {$i < $val(nn)} { incr i } { $ns initial_node_pos $mnode_($i) 20 }

#Setup a UDP connection set udp1 [new Agent/UDP]

(48)

set sink1 [new Agent/Null]

$ns attach-agent $mnode_(3) $sink1 $ns connect $udp1 $sink1

$udp1 set fid_ 1

set udp2 [new Agent/UDP]

$ns attach-agent $mnode_(3) $udp2 set sink2 [new Agent/Null]

$ns attach-agent $mnode_(1) $sink2 $ns connect $udp2 $sink2

$udp2 set fid_ 2

set udp3 [new Agent/UDP]

$ns attach-agent $mnode_(1) $udp3 set sink3 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink3 $ns connect $udp3 $sink3

$udp3 set fid_ 3

set udp4 [new Agent/UDP]

$ns attach-agent $mnode_(0) $udp4 set sink4 [new Agent/Null]

$ns attach-agent $mnode_(2) $sink4 $ns connect $udp4 $sink4

$udp4 set fid_ 4

set udp5 [new Agent/UDP]

$ns attach-agent $mnode_(2) $udp5 set sink5 [new Agent/Null]

$ns attach-agent $mnode_(5) $sink5 $ns connect $udp5 $sink5

$udp5 set fid_ 5

set udp6 [new Agent/UDP]

$ns attach-agent $mnode_(5) $udp6 set sink6 [new Agent/Null]

$ns attach-agent $mnode_(9) $sink6 $ns connect $udp6 $sink6

$udp6 set fid_ 6

#Setup a TCP connection set tcp1 [new Agent/TCP]

$ns attach-agent $mnode_(10) $tcp1 set sink7 [new Agent/TCPSink] $ns attach-agent $mnode_(6) $sink7 $ns connect $tcp1 $sink7

(49)

set tcp2 [new Agent/TCP]

$ns attach-agent $mnode_(6) $tcp2 set sink8 [new Agent/TCPSink] $ns attach-agent $mnode_(2) $sink8 $ns connect $tcp2 $sink8

$tcp2 set fid_ 8 $sink8 set fid_ 8 $tcp2 set packetSize_ 24

set tcp3 [new Agent/TCP]

$ns attach-agent $mnode_(2) $tcp3 set sink9 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink9 $ns connect $tcp3 $sink9

$tcp3 set fid_ 9 $sink9 set fid_ 9 $tcp3 set packetSize_ 24

set tcp4 [new Agent/TCP]

$ns attach-agent $mnode_(0) $tcp4 set sink10 [new Agent/TCPSink] $ns attach-agent $mnode_(1) $sink10 $ns connect $tcp4 $sink10

$tcp4 set fid_ 10 $sink10 set fid_ 10 $tcp4 set packetSize_ 24

set tcp5 [new Agent/TCP]

$ns attach-agent $mnode_(1) $tcp5 set sink11 [new Agent/TCPSink] $ns attach-agent $mnode_(4) $sink11 $ns connect $tcp5 $sink11

$tcp5 set fid_ 11 $sink11 set fid_ 11 $tcp5 set packetSize_ 24

set tcp6 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp6 set sink12 [new Agent/TCPSink] $ns attach-agent $mnode_(8) $sink12 $ns connect $tcp6 $sink12

$tcp6 set fid_ 12 $sink12 set fid_ 12 $tcp6 set packetSize_ 24

(50)

$cbr1 set type_ CBR $cbr1 set packet_size_ 24 $cbr1 set rate_ 448Kb $cbr1 set interval_ 0.5

set cbr2 [new Application/Traffic/CBR] $cbr2 attach-agent $udp2

$cbr2 set type_ CBR $cbr2 set packet_size_ 24 $cbr2 set rate_ 448Kb $cbr2 set interval_ 0.5

set cbr3 [new Application/Traffic/CBR] $cbr3 attach-agent $udp3

$cbr3 set type_ CBR $cbr3 set packet_size_ 24 $cbr3 set rate_ 448Kb $cbr3 set interval_ 0.5

set cbr4 [new Application/Traffic/CBR] $cbr4 attach-agent $udp4

$cbr4 set type_ CBR $cbr4 set packet_size_ 24 $cbr4 set rate_ 448Kb $cbr4 set interval_ 0.5

set cbr5 [new Application/Traffic/CBR] $cbr5 attach-agent $udp5

$cbr5 set type_ CBR $cbr5 set packet_size_ 24 $cbr5 set rate_ 448Kb $cbr5 set interval_ 0.5

set cbr6 [new Application/Traffic/CBR] $cbr6 attach-agent $udp6

$cbr6 set type_ CBR $cbr6 set packet_size_ 24 $cbr6 set rate_ 448Kb $cbr6 set interval_ 0.5

(51)

set ftp5 [new Application/FTP] $ftp5 attach-agent $tcp5 set ftp6 [new Application/FTP] $ftp6 attach-agent $tcp6

# Time Event for -r 0.95 $ns at 1.0 "$cbr1 start" $ns at 16.0 "$cbr1 stop" $ns at 17.0 "$cbr2 start" $ns at 32.0 "$cbr2 stop" $ns at 33.0 "$cbr3 start" $ns at 48.0 "$cbr3 stop" $ns at 49.0 "$cbr4 start" $ns at 64.0 "$cbr4 stop" $ns at 65.0 "$cbr5 start" $ns at 80.0 "$cbr5 stop" $ns at 81.0 "$cbr6 start" $ns at 96.0 "$cbr6 stop" $ns at 101.0 "$ftp1 start" $ns at 101.5 "$ftp1 stop" $ns at 102.0 "$ftp2 start" $ns at 102.5 "$ftp2 stop" $ns at 103.0 "$ftp3 start" $ns at 103.5 "$ftp3 stop" $ns at 104.0 "$ftp4 start" $ns at 104.4 "$ftp4 stop" $ns at 105.0 "$ftp5 start" $ns at 105.4 "$ftp5 stop" $ns at 106.0 "$ftp6 start" $ns at 106.39 "$ftp6 stop"

# Telling nodes when the simulation ends for {set i 0} {$i < $val(nn) } { incr i } { $ns at $val(stop) "$mnode_($i) reset;" }

# Ending nam and the simulation

$ns at $val(stop) "$ns nam-end-wireless $val(stop)" $ns at $val(stop) "stop"

$ns at [expr $val(stop) + 0.01] "puts \"end simulation\"; $ns halt" proc stop {} {

global ns tracefd namtrace $ns flush-trace

close $tracefd close $namtrace

exec nam nam-tree.nam &

exec awk -f filter.awk trace-tree.tr & }

(52)

Lampiran 8

F ile

TCL

Skema Simulasi C dengan

receive rate

0,9

# Generate Parameters

set val(chan) Channel/WirelessChannel ;# channel type

set val(prop) Propagation/Shadowing ;# radio-propagation model set val(netif) Phy/WirelessPhy/802_15_4 ;# network interface type set val(mac) Mac/802_15_4 ;# MAC type

set val(ifq) Queue/DropTail/PriQueue ;# interface queue type set val(ll) LL ;# link layer type set val(ant) Antenna/OmniAntenna ;# antenna model set val(ifqlen) 10 ;# max packet in ifq set val(nn) 11 ;# number of mobilenodes

set val(rp) AODV ;# protocol type

set val(x) 3000 ;# X dimension of topography set val(y) 3000 ;# Y dimension of topography set val(stop) 120 ;# simulation period

Phy/WirelessPhy set RXThresh_ 2.62499e-11 ;# -r 0.9

# Header

set ns [new Simulator] set tracefd [open trace-tree.tr w] set namtrace [open nam-tree.nam w] $ns trace-all $tracefd

$ns namtrace-all-wireless $namtrace $val(x) $val(y)

# Set up topography object set topo [new Topography] $topo load_flatgrid $val(x) $val(y) set god_ [create-god $val(nn)]

# Configure the node

$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) \

-channel [new $val(chan)] \ -topoInstance $topo \ -agentTrace ON \

for {set i 0} {$i < $val(nn) } { incr i } { set mnode_($i) [$ns node]

}

(53)

$mnode_(0) set Z_ 0.0

$mnode_(1) set X_ 1100.0 $mnode_(1) set Y_ 2700.0 $mnode_(1) set Z_ 0.0

$mnode_(2) set X_ 1900.0 $mnode_(2) set Y_ 2700.0 $mnode_(2) set Z_ 0.0

$mnode_(3) set X_ 500.0 $mnode_(3) set Y_ 1900.0 $mnode_(3) set Z_ 0.0

$mnode_(4) set X_ 1100.0 $mnode_(4) set Y_ 1900.0 $mnode_(4) set Z_ 0.0

$mnode_(5) set X_ 1900.0 $mnode_(5) set Y_ 1900.0 $mnode_(5) set Z_ 0.0

$mnode_(6) set X_ 2500.0 $mnode_(6) set Y_ 1900.0 $mnode_(6) set Z_ 0.0

$mnode_(7) set X_ 500.0 $mnode_(7) set Y_ 400.0 $mnode_(7) set Z_ 0.0

$mnode_(8) set X_ 1100.0 $mnode_(8) set Y_ 700.0 $mnode_(8) set Z_ 0.0

$mnode_(9) set X_ 1900.0 $mnode_(9) set Y_ 700.0 $mnode_(9) set Z_ 0.0

$mnode_(10) set X_ 2500.0 $mnode_(10) set Y_ 400.0 $mnode_(10) set Z_ 0.0

for {set i 0} {$i < $val(nn)} { incr i } { $ns initial_node_pos $mnode_($i) 20 }

#Setup a UDP connection set udp1 [new Agent/UDP]

(54)

set sink1 [new Agent/Null]

$ns attach-agent $mnode_(3) $sink1 $ns connect $udp1 $sink1

$udp1 set fid_ 1

set udp2 [new Agent/UDP]

$ns attach-agent $mnode_(3) $udp2 set sink2 [new Agent/Null]

$ns attach-agent $mnode_(1) $sink2 $ns connect $udp2 $sink2

$udp2 set fid_ 2

set udp3 [new Agent/UDP]

$ns attach-agent $mnode_(1) $udp3 set sink3 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink3 $ns connect $udp3 $sink3

$udp3 set fid_ 3

set udp4 [new Agent/UDP]

$ns attach-agent $mnode_(0) $udp4 set sink4 [new Agent/Null]

$ns attach-agent $mnode_(2) $sink4 $ns connect $udp4 $sink4

$udp4 set fid_ 4

set udp5 [new Agent/UDP]

$ns attach-agent $mnode_(2) $udp5 set sink5 [new Agent/Null]

$ns attach-agent $mnode_(5) $sink5 $ns connect $udp5 $sink5

$udp5 set fid_ 5

set udp6 [new Agent/UDP]

$ns attach-agent $mnode_(5) $udp6 set sink6 [new Agent/Null]

$ns attach-agent $mnode_(9) $sink6 $ns connect $udp6 $sink6

$udp6 set fid_ 6

#Setup a TCP connection set tcp1 [new Agent/TCP]

$ns attach-agent $mnode_(10) $tcp1 set sink7 [new Agent/TCPSink] $ns attach-agent $mnode_(6) $sink7 $ns connect $tcp1 $sink7

(55)

set tcp2 [new Agent/TCP]

$ns attach-agent $mnode_(6) $tcp2 set sink8 [new Agent/TCPSink] $ns attach-agent $mnode_(2) $sink8 $ns connect $tcp2 $sink8

$tcp2 set fid_ 8 $sink8 set fid_ 8 $tcp2 set packetSize_ 24

set tcp3 [new Agent/TCP]

$ns attach-agent $mnode_(2) $tcp3 set sink9 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink9 $ns connect $tcp3 $sink9

$tcp3 set fid_ 9 $sink9 set fid_ 9 $tcp3 set packetSize_ 24

set tcp4 [new Agent/TCP]

$ns attach-agent $mnode_(0) $tcp4 set sink10 [new Agent/TCPSink] $ns attach-agent $mnode_(1) $sink10 $ns connect $tcp4 $sink10

$tcp4 set fid_ 10 $sink10 set fid_ 10 $tcp4 set packetSize_ 24

set tcp5 [new Agent/TCP]

$ns attach-agent $mnode_(1) $tcp5 set sink11 [new Agent/TCPSink] $ns attach-agent $mnode_(4) $sink11 $ns connect $tcp5 $sink11

$tcp5 set fid_ 11 $sink11 set fid_ 11 $tcp5 set packetSize_ 24

set tcp6 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp6 set sink12 [new Agent/TCPSink] $ns attach-agent $mnode_(8) $sink12 $ns connect $tcp6 $sink12

$tcp6 set fid_ 12 $sink12 set fid_ 12 $tcp6 set packetSize_ 24

(56)

$cbr1 set type_ CBR $cbr1 set packet_size_ 24 $cbr1 set rate_ 448Kb $cbr1 set interval_ 0.5

set cbr2 [new Application/Traffic/CBR] $cbr2 attach-agent $udp2

$cbr2 set type_ CBR $cbr2 set packet_size_ 24 $cbr2 set rate_ 448Kb $cbr2 set interval_ 0.5

set cbr3 [new Application/Traffic/CBR] $cbr3 attach-agent $udp3

$cbr3 set type_ CBR $cbr3 set packet_size_ 24 $cbr3 set rate_ 448Kb $cbr3 set interval_ 0.5

set cbr4 [new Application/Traffic/CBR] $cbr4 attach-agent $udp4

$cbr4 set type_ CBR $cbr4 set packet_size_ 24 $cbr4 set rate_ 448Kb $cbr4 set interval_ 0.5

set cbr5 [new Application/Traffic/CBR] $cbr5 attach-agent $udp5

$cbr5 set type_ CBR $cbr5 set packet_size_ 24 $cbr5 set rate_ 448Kb $cbr5 set interval_ 0.25

set cbr6 [new Application/Traffic/CBR] $cbr6 attach-agent $udp6

$cbr6 set type_ CBR $cbr6 set packet_size_ 24 $cbr6 set rate_ 448Kb $cbr6 set interval_ 0.25

(57)

set ftp5 [new Application/FTP] $ftp5 attach-agent $tcp5 set ftp6 [new Application/FTP] $ftp6 attach-agent $tcp6

# Time Event for -r 0.9 $ns at 1.0 "$cbr1 start" $ns at 16.0 "$cbr1 stop" $ns at 17.0 "$cbr2 start" $ns at 32.0 "$cbr2 stop" $ns at 33.0 "$cbr3 start" $ns at 48.0 "$cbr3 stop" $ns at 49.0 "$cbr4 start" $ns at 64.0 "$cbr4 stop" $ns at 65.0 "$cbr5 start" $ns at 80.0 "$cbr5 stop" $ns at 81.0 "$cbr6 start" $ns at 95.7 "$cbr6 stop" $ns at 97.0 "$ftp1 start" $ns at 99.0 "$ftp1 stop" $ns at 100.0 "$ftp2 start" $ns at 102.0 "$ftp2 stop" $ns at 103.0 "$ftp3 start" $ns at 105.0 "$ftp3 stop" $ns at 106.0 "$ftp4 start" $ns at 108.0 "$ftp4 stop" $ns at 109.0 "$ftp5 start" $ns at 111.0 "$ftp5 stop" $ns at 112.0 "$ftp6 start" $ns at 114.0 "$ftp6 stop"

# Telling nodes when the simulation ends for {set i 0} {$i < $val(nn) } { incr i } { $ns at $val(stop) "$mnode_($i) reset;" }

# Ending nam and the simulation

$ns at $val(stop) "$ns nam-end-wireless $val(stop)" $ns at $val(stop) "stop"

$ns at [expr $val(stop) + 0.01] "puts \"end simulation\"; $ns halt" proc stop {} {

global ns tracefd namtrace $ns flush-trace

close $tracefd close $namtrace

exec nam nam-tree.nam &

exec awk -f filter.awk trace-tree.tr & }

(58)

Lampiran 9

F ile

TCL

Skema Simulasi C dengan

receive rate

0,8

# Generate Parameters

set val(chan) Channel/WirelessChannel ;# channel type

set val(prop) Propagation/Shadowing ;# radio-propagation model set val(netif) Phy/WirelessPhy/802_15_4 ;# network interface type set val(mac) Mac/802_15_4 ;# MAC type

set val(ifq) Queue/DropTail/PriQueue ;# interface queue type set val(ll) LL ;# link layer type set val(ant) Antenna/OmniAntenna ;# antenna model set val(ifqlen) 10 ;# max packet in ifq set val(nn) 11 ;# number of mobilenodes set val(rp) AODV ;# protocol type

set val(x) 3000 ;# X dimension of topography set val(y) 3000 ;# Y dimension of topography set val(stop) 120 ;# simulation period

Phy/WirelessPhy set RXThresh_ 3.9364e-11 ;# -r 0.8

# Header

set ns [new Simulator] set tracefd [open trace-tree.tr w] set namtrace [open nam-tree.nam w] $ns trace-all $tracefd

$ns namtrace-all-wireless $namtrace $val(x) $val(y)

# Set up topography object set topo [new Topography] $topo load_flatgrid $val(x) $val(y) set god_ [create-god $val(nn)]

# Configure the node

$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) \

-channel [new $val(chan)] \ -topoInstance $topo \ -agentTrace ON \

for {set i 0} {$i < $val(nn) } { incr i } { set mnode_($i) [$ns node]

}

(59)

$mnode_(0) set Z_ 0.0

$mnode_(1) set X_ 1100.0 $mnode_(1) set Y_ 2700.0 $mnode_(1) set Z_ 0.0

$mnode_(2) set X_ 1900.0 $mnode_(2) set Y_ 2700.0 $mnode_(2) set Z_ 0.0

$mnode_(3) set X_ 500.0 $mnode_(3) set Y_ 1900.0 $mnode_(3) set Z_ 0.0

$mnode_(4) set X_ 1100.0 $mnode_(4) set Y_ 1900.0 $mnode_(4) set Z_ 0.0

$mnode_(5) set X_ 1900.0 $mnode_(5) set Y_ 1900.0 $mnode_(5) set Z_ 0.0

$mnode_(6) set X_ 2500.0 $mnode_(6) set Y_ 1900.0 $mnode_(6) set Z_ 0.0

$mnode_(7) set X_ 500.0 $mnode_(7) set Y_ 400.0 $mnode_(7) set Z_ 0.0

$mnode_(8) set X_ 1100.0 $mnode_(8) set Y_ 700.0 $mnode_(8) set Z_ 0.0

$mnode_(9) set X_ 1900.0 $mnode_(9) set Y_ 700.0 $mnode_(9) set Z_ 0.0

$mnode_(10) set X_ 2500.0 $mnode_(10) set Y_ 400.0 $mnode_(10) set Z_ 0.0

for {set i 0} {$i < $val(nn)} { incr i } { $ns initial_node_pos $mnode_($i) 20 }

#Setup a UDP connection set udp1 [new Agent/UDP]

(60)

set sink1 [new Agent/Null]

$ns attach-agent $mnode_(3) $sink1 $ns connect $udp1 $sink1

$udp1 set fid_ 1

set udp2 [new Agent/UDP]

$ns attach-agent $mnode_(3) $udp2 set sink2 [new Agent/Null]

$ns attach-agent $mnode_(1) $sink2 $ns connect $udp2 $sink2

$udp2 set fid_ 2

set udp3 [new Agent/UDP]

$ns attach-agent $mnode_(1) $udp3 set sink3 [new Agent/Null]

$ns attach-agent $mnode_(0) $sink3 $ns connect $udp3 $sink3

$udp3 set fid_ 3

set udp4 [new Agent/UDP]

$ns attach-agent $mnode_(0) $udp4 set sink4 [new Agent/Null]

$ns attach-agent $mnode_(2) $sink4 $ns connect $udp4 $sink4

$udp4 set fid_ 4

set udp5 [new Agent/UDP]

$ns attach-agent $mnode_(2) $udp5 set sink5 [new Agent/Null]

$ns attach-agent $mnode_(5) $sink5 $ns connect $udp5 $sink5

$udp5 set fid_ 5

set udp6 [new Agent/UDP]

$ns attach-agent $mnode_(5) $udp6 set sink6 [new Agent/Null]

$ns attach-agent $mnode_(9) $sink6 $ns connect $udp6 $sink6

$udp6 set fid_ 6

#Setup a TCP connection set tcp1 [new Agent/TCP]

$ns attach-agent $mnode_(10) $tcp1 set sink7 [new Agent/TCPSink] $ns attach-agent $mnode_(6) $sink7 $ns connect $tcp1 $sink7

(61)

set tcp2 [new Agent/TCP]

$ns attach-agent $mnode_(6) $tcp2 set sink8 [new Agent/TCPSink] $ns attach-agent $mnode_(2) $sink8 $ns connect $tcp2 $sink8

$tcp2 set fid_ 8 $sink8 set fid_ 8 $tcp2 set packetSize_ 24

set tcp3 [new Agent/TCP]

$ns attach-agent $mnode_(2) $tcp3 set sink9 [new Agent/TCPSink] $ns attach-agent $mnode_(0) $sink9 $ns connect $tcp3 $sink9

$tcp3 set fid_ 9 $sink9 set fid_ 9 $tcp3 set packetSize_ 24

set tcp4 [new Agent/TCP]

$ns attach-agent $mnode_(0) $tcp4 set sink10 [new Agent/TCPSink] $ns attach-agent $mnode_(1) $sink10 $ns connect $tcp4 $sink10

$tcp4 set fid_ 10 $sink10 set fid_ 10 $tcp4 set packetSize_ 24

set tcp5 [new Agent/TCP]

$ns attach-agent $mnode_(1) $tcp5 set sink11 [new Agent/TCPSink] $ns attach-agent $mnode_(4) $sink11 $ns connect $tcp5 $sink11

$tcp5 set fid_ 11 $sink11 set fid_ 11 $tcp5 set packetSize_ 24

set tcp6 [new Agent/TCP]

$ns attach-agent $mnode_(4) $tcp6 set sink12 [new Agent/TCPSink] $ns attach-agent $mnode_(8) $sink12 $ns connect $tcp6 $sink12

$tcp6 set fid_ 12 $sink12 set fid_ 12 $tcp6 set packetSize_ 24

Referensi

Dokumen terkait

The explanations are about the literature review of SCADA (Supervisory Control and Data Acquisition), WSN (Wireless Sensor Network) and Zigbee 802.15.4

Pada bagian hasil dan pembahasan akan dibahas hasil pengujian protokol ZigBee pada WSN untuk sistem pengurasan air otomatis kolam ikan air tawar yang pembahasannya dibagi

Dari hasil grafik genetika (proses regenerasi), bila di plot pada diagram scatter , maka akan menghasilkan grafik pareto seperti pada Gambar 7, dimana akan tampak

Pada tahapan ini akan dibahas mengenai pengujian dan analisis performa dari sistem sensor parkir kendaraan bermotor yang telah dibangun dengan menggunakan protocol

Untuk mengetahui paket data yang ditransfer dan jumlah total paket data yang hilang memerlukan protokol routing yang bertugas menentukan jalur terpendek dari node

Referensi penelitian yang dilakukan oleh I Putu Agus Eka Pratama dalam bukunya yang berjudul Handbook Jaringan Komputer – Teori dan Praktik Berbasiskan Open

Jaringan ZigBee terdiri dari coordinator, Full Function Device (FFD) dan Reduced Function Device (RFD) [3]. Mekanisme keamanan ZigBee bukanlah protokol independen tunggal,

Proses iterasi dilakukan untuk menghasilkan konvergensi keanggotaan, dimana tidak lagi terjadi perpindahan anggota sensor node dari satu klaster ke klaster yang lain.. Hasil