Today's Topics:

   1. Re: Seg Faults (Pedro Estrela)
   2. Using an error model in NS2 (Daniel T. Fokum)
   3. MAC level throughput (Basim Javed)
   4. Re: Seg Faults (Claus Christmann)
   5. code for maodv (tanvi goel)
   6. Re: Traffic generation in a proc (Nabila khedimi)
   7. Re: Traffic generation in a proc (Claus Christmann)
   8. new power aware routing protocol in ns-2 (Arunrajkumar Parthiban)
   9. How to write packet replication in AODV / DSR / in NS2 tcl
      file? (AZHAR MOHD ARIS)
  10. post processing (Basim Javed)
  11. $opt(topo) not found in scenario file in leach (Fred Twistleton)
  12. Re: $opt(topo) not found in scenario file in leach
      (Claus Christmann)
  13. Re: post processing (Samer Bali)
  14. Re: Are there any documents for multi-channel assignment with
      single radio (Pedro Vale Estrela)
  15. help me to find out packet delivery ratio from trace file of
      wired-cum-wireless.tcl (subhra prakash saha)
  16. Implementation of AODV in NS (Olakunle Aruleba)


----------------------------------------------------------------------

Message: 1
Date: Tue, 20 Nov 2007 01:22:45 +0000
From: "Pedro Estrela" <[EMAIL PROTECTED]>
Subject: Re: [ns] Seg Faults
To: "Leonard Tracy" <[EMAIL PROTECTED]>
Cc: NS Users <[email protected]>
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1

use ifdefs to NOT redefine abort in those RNG files

as such, you'll see aborts everywhere except RNG fucntions



On 11/19/07, Leonard Tracy <[EMAIL PROTECTED]> wrote:
>
>
> Thanks for the suggestion.  I am having a problem with implementing
> this.  First off, I get quite a few errors unless I do an #ifdef to
> make sure that STDLIB_H gets included first. (It complains when stdlib
> tries to declare abort after).  Wrapping an #ifdef STDLIB_H around the
> macro definitions seems to fix this.  I define uan_abrt in a file that
> is being compiled, uan-tools.cc, but I am failing in the link stage
> with an undefined reference.
>
> tools/rng.o: In function `RNG::set_seed(unsigned long const*)':
> rng.cc:(.text+0x13b2): undefined reference to `uan_abrt'
> tools/rng.o: In function `RNG::set_package_seed(unsigned long const*)':
> rng.cc:(.text+0x1440): undefined reference to `uan_abrt'
> tools/rng.o: In function `RNG::set_seed(RNG::RNGSources, int)':
> rng.cc:(.text+0x14bf): undefined reference to `uan_abrt'
> rng.cc:(.text+0x14e1): undefined reference to `uan_abrt'
> tools/rng.o: In function `RNGTest::RNGTest()':
> rng.cc:(.text+0x1b71): undefined reference to `uan_abrt'
> tools/rng.o:rng.cc:(.text+0x1be4): more undefined references to
> `uan_abrt' follow
> collect2: ld returned 1 exit status
>
> Note that the spelling, uan_abrt is correct.
>
> Have I done something obvious to other people?
>
> Leonard
>
> On Nov 16, 2007 7:52 PM, Leonard Tracy <[EMAIL PROTECTED]> wrote:
> > Hi all,
> >
> > Two questions:
> >
> > 1.
> > I've been trying to debug some seg faults I've been having.  They
> > appear to be related to tracing dropped packets.  GDB's trace pack
> > ends in DoWrite called by TclWrite.  Has anybody else had experience
> > with this?  I am running NS 2.31 on Linux (Gutsy Ubuntu).  I am using
> > the old format of wireless traces.
> >
> > This problem seems to be related to the load placed on the network.  I
> believe
> > this has to do with a lot of Packets being dropped from the IFQ.
> > The problem seems to be gone, or at least much less likely to occur,
> > now that I've altered Queue::reset to use Packet::free as opposed to
> drop.
> >
> > 2.
> > As a possibly related issue.  It seems that NS often quits early.  I
> > am not sure if this
> > is a problem with my code or something other people have noticed.
> > I've been running long
> > simulations (10000 seconds), and 90% (or more) of the time (after
> > making the above change) NS will
> > complete normally.  The other simulations will end at a random much
> > earlier time, but NS still
> > completes without an error code.  Does anybody have an idea of what
> > would cause this?
> >
> > Leonard
> >
>
>


------------------------------

Message: 2
Date: Mon, 19 Nov 2007 20:17:40 -0600 (CST)
From: "Daniel T. Fokum" <[EMAIL PROTECTED]>
Subject: [ns] Using an error model in NS2
To: [email protected]
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain;charset=iso-8859-1

I am working on a project to study the effect of channel errors over a
wireless link.  I have read chapter 13 of the NS2 manual and I am not
quite clear as to how to implement the error model in ns2.  Any pointers
will be accepted.

Thanks,
Daniel



------------------------------

Message: 3
Date: Tue, 20 Nov 2007 14:07:28 +0100
From: "Basim Javed" <[EMAIL PROTECTED]>
Subject: [ns] MAC level throughput
To: "NS Users" <[email protected]>
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1

dear all

How can I make a trace file which can be processed to find out the
802.11eMAC level throughput? Is there another way?

thanks
B


------------------------------

Message: 4
Date: Tue, 20 Nov 2007 09:02:10 -0500
From: Claus Christmann <[EMAIL PROTECTED]>
Subject: Re: [ns] Seg Faults
To: Pedro Estrela <[EMAIL PROTECTED]>,    Leonard Tracy
        <[EMAIL PROTECTED]>, NS Users <[email protected]>
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1

Hi list
The proposed work around sounds interesting and I took the chance to put
it on the wiki: http://nsnam.isi.edu/nsnam/index.php/Hacks

Please extend the wiki with your results for this issue.

Also, if you have any other "hacks" or code snipplets that you created
in order to make you ns-2 experience more smooth, please add it there also.

Thanks a lot,

Claus

Pedro Estrela wrote:
> use ifdefs to NOT redefine abort in those RNG files
>
> as such, you'll see aborts everywhere except RNG fucntions
>
>
>
> On 11/19/07, Leonard Tracy <[EMAIL PROTECTED]> wrote:
>>
>> Thanks for the suggestion.  I am having a problem with implementing
>> this.  First off, I get quite a few errors unless I do an #ifdef to
>> make sure that STDLIB_H gets included first. (It complains when stdlib
>> tries to declare abort after).  Wrapping an #ifdef STDLIB_H around the
>> macro definitions seems to fix this.  I define uan_abrt in a file that
>> is being compiled, uan-tools.cc, but I am failing in the link stage
>> with an undefined reference.
>>
>> tools/rng.o: In function `RNG::set_seed(unsigned long const*)':
>> rng.cc:(.text+0x13b2): undefined reference to `uan_abrt'
>> tools/rng.o: In function `RNG::set_package_seed(unsigned long const*)':
>> rng.cc:(.text+0x1440): undefined reference to `uan_abrt'
>> tools/rng.o: In function `RNG::set_seed(RNG::RNGSources, int)':
>> rng.cc:(.text+0x14bf): undefined reference to `uan_abrt'
>> rng.cc:(.text+0x14e1): undefined reference to `uan_abrt'
>> tools/rng.o: In function `RNGTest::RNGTest()':
>> rng.cc:(.text+0x1b71): undefined reference to `uan_abrt'
>> tools/rng.o:rng.cc:(.text+0x1be4): more undefined references to
>> `uan_abrt' follow
>> collect2: ld returned 1 exit status
>>
>> Note that the spelling, uan_abrt is correct.
>>
>> Have I done something obvious to other people?
>>
>> Leonard
>>
>> On Nov 16, 2007 7:52 PM, Leonard Tracy <[EMAIL PROTECTED]> wrote:
>>> Hi all,
>>>
>>> Two questions:
>>>
>>> 1.
>>> I've been trying to debug some seg faults I've been having.  They
>>> appear to be related to tracing dropped packets.  GDB's trace pack
>>> ends in DoWrite called by TclWrite.  Has anybody else had experience
>>> with this?  I am running NS 2.31 on Linux (Gutsy Ubuntu).  I am using
>>> the old format of wireless traces.
>>>
>>> This problem seems to be related to the load placed on the network.  I
>> believe
>>> this has to do with a lot of Packets being dropped from the IFQ.
>>> The problem seems to be gone, or at least much less likely to occur,
>>> now that I've altered Queue::reset to use Packet::free as opposed to
>> drop.
>>> 2.
>>> As a possibly related issue.  It seems that NS often quits early.  I
>>> am not sure if this
>>> is a problem with my code or something other people have noticed.
>>> I've been running long
>>> simulations (10000 seconds), and 90% (or more) of the time (after
>>> making the above change) NS will
>>> complete normally.  The other simulations will end at a random much
>>> earlier time, but NS still
>>> completes without an error code.  Does anybody have an idea of what
>>> would cause this?
>>>
>>> Leonard
>>>
>>

--
Claus Christmann
Graduate Research Assistant

Georgia Institute of Technology
270 Ferst Drive
Atlanta, GA 30332-0150

http://uav.ae.gatech.edu



------------------------------

Message: 5
Date: Tue, 20 Nov 2007 20:03:06 +0530
From: "tanvi goel" <[EMAIL PROTECTED]>
Subject: [ns] code for maodv
To: [email protected]
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1

i need the simulation code for maodv for ns2 for my undergraduate
level project... ..

it is urgent...
thanking you



------------------------------

Message: 6
Date: Tue, 20 Nov 2007 14:38:48 +0000
From: Nabila khedimi <[EMAIL PROTECTED]>
Subject: Re: [ns] Traffic generation in a proc
To: Mohammed Abu Hajar <[EMAIL PROTECTED]>
Cc: NS_2 Mailing List <[email protected]>
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="iso-8859-1"


Hi,
I am still wondering about the no generation of a trafic when it is
done by a procedure  although the same code made outside works, but
when I put it in a procedure it does not!!!  anyone has an idea
nabila


Date: Mon, 19 Nov 2007 10:46:30 -0800From: [EMAIL PROTECTED]:
Re: [ns] Traffic generation in a procTo: [EMAIL PROTECTED]:
[email protected]




Hi ns user,
Try to wirte the cbr traffic without procedure to show it is correct
or not. Like

# Traffic Source 1: Mobile node1->node3, flowid=1set udp1 [new
Agent/UDP]$ns_ attach-agent $node_(1) $udp1$udp1 set class_ 1$udp1 set
fid_ 1set cbr1 [new Application/Traffic/CBR]$cbr1 attach-agent
$udp1$cbr1 set rate_ 20kb$cbr1 set packetSize_ 512#$cbr1 set interval_
0.2
# Set loss monitor (to count bytes) at node 3set null1 [new
Agent/Null]$ns_ attach-agent $node_(8) $null1
# Connect the CBR generator to the loss monitor$ns_ connect $udp1 $null1


Cheers,
Mohammed AbuHajar
----- Original Message ----From: Nabila khedimi
<[EMAIL PROTECTED]>To: [EMAIL PROTECTED]: Monday, November 19,
2007 7:27:35 PMSubject: [ns] Traffic generation in a procHi every
one,I wrote a tcl proc for the generation of a cbr trafic :proc
generate_cbr_traffic {agent_src size rate start_time end_time} {
global ns          puts "In generate cbr: $agent_src $size $rate
$start_time $end_time" set cbr_ [new Application/Traffic/CBR] $cbr_
set type_ CBR $cbr_ set packetsize_ $size $cbr_ set rate_ $rate $cbr_
attach-agent $agent_src $ns at $start_time "$cbr_ start" $ns at
$end_time "$cbr_ stop"}I made the connection of the udp agents outside
the procedure , when I call the procedure, in the NAM environment no
traffic was generated , Thanks for your
helpnabila_________________________________________________________________Your
smile counts. The more smiles you share, the more we donate.  Join
in.www.windowslive.com/smile?ocid=TXT_TAGLM_Wave2_oprsmilewlhmtagline


Be a better pen pal. Text or chat with friends inside Yahoo! Mail. See how.
_________________________________________________________________
Have fun while connecting on Messenger! Click here to learn more.
http://entertainment.sympatico.msn.ca/WindowsLiveMessenger

------------------------------

Message: 7
Date: Tue, 20 Nov 2007 10:39:11 -0500
From: Claus Christmann <[EMAIL PROTECTED]>
Subject: Re: [ns] Traffic generation in a proc
To: [email protected]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1

Hi Nabila,

looks like you only declared ns as a global variable inside your
procedure. Is this sufficient? I am not sure, but maybe reading up on
local variables and their scope in tcl is a starter...

Please add any insight you gained into the ns2 wiki
(http://nsnam.isi.edu/nsnam/index.php/Main_Page) so that others can
learn about and from your work.

Claus

Nabila khedimi wrote:
>
> Hi,
> I am still wondering about the no generation of a trafic when it is done by a 
> procedure  although the same code made outside works, but when I put it in a 
> procedure it does not!!!  anyone has an idea
> nabila
>
>
> Date: Mon, 19 Nov 2007 10:46:30 -0800From: [EMAIL PROTECTED]: Re: [ns] 
> Traffic generation in a procTo: [EMAIL PROTECTED]: [email protected]
>
>
>
>
> Hi ns user,
> Try to wirte the cbr traffic without procedure to show it is correct or not. 
> Like
>
> # Traffic Source 1: Mobile node1->node3, flowid=1set udp1 [new Agent/UDP]$ns_ 
> attach-agent $node_(1) $udp1$udp1 set class_ 1$udp1 set fid_ 1set cbr1 [new 
> Application/Traffic/CBR]$cbr1 attach-agent $udp1$cbr1 set rate_ 20kb$cbr1 set 
> packetSize_ 512#$cbr1 set interval_ 0.2
> # Set loss monitor (to count bytes) at node 3set null1 [new Agent/Null]$ns_ 
> attach-agent $node_(8) $null1
> # Connect the CBR generator to the loss monitor$ns_ connect $udp1 $null1
>
>
> Cheers,
> Mohammed AbuHajar
> ----- Original Message ----From: Nabila khedimi <[EMAIL PROTECTED]>To: [EMAIL 
> PROTECTED]: Monday, November 19, 2007 7:27:35 PMSubject: [ns] Traffic 
> generation in a procHi every one,I wrote a tcl proc for the generation of a 
> cbr trafic :proc generate_cbr_traffic {agent_src size rate start_time 
> end_time} { global ns          puts "In generate cbr: $agent_src $size $rate 
> $start_time $end_time" set cbr_ [new Application/Traffic/CBR] $cbr_ set type_ 
> CBR $cbr_ set packetsize_ $size $cbr_ set rate_ $rate $cbr_ attach-agent 
> $agent_src $ns at $start_time "$cbr_ start" $ns at $end_time "$cbr_ stop"}I 
> made the connection of the udp agents outside the procedure , when I call the 
> procedure, in the NAM environment no traffic was generated , Thanks for your 
> helpnabila_________________________________________________________________Your
>  smile counts. The more smiles you share, the more we donate.  Join 
> in.www.windowslive.com/smile?ocid=TXT_TAGLM_Wave2_oprsmilewlhmtagline
>
>
> Be a better pen pal. Text or chat with friends inside Yahoo! Mail. See how.
> _________________________________________________________________
> Have fun while connecting on Messenger! Click here to learn more.
> http://entertainment.sympatico.msn.ca/WindowsLiveMessenger

--
Claus Christmann
Graduate Research Assistant

Georgia Institute of Technology
270 Ferst Drive
Atlanta, GA 30332-0150

http://uav.ae.gatech.edu



------------------------------

Message: 8
Date: Tue, 20 Nov 2007 21:33:09 +0530
From: "Arunrajkumar Parthiban" <[EMAIL PROTECTED]>
Subject: [ns] new power aware routing protocol in ns-2
To: [email protected]
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1

Hi
    Do anyone know how to design a new power aware routing protocol
for sensor networks?
    Help me ..if anyone knows. atleast the steps to design.

--
Regards,
P.Arun Raj Kumar
M.Tech Final Year Computer Science
NIT,Trichy.
INDIA



------------------------------

Message: 9
Date: Wed, 21 Nov 2007 01:10:45 +0800
From: "AZHAR MOHD ARIS" <[EMAIL PROTECTED]>
Subject: [ns] How to write packet replication in AODV / DSR / in NS2
        tcl     file?
To: [email protected]
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1

Good day ..

Are any body have an experience in doing replication on Adhoc ? hoefully can
send the script for me ..

Thanks in advance
--
AZHAR MOHD ARIS (GS16917)
Master in Computer Science Candidate (Distributed Computing)
University Putra of Malaysia
+^019.613.742.2
YM: azuan76


------------------------------

Message: 10
Date: Tue, 20 Nov 2007 18:35:31 +0100
From: "Basim Javed" <[EMAIL PROTECTED]>
Subject: [ns] post processing
To: "NS Users" <[email protected]>
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1

dear all

an urgent help needed: can anybody comment on using AWK & PERL for NS2 trace
files, regarding ease of thier usage, and finding relevant scripts for
802.11e and TCP for both?

thanks a lot.

kind regards
B


------------------------------

Message: 11
Date: Tue, 20 Nov 2007 12:28:17 -0600
From: "Fred Twistleton" <[EMAIL PROTECTED]>
Subject: [ns] $opt(topo) not found in scenario file in leach
To: [email protected]
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1

Hi,

I get this error message when i try to run wireless.tcl:

$ ns tcl/ex/wireless.tcl -sc mit/uAMPS/sims/nodescen -rp leach -x 1000
-y 1000 -nn 101 -stop 100 -eq_energy 1 -init_energy 2 -filename
leach_file -dirname leach_dir -num_clusters 5 -bs_x 0 -bs_y 0
num_nodes is set 101
Creating sensor nodes...
INITIALIZE THE LIST xListHead
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
96 97 98 99 (100 == BS)
Loading connection pattern...
Loading scenario file...
can't read "opt(topo)": no such element in array
    while executing
"open $opt(topo) r"
    invoked from within
"set filename [open $opt(topo) r]"
    (file "mit/uAMPS/sims/nodescen" line 3)
    invoked from within
"source.orig mit/uAMPS/sims/nodescen"
    ("uplevel" body line 1)
    invoked from within
"uplevel source.orig [list $fileName]"
    invoked from within
"if [$instance_ is_http_url $fileName] {
set buffer [$instance_ read_url $fileName]
uplevel eval $buffer
} else {
uplevel source.orig [list $fileName]
..."
    (procedure "source" line 8)
    invoked from within
"source $opt(sc)"
    invoked from within
"if { $opt(sc) == "" } {
        puts "*** NOTE: no scenario file specified."
        set opt(sc) "none"
} else {
        puts "Loading scenario file..."
        source $op..."

i know that it is expecting $opt(topo) as a command line argument, and
thats why the error, but i dont know how to check if it is passing the
arg or not. I mean, it is not calling any function from that file
[nodescen]. Can anyone please tell me where and how i can check this?
i've been stuck at this for quite long now; please do help if u have
any pointers. :(

Thank you.



------------------------------

Message: 12
Date: Tue, 20 Nov 2007 14:04:30 -0500
From: Claus Christmann <[EMAIL PROTECTED]>
Subject: Re: [ns] $opt(topo) not found in scenario file in leach
To: [email protected]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1

Please see inline below:

Fred Twistleton wrote:
> Hi,
>
> I get this error message when i try to run wireless.tcl:
>
> $ ns tcl/ex/wireless.tcl -sc mit/uAMPS/sims/nodescen -rp leach -x 1000
i.e. you execute wireless.tcl and overwrite the scenario file with
mit/uAMPS/...

> -y 1000 -nn 101 -stop 100 -eq_energy 1 -init_energy 2 -filename
> leach_file -dirname leach_dir -num_clusters 5 -bs_x 0 -bs_y 0
> num_nodes is set 101
> Creating sensor nodes...
> INITIALIZE THE LIST xListHead
> 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
> 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
> 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
> 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
> 96 97 98 99 (100 == BS)
> Loading connection pattern...
> Loading scenario file...
This seems to be the message printed by wireless.tcl shortly before it
sources opt(sc) [which is your mit/uAMPS/...

OK the follwoing (I guess) refers to stuff from your uAMPS file
> can't read "opt(topo)": no such element in array
>     while executing
> "open $opt(topo) r"
>     invoked from within
> "set filename [open $opt(topo) r]"
>     (file "mit/uAMPS/sims/nodescen" line 3)
>     invoked from within
> "source.orig mit/uAMPS/sims/nodescen"
>     ("uplevel" body line 1)
>     invoked from within
> "uplevel source.orig [list $fileName]"
>     invoked from within
> "if [$instance_ is_http_url $fileName] {
> set buffer [$instance_ read_url $fileName]
> uplevel eval $buffer
> } else {
> uplevel source.orig [list $fileName]
> ..."
which means that somewhere in your uAMPS file the $opt(topo) is sourced:
>     (procedure "source" line 8)
>     invoked from within
> "source $opt(sc)"
>     invoked from within
> "if { $opt(sc) == "" } {
>         puts "*** NOTE: no scenario file specified."
>         set opt(sc) "none"
> } else {
>         puts "Loading scenario file..."
>         source $op..."
The question is: what topography do you want to load? is mit/uAMPS/... a
valid scenario file? It doesn't look like that to me from what i see
here...

I would simply recommend to simply set $opt(topo) in the tcl file to
whatever you wnat it to be and forget about the command line.

set opt(topo) "PATH/TO/WHATYOUWANT"

>
> i know that it is expecting $opt(topo) as a command line argument, and
> thats why the error, but i dont know how to check if it is passing the
> arg or not. I mean, it is not calling any function from that file
> [nodescen]. Can anyone please tell me where and how i can check this?
> i've been stuck at this for quite long now; please do help if u have
> any pointers. :(
>
> Thank you.
>
Please add any insight you gained into the ns2 wiki
(http://nsnam.isi.edu/nsnam/index.php/Main_Page) so that others can
learn about and from your work.

Good Luck.

Claus



--
Claus Christmann
Graduate Research Assistant

Georgia Institute of Technology
270 Ferst Drive
Atlanta, GA 30332-0150

http://uav.ae.gatech.edu



------------------------------

Message: 13
Date: Mon, 1 Oct 2007 22:13:00 +0200
From: "Samer Bali" <[EMAIL PROTECTED]>
Subject: Re: [ns] post processing
To: "'Basim Javed'" <[EMAIL PROTECTED]>
Cc: [email protected]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain;       charset="us-ascii"

Dear Basim,



You can download the software from the following link:

http://www.ikt.uni-hannover.de/fileadmin/institut/mitarbeiter/bali/pl-sim-1.
1.zip

there is a text file that explain how to use the software.



If you need more information about the network scenario (node mobility,
traffic, . etc.) I refer you to the following paper:

S. Bali, J. Steuer and K. Jobmann, "Performance of Three Routing Protocols
in UWB Ad Hoc Network Deployed in an Industrial Application," accepted in
GLOBECOM'07: IEEE Workshop on Wireless Mesh and Sensor Networks, 30 Nov,
2007. Downloadable at:

 http://www.ikt.uni-hannover.de/index.php?id=publikationen0



Best Regards,

Samer



From: Basim Javed [mailto:[EMAIL PROTECTED]
Sent: Dienstag, 20. November 2007 19:20
To: [EMAIL PROTECTED]
Subject: post processing



Dear Samir



I read one of your ns list message regarding post processing of trace files.
You wrote:



grep -e "r -t " output.tr > temp1.tr

grep -e "tcp -Il $rpktsize" temp1.tr > temp2.tr
grep -e "-Nl AGT " temp2.tr >
datarecv.tr

" All these steps are done automatically by a certain software written in
tcl and matlab that I did it for my own simulations"



Do you mean that all of these grep commands can be run in TCL? and how about
matlab?



thanks



basim



------------------------------

Message: 14
Date: Mon, 19 Nov 2007 17:53:54 -0000
From: "Pedro Vale Estrela" <[EMAIL PROTECTED]>
Subject: Re: [ns] Are there any documents for multi-channel assignment
        with    single radio
To: "'Claus Christmann'" <[EMAIL PROTECTED]>, "'ns users'"
        <[email protected]>
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain;       charset="us-ascii"


>
> Please add any insight you gained into the ns2 wiki
> (http://nsnam.isi.edu/nsnam/index.php/Main_Page) so that others can
> learn about and from your work.
>
> CLaus
>


Hi claus,

Great thing that you are doing for NS2 - definitely, what the NS2 wiki needs
is the persons that are aided in any way, should post their findings in the
wiki. That's exactly what I'm requesting since some time:

http://tagus.inesc-id.pt/~pestrela/ns2/


"Call for volunteers:  If you find these help pages useful, please volunteer
some of your time to help other NS users, by moving these pages into the new
NS2 wiki. More information here and here. Thanks!"

http://mailman.isi.edu/pipermail/ns-users/2006-January/053560.html
http://mailman.isi.edu/pipermail/ns-users/2006-June/056015.html



Pedro Estrela








------------------------------

Message: 15
Date: Tue, 20 Nov 2007 16:00:36 +0530
From: "subhra prakash saha" <[EMAIL PROTECTED]>
Subject: [ns] help me to find out packet delivery ratio from trace
        file of wired-cum-wireless.tcl
To: [email protected]
Message-ID:
        <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=ISO-8859-1

hi
i m doing gateway discovery method using a sample file of wired-cum-wireless
scenareo.but i m unable to find out number of receiving packets from the
trace file.plz any body help me to find out total number of received packets
in wired nodes.my id:
[EMAIL PROTECTED]
thanking u .....
subhra prakash saha


------------------------------

Message: 16
Date: Wed, 21 Nov 2007 01:05:38 +0100
From: Olakunle Aruleba <[EMAIL PROTECTED]>
Subject: [ns] Implementation of AODV in NS
To: <[email protected]>
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="iso-8859-1"


Hi All,
I'm trying to modify AODV protocol in NS  e.g delaying the forwarding
of route request packet by intermediate node.
Does anyone know the part of NS code and can modify to achieve this?
I've modify the code but seem to not to be achieving the desired
result.
Also if a packet have been schedule using

Scheduler::instance().schedule();

How can one stop or delete the schedule for the given event ?

Regards
Olakunle
_________________________________________________________________
Explore the seven wonders of the world
http://search.msn.com/results.aspx?q=7+wonders+world&mkt=en-US&form=QBRE



------------------------------

_______________________________________________
Ns-users mailing list
[email protected]
http://mailman.isi.edu/mailman/listinfo/ns-users


End of Ns-users Digest, Vol 47, Issue 19
****************************************



-- 
Winners make things happen
Losers let things happen

Reply via email to