Channel Assignment with Route Discovery (CARD) using Cognitive Radio in Multi-channel Multi-radio Wireless Mesh Networks

Size: px
Start display at page:

Download "Channel Assignment with Route Discovery (CARD) using Cognitive Radio in Multi-channel Multi-radio Wireless Mesh Networks"

Transcription

1 Channel Assignment with Route Discovery (CARD) using Cognitive Radio in Multi-channel Multi-radio Wireless Mesh Networks Chittabrata Ghosh and Dharma P. Agrawal OBR Center for Distributed and Mobile Computing Department of ECECS, University of Cincinnati Cincinnati, Ohio ghoshc,dpa@ececs.uc.edu Abstract: For better spectrum utilization, efficient channel allocation in multi-radio wireless mesh networks has become an active research area. Our proposed CARD algorithm deals with the application of cognitive mesh routers for fixed channel assignments to mesh clients under each router s domain. The farthest channel assignment by the cognitive radio in mesh routers ensures minimum inter-router and intra-router interference. Initial fixed assignment of channels to clients supporting k-connectivity (k = 3 and 5 sub-channels) shows substantial increase with 15 concurrent transmissions when compared to 4 in case of the CCA scheme with k=3 and 3 channels to choose, i.e., a factor of almost 4. The improvement in communication delay is about a factor of 80 when compared to SC and a factor of 35 compared to CCA. Keywords- Alpha-beta pruning, wireless mesh networks, cognitive radio I. INTRODUCTION Wireless Mesh Network (WMN) [1], a recent networking technology, is envisioned to improve the performance of all the existing networking technologies namely, adhoc networks, Wireless Local Area Networks, Wireless Private Area Networks and Wireless Metropolitan Area Networks. WMN is similar to that of the adhoc networks in case of selfconfiguration and self-organization, which in turn demands minimum network maintenance. The nodes have the capability of forming a mesh network on an adhoc basis and forwarding packets over multiple hops to the destination nodes not within the communication region of the transmitted nodes. WMN is expected to play a dominant role for future broadband home networks. Cognitive radio is a revolutionary technology that primarily focuses on substantial spectrum efficiency with the aid of advanced spectrum sensing and dynamic channel assignment in licensed bands without actually obtaining a license [2, 3]. The radio is built on a software defined radio and is capable of taking decisions based on its surrounding environment. Opportunistic spectrum sharing of the licensed spectrum [2] by licensed users, hereafter referred to as secondary users (SUs) is one of the key concepts discussed in our research work. For improved spectrum utilization, a set of sub-channels in an extended C-band ( GHz) can be assigned to SUs when the sub-channels are not utilized by the primiary users (PUs). Since PUs have higher priority over the secondary users, the former can use the entire C-band whenever necessary. It is the job of the SU to detect the arrival of the primary user also called spectrum sensing and to leave the corresponding sub-channel in the C-band of the recently arrived primary user. Otherwise, the power level of the primary user s signal, being much higher than that of the secondary user, will entirely corrupt the signal of the latter resulting in interference, called the Primary User Interference (PUI). Again, when an SU uses a particular sub-channel, signals from the adjacent SUs can interfere with this desired user. This interference is called adjacent channel interference (ACI). In case of Wireless Local Area Network, the access points generally use a single half-duplex radio with the MAC protocol to support transmissions and receptions over a common channel. Basically, the wireless users compete for the channel using Carrier Sense Multiple Access/Collision Avoidance (CSMA/CA) protocol. But the same strategy can never be applied for wireless mesh networks because of its topology and connectivity constraints. Communication over a single channel can lead to all the mesh routers using the same channel for restoring connectivity. The worst case scenario may occur when mesh routers from neighboring hops of a multi-hop path also use the same channel to ensure connectivity. Therefore, multiple channels are always envisaged for wireless mesh networks. Now we are convinced that multiple channels are essential to ensure better connectivity in wireless mesh networks. But let us walk through the situation of multiple channels being used by wireless mesh routers over a single radio. The obvious problem is to dynamically switch to different channels to initiate new connections with other nodes while restoring existing communication with an ongoing mesh node. Again, switching between channels demands strong synchronization among nodes. Even, slow switching for channels to reduce synchronization requirements will in turn, lead to end-to-end delays. Therefore, to improve the performance of wireless mesh networks in terms of spectrum utilization, multiple radios may be implemented in each mesh router or a mesh client.

2 This paper deals with multi-radio multi-channel wireless mesh networks and study the throughput and delay performance. The central idea is to increase the capacity and additionally, the throughput of the wireless mesh networks by using multiple radios per node for simultaneous communications over interfaces tuned to multiple free sub-channels, unlike the base single channel assignment scheme. Channel assignment is a major problem when discussing multi-radio multi-channel WMN. One of the existing schemes to solve this problem is the common channel assignment scheme (CCA) [4] where the different radio interfaces are tuned to the same set of channels. But this scheme is inefficient for large number of channels being assigned to a small number of radio interfaces. The inevitable reason behind this is the pronounced intra-channel interference between the radio interfaces. This leads us to a different channel assignment strategy utilizing the relation between channel assignment and channel interference. While multiple radios operate on different channels, two nodes can communicate with each other if they have a radio interface tuned to a common channel. Again, if the nodes have different radio interfaces assigned to same set of frequencies, then it may provide better connectivity but can lead to severe interference. Therefore, strategic channel assignment is vital in overall performance evaluation of multi-radio wireless mesh networks. The other way of looking into the problem is to design a trade-off between connectivity and channel interference. Our proposed CARD scheme has taken care of these two parameters using opportunistic spectrum sharing and updating the set of sub-channels to be used by mesh routers at a particular time instant. The rest of this paper is organized as follows: Section II describes the underlying alpha-beta pruning scheme used in the CARD algorithm. Section III describes about our proposed CARD algorithm. Section IV evaluates the performance measures using our proposed CARD algorithm. Finally, section V draws the conclusions and future research directions. II. ALPHA-BETA PRUNING Alpha Beta technique is used on the game tree to compute the best move by the player and in turn, ignore branches that do not contribute further to the outcome. The advantage of this scheme is that not all the outcomes need to be checked for the best possible move. In other words, if the current outcome results in a worse move when compared to our best possible choice, then the first move that the opposition could make would be our last possible choice. The few assumptions needed for the Alpha-Beta pruning as follows: (i) all paths end up to fixed depth limit, d and (ii) the opponent will always choose the best move. To get into the details of the game, each node has memory enough to store four parameters namely, Alpha, Beta value for itself, current score and, if not terminal nodes, must also store the node address of its recently selected child node. The fourth parameter will allow backtracking down to the terminal nodes. To start with the game, Alpha and Beta values are assigned initial values of Infinity and +Infinity respectively. Then the Figure 1. Parent node and its children with d=3. following steps are followed for the best move to be taken by the player/opponent. (1) Track down to the depth of the game tree (2) Calculate the utility of each terminal node based on certain parameters that better describes its characteristics. The point to be noted over here is that the same parameters should be used to compute the utility function for all the nodes. in its parent and also replace the score at the parent node with this new score. (3) Propagate the Alpha and Beta values along with the path traced based on the following options: If the opponent makes the move to be backtracked: (i) If the current score obtained from its child node is less than the stored score at its parent, store the path from the bottom and the Beta value in its parent node and replace the stored score with this new score. (ii) If this newly stored score is less than the Alpha value stored in its parent node, prune all the branches under this node. If greater than the Alpha value in its parent node, replace the Alpha value with this score and proceed with the next child node and sending the Alpha and Beta values down. If no child exists, these values are propagated up the tree and the Alpha value becomes the MIN score as shown in Fig. 1. If the player makes the move to be backtracked: (i) If the current score of the child node is greater than the score at its parent, replace the stored parent s score with this new score and store the path from the bottom and the Alpha value in its parent. (ii) If the newly stored score is greater than the Beta value in the parent node, prune all the existing child nodes and backtrack the parent s Alpha and Beta values up the tree. If less than the Beta value at the parent node, replace the Beta value with this new value and proceed to the next child and sending the Alpha and Beta values down. If no child exists, these values are propagated up the tree and the Beta value becomes the MAX score as shown in Fig. 1. When the search is complete, the Alpha value at the top node gives the minimum score which is guaranteed to attain if the path stored in the parent node is backtracked. The entire algorithm for the implementation of the Alpha-Beta pruning is

3 Figure 2. Algorithm to implement Alpha-Beta pruning explained in Fig. 2. We have used this algorithm for our CARD algorithm explained in the next section. III. PROPOSED CARD ALGORITHM Our proposed CARD algorithm is based on the hierarchical mesh networks with k-connectivity (node with k mutually independent connected radio links). Each mesh router is equipped with a cognitive radio which periodically scans and detects the free channels [5] in five different sub-bands (0.265 GHz each) of the entire C band). These free channels are stored in each mesh router s free channel pools (FCP), each pool having free channels from a single sub-band. In our scheme, each channel selection from the FCP by a mesh router is broadcasted to its one hop mesh routers and in turn to its two hop routers. This assures that the same set of channels is not assigned to mesh clients of adjacent mesh routers, till two hops. On the other hand, this channel assignment scheme can lead to primary user interference and substantial adjacent channel interference. Therefore, our proposed CARD scheme incorporates cognitive routers with its two-fold strategy that helps in reducing intra-hop interference to a great extent and as well as the inter-hop interference: i) each channel request from the same hop mesh clients is assigned from a different sub-band and (ii) additional channel requests within the same hop should be based on farthest channel assignment. The reason for this assignment strategy is that usually all mesh nodes request for one free sub-channel which, if assigned from different sub-bands will not interfere with the transmissions from the neighboring nodes. On the other hand for subsequent channel requests, the cognitive radio must assign the farthest channel with respect to the already assigned channel in the same sub-band as that of the requesting node. The control messages are sent over a common control channel but data transfer takes place over assigned free sub-channels. First, the one-hop mesh clients have their parent node (PN) discovered as the mesh router with one radio interface connected to the PN and channels assigned as per the above mentioned strategy. The possible detection of the PN is based on the received broadcast packet by the mesh node with hop count =1. Now if two one hop members are within each other s communication range and have the same PN, then they request for and share a common channel for their second radio interface as shown by the dashed lines in Fig. 3. This common channel is decided by the router and selected from the subband different from the ones used by the sharing nodes radio interfaces. This helps in constructing the mesh with k- connectivity with k=2. Now, the two-hop clients under each of these one-hop clients can request for channels. On request, each one-hop members are discovered as PN for their corresponding one-hop neighbors and channels assigned similarly as explained above.

4 Figure 3. Initial channel assignment to mesh clients by the parent node Thus, all data packets have to be routed through the discovered PN. For future communication, one mesh client at a time, the third radio interface of the PN requests for the same channel as that of the desired member node interface. This way, the k-connectivity (k=3) mesh network with fixed channel assignment is created through our proposed scheme as shown in Fig. 4. Additionally, the CARD algorithm also discovers the route through intermediate PNs from each and every mesh router till its two-hop neighbors. The Alpha-Beta pruning algorithm has been modified for our research in the following manner: the utility function is calculated by the parent node for all the terminal nodes under it. This function is a ratio of the total number of packets under this parent node by the number of forwarding packets for the concerned terminal node. The intention for this calculation is to minimize the utility function for a node having maximum number of packets to be forwarded. Again, when the utility function is finally distributed to the terminal nodes, the utility Figure 4 Assignment of sub-channels to ensure k-connectivity, k=3. function is multiplied by its access rate, if MIN nodes are the terminal nodes and divided by the access rate if MAX nodes are the terminal nodes. This manipulation is performed to avoid giving access to a particular parent node having its terminal node with maximum number of packets. The division minimizes the chances of the same MIN node being selected by a MAX node and multiplication increases the chances of a MAX node when MIN node is the one to choose its move. Another modification made in the Alpha-Beta pruning algorithm is done to utilize the multi-radio facility. The parent node checks for the destination address from the incoming packets. If this address is related to its own hierarchical game tree, it stores the packets and waits for its chances to be selected as a MAX or a MIN player. If this address is not within its own hierarchy, the parent node utilizes its different radio interface tuning its radio interface to a different channel and communicates to the different adjacent hierarchy. In cases for different destination addresses other than its own hierarchy, then the parent node does not forward the packets to its own parent node within its own hierarchy. After storing the packets within its buffer, it tunes to a different channel to a different mesh node in a different hierarchy and forwards packets to that node. The improvements achieved have been shown in our simulation results. IV. SIMULATION RESULTS In this section, we have studied our proposed CARD scheme using network simulations. The single channel assignment scheme has served as a baseline for comparison purposes. We have also included CCA scheme [5] as the comparative algorithm for channel assignment. The entire simulation of the hierarchical wireless mesh networks has been performed using GloMoSim [7]. As stated earlier, we have used throughput and average delay parameters for evaluation and comparison of CARD scheme with other mentioned schemes. The entire simulation has been carried out with 50 randomly placed nodes in a 650m 650m area. The transmission range is assumed to be 200 m which in turn leads us to an interference range of 525m. Our simulation results are based on two distinct categories: (i) Evaluation based on connectivity and topology and (ii) Single hop performance for multi-radio mesh networks. The topological performance in wireless mesh networks has been studied in our research using the maximum concurrent transmission as the deciding parameter. The reason for this choice is to verify efficiency of the radio interfaces to switch between different free sub-channels from the free channel pool. The more the number of successful transmissions, the better is the utilization of the spectrum and hence, throughput and also the capacity of wireless mesh networks increases. Fig. 5 shows the comparison between the CARD and the CCA algorithm using three channels. The linear increase in the curve for CARD algorithm shows the efficiency of our algorithm over CCA with gradual increase in the number of radio interfaces per node. As shown in Fig. 3, CARD algorithm has been

5 Figure 5 Comparison in number of concurrent transmissions for CARD and CCA algorithms for 3 channels per node. successful in 13 concurrent transmissions when compared to 5 in CCA. Similarly, Fig. 6 indicates better spectrum utilization by CARD algorithm over CCA when considering 12 channels to be switched by progressively increasing number of radio interfaces per node. The distinct feature to be observed in this figure is that the linear increase in the number of concurrent transmissions saturates for CARD algorithm after 4 radio interfaces per node. This indicates that the adjacent channel interference and intra-channel interference affects in concurrent transmissions after adding more number of radio interfaces. Therefore, as seen from Fig. 6, the trade-off for designing multi-radio wireless mesh networks can be limited to 5 radio interfaces per node when 12 free sub-channels can be utilized for concurrent transmissions. Figure 7 Throughput comparison of CARD algorithm with CCA and Single channel base cases using 3 channels. Fig. 7 gives a detailed comparison of our scheme when compared to CCA and the single channel case. CARD algorithm provide a substantial improvement in throughput calculations up to a factor of 4 with 3 free sub-channels and 3 radio interfaces per node. Similar throughput improvements can also be achieved using increasing number of channels with 3 radio interfaces as shown in Fig. 8. The point to be noted over here is that the increase in throughput is minimal with increase in the number of radios per node when compared to that in Fig. 7 for 3 channels and 3 radio interfaces per node. The reason for this is accounted for the same adjacent and intra-channel interference. The average delay performance comparison has been shown in Fig. 9. The curves show a distinct improvement in average delay- about a factor of 2 when compared to single channel and around a factor of 1.75 when compared to CCA with 2 radios. The reason for this minimal delay is due to minimal number of transmission needed and with increasing switching technique used in CARD algorithm. The same can be observed in Fig. 10 with 10 channels and 6 radios but better results are obtained for average delay because of increasing number of radios switching between 10 sub channels from the free channel pool. Figure 6. Comparison in number of concurrent transmissions for CARD and CCA algorithms for 12 channels per node. Figure 8 Throughput comparison of CARD algorithm with CCA and Single channel base cases using 10 channels.

6 V. CONLUSION In this paper we have dealt with cognitive radio based fixed channel assignment in multi-radio wireless mesh networks. Extensive set of simulations emphasize the efficacy of the CARD scheme in multi channel interference reduction with multiple number of radio interfaces per node. The CARD algorithm has proved to be efficient when compared to CCA or the single channel case when considering the topological characteristics like maximum concurrent transmissions. Again while considering the single hop multiradio wireless mesh networks, our algorithm proves to be efficient when considering the average delay and throughput parameters. Our future work will concentrate on theoretical performance characterization and evaluation of the CARD scheme in a multi-radio mesh networks. Dynamic channel assignment must also be considered in our research work. REFERENCES [1] I. F. Akyldiz and X. Wang, A survey of wireless mesh networks, IEEE Comm. Mag., Vol. 43, no. 9, Sept. 05, pp. S23-S30. [2] S. Haykin, Cognitive radio: brain-empowered wireless communications," IEEE Journal Selected Areas in Communications, vol. 23, no. 2, pp , Feb [3] S. Nandagopal, C. Cordeiro, and K. Challapali, Spectrum Agile Radios: Utilization and Sensing Architectures, Proceedings of IEEE DySPAN2005, Baltimore, USA, Nov 8-11, [4] A. Adya, P. Bahl, J. Padhye, A. Wolman and L. Zhou, A multi-radio unification protocol for IEEE wireless networks, Proc. BroadNets, [5] T. Banerjee, C. Ghosh and D. P. Agrawal, Wireless sensor network based dynamic channel selection in cellular communication, CROWNCOMM 06, Greece [6] M. K. Marina and S. R. Das, A topology control approach for utilizing multiple channels in multi-radio wireless mesh networks, IEEE 2005, pp [7] X. Zeng, R. Bagrodia and M. Gerla, GloMoSim: A library for parallel simulation of large-scale wireless networks, Proc. 12th PADS, Banff, Canada, May 98, pp Figure 9 Average delay performance comparison for CARD and CCA algorithms using 3 channels. Figure 10 Average delay performance comparison for CARD and CCA algorithms using 3 channels.

Sense in Order: Channel Selection for Sensing in Cognitive Radio Networks

Sense in Order: Channel Selection for Sensing in Cognitive Radio Networks Sense in Order: Channel Selection for Sensing in Cognitive Radio Networks Ying Dai and Jie Wu Department of Computer and Information Sciences Temple University, Philadelphia, PA 19122 Email: {ying.dai,

More information

A survey on broadcast protocols in multihop cognitive radio ad hoc network

A survey on broadcast protocols in multihop cognitive radio ad hoc network A survey on broadcast protocols in multihop cognitive radio ad hoc network Sureshkumar A, Rajeswari M Abstract In the traditional ad hoc network, common channel is present to broadcast control channels

More information

TIME- OPTIMAL CONVERGECAST IN SENSOR NETWORKS WITH MULTIPLE CHANNELS

TIME- OPTIMAL CONVERGECAST IN SENSOR NETWORKS WITH MULTIPLE CHANNELS TIME- OPTIMAL CONVERGECAST IN SENSOR NETWORKS WITH MULTIPLE CHANNELS A Thesis by Masaaki Takahashi Bachelor of Science, Wichita State University, 28 Submitted to the Department of Electrical Engineering

More information

Channel Sensing Order in Multi-user Cognitive Radio Networks

Channel Sensing Order in Multi-user Cognitive Radio Networks 2012 IEEE International Symposium on Dynamic Spectrum Access Networks Channel Sensing Order in Multi-user Cognitive Radio Networks Jie Zhao and Xin Wang Department of Electrical and Computer Engineering

More information

Investigation of Timescales for Channel, Rate, and Power Control in a Metropolitan Wireless Mesh Testbed1

Investigation of Timescales for Channel, Rate, and Power Control in a Metropolitan Wireless Mesh Testbed1 Investigation of Timescales for Channel, Rate, and Power Control in a Metropolitan Wireless Mesh Testbed1 1. Introduction Vangelis Angelakis, Konstantinos Mathioudakis, Emmanouil Delakis, Apostolos Traganitis,

More information

Efficient Method of Secondary Users Selection Using Dynamic Priority Scheduling

Efficient Method of Secondary Users Selection Using Dynamic Priority Scheduling Efficient Method of Secondary Users Selection Using Dynamic Priority Scheduling ABSTRACT Sasikumar.J.T 1, Rathika.P.D 2, Sophia.S 3 PG Scholar 1, Assistant Professor 2, Professor 3 Department of ECE, Sri

More information

Partial overlapping channels are not damaging

Partial overlapping channels are not damaging Journal of Networking and Telecomunications (2018) Original Research Article Partial overlapping channels are not damaging Jing Fu,Dongsheng Chen,Jiafeng Gong Electronic Information Engineering College,

More information

Cognitive Wireless Network : Computer Networking. Overview. Cognitive Wireless Networks

Cognitive Wireless Network : Computer Networking. Overview. Cognitive Wireless Networks Cognitive Wireless Network 15-744: Computer Networking L-19 Cognitive Wireless Networks Optimize wireless networks based context information Assigned reading White spaces Online Estimation of Interference

More information

A Secure Transmission of Cognitive Radio Networks through Markov Chain Model

A Secure Transmission of Cognitive Radio Networks through Markov Chain Model A Secure Transmission of Cognitive Radio Networks through Markov Chain Model Mrs. R. Dayana, J.S. Arjun regional area network (WRAN), which will operate on unused television channels. Assistant Professor,

More information

Channel Sensing Order in Multi-user Cognitive Radio Networks

Channel Sensing Order in Multi-user Cognitive Radio Networks Channel Sensing Order in Multi-user Cognitive Radio Networks Jie Zhao and Xin Wang Department of Electrical and Computer Engineering State University of New York at Stony Brook Stony Brook, New York 11794

More information

CHANNEL ASSIGNMENT IN MULTI HOPPING CELLULAR NETWORK

CHANNEL ASSIGNMENT IN MULTI HOPPING CELLULAR NETWORK CHANNEL ASSIGNMENT IN MULTI HOPPING CELLULAR NETWORK Mikita Gandhi 1, Khushali Shah 2 Mehfuza Holia 3 Ami Shah 4 Electronics & Comm. Dept. Electronics Dept. Electronics & Comm. Dept. ADIT, new V.V.Nagar

More information

Attack-Proof Collaborative Spectrum Sensing in Cognitive Radio Networks

Attack-Proof Collaborative Spectrum Sensing in Cognitive Radio Networks Attack-Proof Collaborative Spectrum Sensing in Cognitive Radio Networks Wenkai Wang, Husheng Li, Yan (Lindsay) Sun, and Zhu Han Department of Electrical, Computer and Biomedical Engineering University

More information

A Location-Aware Routing Metric (ALARM) for Multi-Hop, Multi-Channel Wireless Mesh Networks

A Location-Aware Routing Metric (ALARM) for Multi-Hop, Multi-Channel Wireless Mesh Networks A Location-Aware Routing Metric (ALARM) for Multi-Hop, Multi-Channel Wireless Mesh Networks Eiman Alotaibi, Sumit Roy Dept. of Electrical Engineering U. Washington Box 352500 Seattle, WA 98195 eman76,roy@ee.washington.edu

More information

Cognitive Radio: Smart Use of Radio Spectrum

Cognitive Radio: Smart Use of Radio Spectrum Cognitive Radio: Smart Use of Radio Spectrum Miguel López-Benítez Department of Electrical Engineering and Electronics University of Liverpool, United Kingdom M.Lopez-Benitez@liverpool.ac.uk www.lopezbenitez.es,

More information

Wireless Network Pricing Chapter 2: Wireless Communications Basics

Wireless Network Pricing Chapter 2: Wireless Communications Basics Wireless Network Pricing Chapter 2: Wireless Communications Basics Jianwei Huang & Lin Gao Network Communications and Economics Lab (NCEL) Information Engineering Department The Chinese University of Hong

More information

Cognitive Radio Network Setup without a Common Control Channel

Cognitive Radio Network Setup without a Common Control Channel Cognitive Radio Network Setup without a Common Control Channel Yogesh R Kondareddy*, Prathima Agrawal* and Krishna Sivalingam *Electrical and Computer Engineering, Auburn University, E-mail: {kondayr,

More information

Low Overhead Spectrum Allocation and Secondary Access in Cognitive Radio Networks

Low Overhead Spectrum Allocation and Secondary Access in Cognitive Radio Networks Low Overhead Spectrum Allocation and Secondary Access in Cognitive Radio Networks Yee Ming Chen Department of Industrial Engineering and Management Yuan Ze University, Taoyuan Taiwan, Republic of China

More information

Efficient Recovery Algorithms for Wireless Mesh Networks with Cognitive Radios

Efficient Recovery Algorithms for Wireless Mesh Networks with Cognitive Radios Efficient Recovery Algorithms for Wireless Mesh Networks with Cognitive Radios Roberto Hincapie, Li Zhang, Jian Tang, Guoliang Xue, Richard S. Wolff and Roberto Bustamante Abstract Cognitive radios allow

More information

Avoid Impact of Jamming Using Multipath Routing Based on Wireless Mesh Networks

Avoid Impact of Jamming Using Multipath Routing Based on Wireless Mesh Networks Avoid Impact of Jamming Using Multipath Routing Based on Wireless Mesh Networks M. KIRAN KUMAR 1, M. KANCHANA 2, I. SAPTHAMI 3, B. KRISHNA MURTHY 4 1, 2, M. Tech Student, 3 Asst. Prof 1, 4, Siddharth Institute

More information

Continuous Monitoring Techniques for a Cognitive Radio Based GSM BTS

Continuous Monitoring Techniques for a Cognitive Radio Based GSM BTS NCC 2009, January 6-8, IIT Guwahati 204 Continuous Monitoring Techniques for a Cognitive Radio Based GSM BTS Baiju Alexander, R. David Koilpillai Department of Electrical Engineering Indian Institute of

More information

Dynamic Spectrum Access in Cognitive Radio Wireless Sensor Networks Using Different Spectrum Sensing Techniques

Dynamic Spectrum Access in Cognitive Radio Wireless Sensor Networks Using Different Spectrum Sensing Techniques Dynamic Spectrum Access in Cognitive Radio Wireless Sensor Networks Using Different Spectrum Sensing Techniques S. Anusha M. E., Research Scholar, Sona College of Technology, Salem-636005, Tamil Nadu,

More information

Performance Evaluation of a Video Broadcasting System over Wireless Mesh Network

Performance Evaluation of a Video Broadcasting System over Wireless Mesh Network Performance Evaluation of a Video Broadcasting System over Wireless Mesh Network K.T. Sze, K.M. Ho, and K.T. Lo Abstract in this paper, we study the performance of a video-on-demand (VoD) system in wireless

More information

T. Yoo, E. Setton, X. Zhu, Pr. Goldsmith and Pr. Girod Department of Electrical Engineering Stanford University

T. Yoo, E. Setton, X. Zhu, Pr. Goldsmith and Pr. Girod Department of Electrical Engineering Stanford University Cross-layer design for video streaming over wireless ad hoc networks T. Yoo, E. Setton, X. Zhu, Pr. Goldsmith and Pr. Girod Department of Electrical Engineering Stanford University Outline Cross-layer

More information

Coding aware routing in wireless networks with bandwidth guarantees. IEEEVTS Vehicular Technology Conference Proceedings. Copyright IEEE.

Coding aware routing in wireless networks with bandwidth guarantees. IEEEVTS Vehicular Technology Conference Proceedings. Copyright IEEE. Title Coding aware routing in wireless networks with bandwidth guarantees Author(s) Hou, R; Lui, KS; Li, J Citation The IEEE 73rd Vehicular Technology Conference (VTC Spring 2011), Budapest, Hungary, 15-18

More information

A new Opportunistic MAC Layer Protocol for Cognitive IEEE based Wireless Networks

A new Opportunistic MAC Layer Protocol for Cognitive IEEE based Wireless Networks A new Opportunistic MAC Layer Protocol for Cognitive IEEE 8.11-based Wireless Networks Abderrahim Benslimane,ArshadAli, Abdellatif Kobbane and Tarik Taleb LIA/CERI, University of Avignon, Agroparc BP 18,

More information

Simple Modifications in HWMP for Wireless Mesh Networks with Smart Antennas

Simple Modifications in HWMP for Wireless Mesh Networks with Smart Antennas Simple Modifications in HWMP for Wireless Mesh Networks with Smart Antennas Muhammad Irfan Rafique, Marco Porsch, Thomas Bauschert Chair for Communication Networks, TU Chemnitz irfan.rafique@etit.tu-chemnitz.de

More information

Fine-grained Channel Access in Wireless LAN. Cristian Petrescu Arvind Jadoo UCL Computer Science 20 th March 2012

Fine-grained Channel Access in Wireless LAN. Cristian Petrescu Arvind Jadoo UCL Computer Science 20 th March 2012 Fine-grained Channel Access in Wireless LAN Cristian Petrescu Arvind Jadoo UCL Computer Science 20 th March 2012 Physical-layer data rate PHY layer data rate in WLANs is increasing rapidly Wider channel

More information

Deployment and Radio Resource Reuse in IEEE j Multi-hop Relay Network in Manhattan-like Environment

Deployment and Radio Resource Reuse in IEEE j Multi-hop Relay Network in Manhattan-like Environment Deployment and Radio Resource Reuse in IEEE 802.16j Multi-hop Relay Network in Manhattan-like Environment I-Kang Fu and Wern-Ho Sheen Department of Communication Engineering National Chiao Tung University

More information

Chapter 10. User Cooperative Communications

Chapter 10. User Cooperative Communications Chapter 10 User Cooperative Communications 1 Outline Introduction Relay Channels User-Cooperation in Wireless Networks Multi-Hop Relay Channel Summary 2 Introduction User cooperative communication is a

More information

CS 457 Lecture 16 Routing Continued. Spring 2010

CS 457 Lecture 16 Routing Continued. Spring 2010 CS 457 Lecture 16 Routing Continued Spring 2010 Scaling Link-State Routing Overhead of link-state routing Flooding link-state packets throughout the network Running Dijkstra s shortest-path algorithm Introducing

More information

SourceSync. Exploiting Sender Diversity

SourceSync. Exploiting Sender Diversity SourceSync Exploiting Sender Diversity Why Develop SourceSync? Wireless diversity is intrinsic to wireless networks Many distributed protocols exploit receiver diversity Sender diversity is a largely unexplored

More information

Wireless Internet Routing. IEEE s

Wireless Internet Routing. IEEE s Wireless Internet Routing IEEE 802.11s 1 Acknowledgments Cigdem Sengul, Deutsche Telekom Laboratories 2 Outline Introduction Interworking Topology discovery Routing 3 IEEE 802.11a/b/g /n /s IEEE 802.11s:

More information

Application of combined TOPSIS and AHP method for Spectrum Selection in Cognitive Radio by Channel Characteristic Evaluation

Application of combined TOPSIS and AHP method for Spectrum Selection in Cognitive Radio by Channel Characteristic Evaluation International Journal of Electronics and Communication Engineering. ISSN 0974-2166 Volume 10, Number 2 (2017), pp. 71 79 International Research Publication House http://www.irphouse.com Application of

More information

Cognitive Radio Spectrum Access with Prioritized Secondary Users

Cognitive Radio Spectrum Access with Prioritized Secondary Users Appl. Math. Inf. Sci. Vol. 6 No. 2S pp. 595S-601S (2012) Applied Mathematics & Information Sciences An International Journal @ 2012 NSP Natural Sciences Publishing Cor. Cognitive Radio Spectrum Access

More information

Fractional Frequency Reuse Schemes and Performance Evaluation for OFDMA Multi-hop Cellular Networks

Fractional Frequency Reuse Schemes and Performance Evaluation for OFDMA Multi-hop Cellular Networks Fractional Frequency Reuse Schemes and Performance Evaluation for OFDMA Multi-hop Cellular Networks Yue Zhao, Xuming Fang, Xiaopeng Hu, Zhengguang Zhao, Yan Long Provincial Key Lab of Information Coding

More information

Analysis on Privacy and Reliability of Ad Hoc Network-Based in Protecting Agricultural Data

Analysis on Privacy and Reliability of Ad Hoc Network-Based in Protecting Agricultural Data Send Orders for Reprints to reprints@benthamscience.ae The Open Electrical & Electronic Engineering Journal, 2014, 8, 777-781 777 Open Access Analysis on Privacy and Reliability of Ad Hoc Network-Based

More information

ANTI-JAMMING PERFORMANCE OF COGNITIVE RADIO NETWORKS. Xiaohua Li and Wednel Cadeau

ANTI-JAMMING PERFORMANCE OF COGNITIVE RADIO NETWORKS. Xiaohua Li and Wednel Cadeau ANTI-JAMMING PERFORMANCE OF COGNITIVE RADIO NETWORKS Xiaohua Li and Wednel Cadeau Department of Electrical and Computer Engineering State University of New York at Binghamton Binghamton, NY 392 {xli, wcadeau}@binghamton.edu

More information

Multiple Access Methods

Multiple Access Methods Helsinki University of Technology S-72.333 Postgraduate Seminar on Radio Communications Multiple Access Methods Er Liu liuer@cc.hut.fi Communications Laboratory 16.11.2004 Content of presentation Protocol

More information

Delay Based Scheduling For Cognitive Radio Networks

Delay Based Scheduling For Cognitive Radio Networks Delay Based Scheduling For Cognitive Radio Networks A.R.Devi 1 R.Arun kumar 2 S.Kannagi 3 P.G Student P.S.R Engineering College, India 1 Assistant professor at P.S.R Engineering College, India 2 P.G Student

More information

Increasing Broadcast Reliability for Vehicular Ad Hoc Networks. Nathan Balon and Jinhua Guo University of Michigan - Dearborn

Increasing Broadcast Reliability for Vehicular Ad Hoc Networks. Nathan Balon and Jinhua Guo University of Michigan - Dearborn Increasing Broadcast Reliability for Vehicular Ad Hoc Networks Nathan Balon and Jinhua Guo University of Michigan - Dearborn I n t r o d u c t i o n General Information on VANETs Background on 802.11 Background

More information

Analysis of Bottleneck Delay and Throughput in Wireless Mesh Networks

Analysis of Bottleneck Delay and Throughput in Wireless Mesh Networks Analysis of Bottleneck Delay and Throughput in Wireless Mesh Networks Xiaobing Wu 1, Jiangchuan Liu 2, Guihai Chen 1 1 State Key Laboratory for Novel Software Technology, Nanjing University, China wuxb@dislab.nju.edu.cn,

More information

Intelligent Adaptation And Cognitive Networking

Intelligent Adaptation And Cognitive Networking Intelligent Adaptation And Cognitive Networking Kevin Langley MAE 298 5/14/2009 Media Wired o Can react to local conditions near speed of light o Generally reactive systems rather than predictive work

More information

CS 440 / ECE 448 Introduction to Artificial Intelligence Spring 2010 Lecture #5

CS 440 / ECE 448 Introduction to Artificial Intelligence Spring 2010 Lecture #5 CS 440 / ECE 448 Introduction to Artificial Intelligence Spring 2010 Lecture #5 Instructor: Eyal Amir Grad TAs: Wen Pu, Yonatan Bisk Undergrad TAs: Sam Johnson, Nikhil Johri Topics Game playing Game trees

More information

Multi-Radio Multi-Channel Protocol for Emergency Wireless Mesh Network

Multi-Radio Multi-Channel Protocol for Emergency Wireless Mesh Network Multi-Radio Multi-Channel Protocol for Emergency Wireless Mesh Network 1 Beiing General Research Institute of Mining and Metallurgy, Beiing 102600, China University of Science and Technology Beiing, Beiing

More information

Effect of Time Bandwidth Product on Cooperative Communication

Effect of Time Bandwidth Product on Cooperative Communication Surendra Kumar Singh & Rekha Gupta Department of Electronics and communication Engineering, MITS Gwalior E-mail : surendra886@gmail.com, rekha652003@yahoo.com Abstract Cognitive radios are proposed to

More information

Beamforming and Binary Power Based Resource Allocation Strategies for Cognitive Radio Networks

Beamforming and Binary Power Based Resource Allocation Strategies for Cognitive Radio Networks 1 Beamforming and Binary Power Based Resource Allocation Strategies for Cognitive Radio Networks UWB Walter project Workshop, ETSI October 6th 2009, Sophia Antipolis A. Hayar EURÉCOM Institute, Mobile

More information

TRANSMISSION SCHEDULING FOR ROUTING PATHS AND MULTIPATHS IN COGNITIVE RADIO MESH NETWORKS. by Xia Zhao

TRANSMISSION SCHEDULING FOR ROUTING PATHS AND MULTIPATHS IN COGNITIVE RADIO MESH NETWORKS. by Xia Zhao TRANSMISSION SCHEDULING FOR ROUTING PATHS AND MULTIPATHS IN COGNITIVE RADIO MESH NETWORKS by Xia Zhao A thesis submitted in partial fulfillment of the requirements for the degree of Master of Science in

More information

Multi-Band Spectrum Allocation Algorithm Based on First-Price Sealed Auction

Multi-Band Spectrum Allocation Algorithm Based on First-Price Sealed Auction BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 17, No 1 Sofia 2017 Print ISSN: 1311-9702; Online ISSN: 1314-4081 DOI: 10.1515/cait-2017-0008 Multi-Band Spectrum Allocation

More information

Joint Relaying and Network Coding in Wireless Networks

Joint Relaying and Network Coding in Wireless Networks Joint Relaying and Network Coding in Wireless Networks Sachin Katti Ivana Marić Andrea Goldsmith Dina Katabi Muriel Médard MIT Stanford Stanford MIT MIT Abstract Relaying is a fundamental building block

More information

Control issues in cognitive networks. Marko Höyhtyä and Tao Chen CWC-VTT-Gigaseminar 4th December 2008

Control issues in cognitive networks. Marko Höyhtyä and Tao Chen CWC-VTT-Gigaseminar 4th December 2008 Control issues in cognitive networks Marko Höyhtyä and Tao Chen CWC-VTT-Gigaseminar 4th December 2008 Outline Cognitive wireless networks Cognitive mesh Topology control Frequency selection Power control

More information

Distributed Collaborative Path Planning in Sensor Networks with Multiple Mobile Sensor Nodes

Distributed Collaborative Path Planning in Sensor Networks with Multiple Mobile Sensor Nodes 7th Mediterranean Conference on Control & Automation Makedonia Palace, Thessaloniki, Greece June 4-6, 009 Distributed Collaborative Path Planning in Sensor Networks with Multiple Mobile Sensor Nodes Theofanis

More information

INTELLIGENT SPECTRUM MOBILITY AND RESOURCE MANAGEMENT IN COGNITIVE RADIO AD HOC NETWORKS. A Dissertation by. Dan Wang

INTELLIGENT SPECTRUM MOBILITY AND RESOURCE MANAGEMENT IN COGNITIVE RADIO AD HOC NETWORKS. A Dissertation by. Dan Wang INTELLIGENT SPECTRUM MOBILITY AND RESOURCE MANAGEMENT IN COGNITIVE RADIO AD HOC NETWORKS A Dissertation by Dan Wang Master of Science, Harbin Institute of Technology, 2011 Bachelor of Engineering, China

More information

Cognitive Radios Games: Overview and Perspectives

Cognitive Radios Games: Overview and Perspectives Cognitive Radios Games: Overview and Yezekael Hayel University of Avignon, France Supélec 06/18/07 1 / 39 Summary 1 Introduction 2 3 4 5 2 / 39 Summary Introduction Cognitive Radio Technologies Game Theory

More information

Analysis of Interference in Cognitive Radio Networks with Unknown Primary Behavior

Analysis of Interference in Cognitive Radio Networks with Unknown Primary Behavior EEE CC 22 - Cognitive Radio and Networks Symposium Analysis of nterference in Cognitive Radio Networks with Unknown Primary Behavior Chunxiao Jiang, Yan Chen,K.J.RayLiu and Yong Ren Department of Electrical

More information

Reti di Telecomunicazione. Channels and Multiplexing

Reti di Telecomunicazione. Channels and Multiplexing Reti di Telecomunicazione Channels and Multiplexing Point-to-point Channels They are permanent connections between a sender and a receiver The receiver can be designed and optimized based on the (only)

More information

Creation of Wireless Network using CRN

Creation of Wireless Network using CRN Creation of 802.11 Wireless Network using CRN S. Elakkiya 1, P. Aruna 2 1,2 Department of Software Engineering, Periyar Maniammai University Abstract: A network is a collection of wireless node hosts forming

More information

Superimposed Code Based Channel Assignment in Multi-Radio Multi-Channel Wireless Mesh Networks

Superimposed Code Based Channel Assignment in Multi-Radio Multi-Channel Wireless Mesh Networks Superimposed Code Based Channel Assignment in Multi-Radio Multi-Channel Wireless Mesh Networks ABSTRACT Kai Xing & Xiuzhen Cheng & Liran Ma Department of Computer Science The George Washington University

More information

COMP3211 Project. Artificial Intelligence for Tron game. Group 7. Chiu Ka Wa ( ) Chun Wai Wong ( ) Ku Chun Kit ( )

COMP3211 Project. Artificial Intelligence for Tron game. Group 7. Chiu Ka Wa ( ) Chun Wai Wong ( ) Ku Chun Kit ( ) COMP3211 Project Artificial Intelligence for Tron game Group 7 Chiu Ka Wa (20369737) Chun Wai Wong (20265022) Ku Chun Kit (20123470) Abstract Tron is an old and popular game based on a movie of the same

More information

Cross-layer Network Design for Quality of Services in Wireless Local Area Networks: Optimal Access Point Placement and Frequency Channel Assignment

Cross-layer Network Design for Quality of Services in Wireless Local Area Networks: Optimal Access Point Placement and Frequency Channel Assignment Cross-layer Network Design for Quality of Services in Wireless Local Area Networks: Optimal Access Point Placement and Frequency Channel Assignment Chutima Prommak and Boriboon Deeka Abstract This paper

More information

Design of Parallel Algorithms. Communication Algorithms

Design of Parallel Algorithms. Communication Algorithms + Design of Parallel Algorithms Communication Algorithms + Topic Overview n One-to-All Broadcast and All-to-One Reduction n All-to-All Broadcast and Reduction n All-Reduce and Prefix-Sum Operations n Scatter

More information

CS188 Spring 2014 Section 3: Games

CS188 Spring 2014 Section 3: Games CS188 Spring 2014 Section 3: Games 1 Nearly Zero Sum Games The standard Minimax algorithm calculates worst-case values in a zero-sum two player game, i.e. a game in which for all terminal states s, the

More information

Mesh Networks with Two-Radio Access Points

Mesh Networks with Two-Radio Access Points 802.11 Mesh Networks with Two-Radio Access Points Jing Zhu Sumit Roy jing.z.zhu@intel.com roy@ee.washington.edu Communications Technology Lab Dept. of Electrical Engineering Intel Corporation, 2111 NE

More information

game tree complete all possible moves

game tree complete all possible moves Game Trees Game Tree A game tree is a tree the nodes of which are positions in a game and edges are moves. The complete game tree for a game is the game tree starting at the initial position and containing

More information

International Journal of Advance Engineering and Research Development. Sidelobe Suppression in Ofdm based Cognitive Radio- Review

International Journal of Advance Engineering and Research Development. Sidelobe Suppression in Ofdm based Cognitive Radio- Review Scientific Journal of Impact Factor (SJIF): 4.14 International Journal of Advance Engineering and Research Development Volume 3, Issue 3, March -2016 e-issn (O): 2348-4470 p-issn (P): 2348-6406 Sidelobe

More information

Wireless ad hoc networks. Acknowledgement: Slides borrowed from Richard Y. Yale

Wireless ad hoc networks. Acknowledgement: Slides borrowed from Richard Y. Yale Wireless ad hoc networks Acknowledgement: Slides borrowed from Richard Y. Yang @ Yale Infrastructure-based v.s. ad hoc Infrastructure-based networks Cellular network 802.11, access points Ad hoc networks

More information

[Raghuwanshi*, 4.(8): August, 2015] ISSN: (I2OR), Publication Impact Factor: 3.785

[Raghuwanshi*, 4.(8): August, 2015] ISSN: (I2OR), Publication Impact Factor: 3.785 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY PERFORMANCE ANALYSIS OF INTEGRATED WIFI/WIMAX MESH NETWORK WITH DIFFERENT MODULATION SCHEMES Mr. Jogendra Raghuwanshi*, Mr. Girish

More information

Scaling Laws for Cognitive Radio Network with Heterogeneous Mobile Secondary Users

Scaling Laws for Cognitive Radio Network with Heterogeneous Mobile Secondary Users Scaling Laws for Cognitive Radio Network with Heterogeneous Mobile Secondary Users Y.Li, X.Wang, X.Tian and X.Liu Shanghai Jiaotong University Scaling Laws for Cognitive Radio Network with Heterogeneous

More information

QoS-based Channel and Radio Assignment Algorithm for Mesh Cognitive Radio Networks intended for HealthCare

QoS-based Channel and Radio Assignment Algorithm for Mesh Cognitive Radio Networks intended for HealthCare QoS-based Channel and Radio Assignment Algorithm for Mesh Cognitive Radio Networks intended for HealthCare Amjad Ali 1, Muddesar Iqbal 2, Saba Saifullah 2 and Ju Bin Song 1 1 Department of Electronics

More information

Optimization Models for the Radio Planning of Wireless Mesh Networks

Optimization Models for the Radio Planning of Wireless Mesh Networks Optimization Models for the Radio Planning of Wireless Mesh Networks Edoardo Amaldi, Antonio Capone, Matteo Cesana, and Federico Malucelli Politecnico di Milano, Dipartimento Elettronica ed Informazione,

More information

Deployment scenarios and interference analysis using V-band beam-steering antennas

Deployment scenarios and interference analysis using V-band beam-steering antennas Deployment scenarios and interference analysis using V-band beam-steering antennas 07/2017 Siklu 2017 Table of Contents 1. V-band P2P/P2MP beam-steering motivation and use-case... 2 2. Beam-steering antenna

More information

Seeking Partnership for Pilot Test-beds for Assessing Broadband Deployment in UHF-TV White Space of India

Seeking Partnership for Pilot Test-beds for Assessing Broadband Deployment in UHF-TV White Space of India Seeking Partnership for Pilot Test-beds for Assessing Broadband Deployment in UHF-TV White Space of India Contact: Punit Rathod Project Research Scientist, Department of EE, IIT Bombay Email: punitrathod@gmail.com,

More information

DISTRIBUTED DYNAMIC CHANNEL ALLOCATION ALGORITHM FOR CELLULAR MOBILE NETWORK

DISTRIBUTED DYNAMIC CHANNEL ALLOCATION ALGORITHM FOR CELLULAR MOBILE NETWORK DISTRIBUTED DYNAMIC CHANNEL ALLOCATION ALGORITHM FOR CELLULAR MOBILE NETWORK 1 Megha Gupta, 2 A.K. Sachan 1 Research scholar, Deptt. of computer Sc. & Engg. S.A.T.I. VIDISHA (M.P) INDIA. 2 Asst. professor,

More information

A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols

A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols A Performance Comparison of Multi-Hop Wireless Ad Hoc Network Routing Protocols Josh Broch, David Maltz, David Johnson, Yih-Chun Hu and Jorjeta Jetcheva Computer Science Department Carnegie Mellon University

More information

Chutima Prommak and Boriboon Deeka. Proceedings of the World Congress on Engineering 2007 Vol II WCE 2007, July 2-4, 2007, London, U.K.

Chutima Prommak and Boriboon Deeka. Proceedings of the World Congress on Engineering 2007 Vol II WCE 2007, July 2-4, 2007, London, U.K. Network Design for Quality of Services in Wireless Local Area Networks: a Cross-layer Approach for Optimal Access Point Placement and Frequency Channel Assignment Chutima Prommak and Boriboon Deeka ESS

More information

Automatic power/channel management in Wi-Fi networks

Automatic power/channel management in Wi-Fi networks Automatic power/channel management in Wi-Fi networks Jan Kruys Februari, 2016 This paper was sponsored by Lumiad BV Executive Summary The holy grail of Wi-Fi network management is to assure maximum performance

More information

A Comparative Study of Quality of Service Routing Schemes That Tolerate Imprecise State Information

A Comparative Study of Quality of Service Routing Schemes That Tolerate Imprecise State Information A Comparative Study of Quality of Service Routing Schemes That Tolerate Imprecise State Information Xin Yuan Wei Zheng Department of Computer Science, Florida State University, Tallahassee, FL 330 {xyuan,zheng}@cs.fsu.edu

More information

SMACK - A SMart ACKnowledgement Scheme for Broadcast Messages in Wireless Networks. COMP Paper Presentation Junhua Yan Nov.

SMACK - A SMart ACKnowledgement Scheme for Broadcast Messages in Wireless Networks. COMP Paper Presentation Junhua Yan Nov. SMACK - A SMart ACKnowledgement Scheme for Broadcast Messages in Wireless Networks COMP635 -- Paper Presentation Junhua Yan Nov. 28, 2017 1 Reliable Transmission in Wireless Network Transmit at the lowest

More information

Computer Science and Software Engineering University of Wisconsin - Platteville. 4. Game Play. CS 3030 Lecture Notes Yan Shi UW-Platteville

Computer Science and Software Engineering University of Wisconsin - Platteville. 4. Game Play. CS 3030 Lecture Notes Yan Shi UW-Platteville Computer Science and Software Engineering University of Wisconsin - Platteville 4. Game Play CS 3030 Lecture Notes Yan Shi UW-Platteville Read: Textbook Chapter 6 What kind of games? 2-player games Zero-sum

More information

Partially Overlapped Channel Assignment for Multi-Channel Wireless Mesh Networks

Partially Overlapped Channel Assignment for Multi-Channel Wireless Mesh Networks Partially Overlapped Channel Assignment for Multi-Channel Wireless Mesh Networks A. Hamed Mohsenian Rad and Vincent W.S. Wong Department of Electrical and Computer Engineering The University of British

More information

Configuring OSPF. Information About OSPF CHAPTER

Configuring OSPF. Information About OSPF CHAPTER CHAPTER 22 This chapter describes how to configure the ASASM to route data, perform authentication, and redistribute routing information using the Open Shortest Path First (OSPF) routing protocol. The

More information

LSA-AODV: A LINK STABILITY BASED ALGORITHM USING FUZZY LOGIC FOR MULTI-HOP WIRELESS MESH NETWORKS

LSA-AODV: A LINK STABILITY BASED ALGORITHM USING FUZZY LOGIC FOR MULTI-HOP WIRELESS MESH NETWORKS SHIV SHAKTI International Journal in Multidisciplinary and Academic Research (SSIJMAR) Vol. 2, No. 6, November- December (ISSN 2278 5973) LSA-AODV: A LINK STABILITY BASED ALGORITHM USING FUZZY LOGIC FOR

More information

Politecnico di Milano Facoltà di Ingegneria dell Informazione. 3 Basic concepts. Wireless Networks Prof. Antonio Capone

Politecnico di Milano Facoltà di Ingegneria dell Informazione. 3 Basic concepts. Wireless Networks Prof. Antonio Capone Politecnico di Milano Facoltà di Ingegneria dell Informazione 3 Basic concepts Wireless Networks Prof. Antonio Capone Wireless Networks Wireless or wired, what is better? Well, it depends on the situation!

More information

Aizaz U Chaudhry *, Nazia Ahmad and Roshdy HM Hafez. Abstract

Aizaz U Chaudhry *, Nazia Ahmad and Roshdy HM Hafez. Abstract RESEARCH Open Access Improving throughput and fairness by improved channel assignment using topology control based on power control for multi-radio multichannel wireless mesh networks Aizaz U Chaudhry

More information

An Optimal (d 1)-Fault-Tolerant All-to-All Broadcasting Scheme for d-dimensional Hypercubes

An Optimal (d 1)-Fault-Tolerant All-to-All Broadcasting Scheme for d-dimensional Hypercubes An Optimal (d 1)-Fault-Tolerant All-to-All Broadcasting Scheme for d-dimensional Hypercubes Siu-Cheung Chau Dept. of Physics and Computing, Wilfrid Laurier University, Waterloo, Ontario, Canada, N2L 3C5

More information

Approach* unused. describes our scheme, Sensor based Dynamic Channel

Approach* unused. describes our scheme, Sensor based Dynamic Channel Wireless Sensor based Dynamic Channel Selection in Cellular Communication by Cognitive Radio Approach* orsha Banerjee, Student Member, IEEE, Chittabrata Ghosh, and Dharma P. Agrawal, Fellow, IEEE University

More information

OSPF Fundamentals. Agenda. OSPF Principles. L41 - OSPF Fundamentals. Open Shortest Path First Routing Protocol Internet s Second IGP

OSPF Fundamentals. Agenda. OSPF Principles. L41 - OSPF Fundamentals. Open Shortest Path First Routing Protocol Internet s Second IGP OSPF Fundamentals Open Shortest Path First Routing Protocol Internet s Second IGP Agenda OSPF Principles Introduction The Dijkstra Algorithm Communication Procedures LSA Broadcast Handling Splitted Area

More information

OSPF - Open Shortest Path First. OSPF Fundamentals. Agenda. OSPF Topology Database

OSPF - Open Shortest Path First. OSPF Fundamentals. Agenda. OSPF Topology Database OSPF - Open Shortest Path First OSPF Fundamentals Open Shortest Path First Routing Protocol Internet s Second IGP distance vector protocols like RIP have several dramatic disadvantages: slow adaptation

More information

Channel Hopping Algorithm Implementation in Mobile Ad Hoc Networks

Channel Hopping Algorithm Implementation in Mobile Ad Hoc Networks Channel Hopping Algorithm Implementation in Mobile Ad Hoc Networks G.Sirisha 1, D.Tejaswi 2, K.Priyanka 3 Assistant Professor, Department of Electronics and Communications Engineering, Shri Vishnu Engineering

More information

ROPAS: Cross-Layer Cognitive Architecture for Mobile UWB Networks

ROPAS: Cross-Layer Cognitive Architecture for Mobile UWB Networks Ghosh C, Xie B, Agrawal DP. ROPAS: Cross-layer cognitive architecture for mobile UWB networks. COMPUTER SCIENCE AND TECHNOLOGY 23(3): 413 425 May 2008 JOURNAL OF ROPAS: Cross-Layer Cognitive Architecture

More information

Journal of Asian Scientific Research DEVELOPMENT OF A COGNITIVE RADIO MODEL USING WAVELET PACKET TRANSFORM - BASED ENERGY DETECTION TECHNIQUE

Journal of Asian Scientific Research DEVELOPMENT OF A COGNITIVE RADIO MODEL USING WAVELET PACKET TRANSFORM - BASED ENERGY DETECTION TECHNIQUE Journal of Asian Scientific Research ISSN(e): 2223-1331/ISSN(p): 2226-5724 URL: www.aessweb.com DEVELOPMENT OF A COGNITIVE RADIO MODEL USING WAVELET PACKET TRANSFORM - BASED ENERGY DETECTION TECHNIQUE

More information

Frequency Synchronization in Global Satellite Communications Systems

Frequency Synchronization in Global Satellite Communications Systems IEEE TRANSACTIONS ON COMMUNICATIONS, VOL. 51, NO. 3, MARCH 2003 359 Frequency Synchronization in Global Satellite Communications Systems Qingchong Liu, Member, IEEE Abstract A frequency synchronization

More information

Scheduling Multiple Partially Overlapped Channels in Wireless Mesh Networks

Scheduling Multiple Partially Overlapped Channels in Wireless Mesh Networks Scheduling Multiple Partially Overlapped Channels in Wireless Mesh Networks Haiping Liu Hua Yu Xin Liu Chen-Nee Chuah Prasant Mohapatra University of California, Davis Email: { hpliu, huayu, xinliu, chuah,

More information

mywbut.com Two agent games : alpha beta pruning

mywbut.com Two agent games : alpha beta pruning Two agent games : alpha beta pruning 1 3.5 Alpha-Beta Pruning ALPHA-BETA pruning is a method that reduces the number of nodes explored in Minimax strategy. It reduces the time required for the search and

More information

DiCa: Distributed Tag Access with Collision-Avoidance among Mobile RFID Readers

DiCa: Distributed Tag Access with Collision-Avoidance among Mobile RFID Readers DiCa: Distributed Tag Access with Collision-Avoidance among Mobile RFID Readers Kwang-il Hwang, Kyung-tae Kim, and Doo-seop Eom Department of Electronics and Computer Engineering, Korea University 5-1ga,

More information

Cognitive Radio Networks

Cognitive Radio Networks 1 Cognitive Radio Networks Dr. Arie Reichman Ruppin Academic Center, IL שישי טכני-רדיו תוכנה ורדיו קוגניטיבי- 1.7.11 Agenda Human Mind Cognitive Radio Networks Standardization Dynamic Frequency Hopping

More information

Practical Routing and Channel Assignment Scheme for Mesh Networks with Directional Antennas

Practical Routing and Channel Assignment Scheme for Mesh Networks with Directional Antennas This full text paper was peer reviewed at the direction of IEEE Communications Society subject matter experts for publication in the ICC 28 proceedings. Practical Routing and Channel Assignment Scheme

More information

COGNITIVE RADIO TECHNOLOGY: ARCHITECTURE, SENSING AND APPLICATIONS-A SURVEY

COGNITIVE RADIO TECHNOLOGY: ARCHITECTURE, SENSING AND APPLICATIONS-A SURVEY COGNITIVE RADIO TECHNOLOGY: ARCHITECTURE, SENSING AND APPLICATIONS-A SURVEY G. Mukesh 1, K. Santhosh Kumar 2 1 Assistant Professor, ECE Dept., Sphoorthy Engineering College, Hyderabad 2 Assistant Professor,

More information

SPECTRUM SHARING: OVERVIEW AND CHALLENGES OF SMALL CELLS INNOVATION IN THE PROPOSED 3.5 GHZ BAND

SPECTRUM SHARING: OVERVIEW AND CHALLENGES OF SMALL CELLS INNOVATION IN THE PROPOSED 3.5 GHZ BAND SPECTRUM SHARING: OVERVIEW AND CHALLENGES OF SMALL CELLS INNOVATION IN THE PROPOSED 3.5 GHZ BAND David Oyediran, Graduate Student, Farzad Moazzami, Advisor Electrical and Computer Engineering Morgan State

More information

Chapter- 5. Performance Evaluation of Conventional Handoff

Chapter- 5. Performance Evaluation of Conventional Handoff Chapter- 5 Performance Evaluation of Conventional Handoff Chapter Overview This chapter immensely compares the different mobile phone technologies (GSM, UMTS and CDMA). It also presents the related results

More information

Feedback Compression Schemes for Downlink Carrier Aggregation in LTE-Advanced. Nguyen, Hung Tuan; Kovac, Istvan; Wang, Yuanye; Pedersen, Klaus

Feedback Compression Schemes for Downlink Carrier Aggregation in LTE-Advanced. Nguyen, Hung Tuan; Kovac, Istvan; Wang, Yuanye; Pedersen, Klaus Downloaded from vbn.aau.dk on: marts, 19 Aalborg Universitet Feedback Compression Schemes for Downlink Carrier Aggregation in LTE-Advanced Nguyen, Hung Tuan; Kovac, Istvan; Wang, Yuanye; Pedersen, Klaus

More information