[ns] Periodic backoff in 802.11

2012-12-06 Thread nishil dahin
hello... i am trying to implement a periodic backoff scenario instead of random type currently used in IEEE 802.11 DCF; This is for my project in ns2 based on an IEEE 2011 paper. My query is about the correctness of method of my implementation: change the mh_backoff function present in the

[ns] hidden terminals in wireless

2012-12-21 Thread nishil dahin
hi guys. where do we define whether the wireless network is complex (with hidden terminals) or simple (no hidden terminals)? - in the .tcl file or the backend .cc file ? thanks

[ns] period controlled MAC

2013-01-16 Thread nishil dahin
I am working on a masters [paper][1] where I am trying to change the random waiting time for MAC wireless networks to a Period-controlled MAC for higher performance. There are a couple of existing c++ files that need alterations to change them from random to periodic. I have narrowed it down to

[ns] Average number of idle slots

2013-03-27 Thread nishil dahin
Hello all, How do you find the average number of idle slots of a node? Thanks in advance, Nihad S.

[ns] finding consecutive collisions

2013-04-20 Thread nishil dahin
hi guys, i wanted to know how to find whether collision that takes place in wireless network is consecutive or not; any ideas will be helpful

[ns] NS@ debugging

2013-04-24 Thread nishil dahin
Hi guys, This may sound trivial; but I wanted to know if NS2 has any default debugger that can debug both tcl and the 'backend' .cc files? Thanks in advance

[ns] finding consecutive collisions

2013-05-02 Thread nishil dahin
hello, I was trying to find the number of consecutive collisions in wireless network with the following logic: int collision = 0; while (rx_state_ == MAC_COLL) { collision++; } return collision; the problem is I think the above code results in infinite loop; Any help will be appreciated.

[ns] Wimax implementation in ns2

2013-05-12 Thread nishil dahin
Hi guys, I wanted to know which all are the main files related to wimax implementation in ns2. Like for wifi - ieee 802.11, it is mac-802_11.cc, .h and mac-timers.cc, .h; correspondingly, which files are for 802.16 (wimax) ? Nihad S.

[ns] Mac protocol modification in 802.11n

2013-05-16 Thread nishil dahin
Hi guys, I want to try out a new MAC protocol in 802.11 g or 802.11 n; I am thinking about changing the back-off mechanism to implement the protocol Is this possible? If so, kindly tell me the files I may have to modify; Thanks in advance Nishil