[ns] slotted aloha and watm

2006-05-09 Thread rakesh reddy
Hi all, Can anyone help me out in simulating slotted aloha in ns-2.28?? Does anyone know about any patches available for wireless atm support in ns???Thanks in advance with regards K.Rakesh Reddy __ Yahoo! India An

[ns] error install ns-allinone-2.1b8a

2006-05-09 Thread Tomáš Pataj
Hi NS users, I was installing ns-allinone-2.1b8a under Cygwin for Windows XP and I got this error: -DHAVE_UNISTD_H=1 -DHAVE_LIMITS_H=1 -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DNO_VALUES_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE

[ns] help:can somebody give me an module?

2006-05-09 Thread 董德才
Hi, Recently,I take part in a study about vertical handover,if somebody has been doing about this project,can you give me you module to read and do some research,thanks a lot.If you have the module about CDMA or TDCDMA,that is more preciated,thank you very much. Faithfully yours, Dong Decai

[ns] Is there any tools to visualize the graph created by GT-ITM?

2006-05-09 Thread 陈星
hello, After I create a graph with about 300 nodes using GT-ITM, I want to visualize it. Can anyone tell me how to do it? Xing

[ns] Interval for HELLO message

2006-05-09 Thread choong cheong
Hi all, How to set the interval of HELLO message in ns2. I did change the HELLO message in aodv.h from 1 to 0.1, 0.3.0.5 and 0.7, but the output of average packet size and number of nodes sent are same output for 4 experiements. I expected the smallest interval value (0.1) should have t

[ns] Wireless Token Ring module

2006-05-09 Thread choong cheong
Hi all, Is anyone can share the wireless token ring module with me? Your kindly consideariton will be much appreciated. Best regards, Choong Wing Cheong - Yahoo! Mail goes everywhere you do. Get it on your phone.

[ns] creating node-movements with setdest

2006-05-09 Thread Noelia Galisteo Ruiz
-- Hi everybody! If I write ./setdest -n 100 -p 2.0 -s 10.0 -t 200 -x 500 -y 500 > set.tcl I can´t generate this scenario. Have setdest any limitation? I think this is all right only until 50 nodes. Can somebody help me? Thanks

Re: [ns] Interval for HELLO message

2006-05-09 Thread guzinu
Hi Choong, handle function for sending hello messages in aodv.cc define a variable "interval". "Interval" variable determine the duration between the hello messages. And is calculated as follows: double interval = MinHelloInterval + ((MaxHelloInterval - MinHelloInterval) * Random::uniform()

Re: [ns] developing new queue management

2006-05-09 Thread Faisal Siddiqui
Hi, I think it is better to stop creating packets when we hit the size limit of the queue buffer. By doing this, we are certain that we are not losing any packets. Furthermore, we don't have to create "reservoirs" to store these created packets so that they can be added into the queue when there

[ns] Some have a TCP AGENT-APLICATION

2006-05-09 Thread Edwin Cruz
Hi I develop a module a h.323 module for NS-2. But I have some questions about the use of the tcp agents. Do someone have an example of new TCP agent/aplication, I check the tutorials and the ns manual. Thanks in advanced Ing. Edwin Cruz. Área de Comunicaciones. 50613800 Ext. 6357

[ns] problems with installing ns2.1b9a

2006-05-09 Thread lewapryb
Hi everyone! I am trying to install ns-2.1b9a but after some errors I managed to solve I encountered the one I can not. It is: In file included from classifier/classifier-hier.h:36, from routing/rtmodule.h:33, from common/node.h:61, from mac/c

[ns] What happens when I call set node [$ns_ node]

2006-05-09 Thread smythek
I am trying to find out what happens (what C++ functions are called, what .cc files are accessed) when a new node is created in ns-2. The ns-2 documentation refers to ns-lib.tcl, which does not exist. Does anyone know? The reason is I'm trying to access a MAC layer function from my new Agent

[ns] how to specify the service rate in NS2?

2006-05-09 Thread g230463
HI ALL: I want to specify the service rate for each node in the simulation. How can I do that. This is what I want to do Node(1) the source, Node(2) a router, Node(3) the sink Packets goes from source with service rate 10^6 through the router with service rate 1000 to the sink which has a se

Re: [ns] Interval for HELLO message

2006-05-09 Thread choong cheong
Hi guzin Ulutas, Thanks for your kindly reply. I did a few steps as below, 1.I did comment the syntax in aodv.cc /* double interval = MinHelloInterval + ((MaxHelloInterval -MinHelloInterval) * Random::uniform()) */ //and add 0.1 and 0.7 double interval = 0.1 2. ma