Performance evaluation considering iterations per phase and SA temperature in WMN-SA system

Size: px
Start display at page:

Download "Performance evaluation considering iterations per phase and SA temperature in WMN-SA system"

Transcription

1 Mobile Information Systems (214) DOI.3233/MIS IOS Press Performance evaluation considering iterations per phase and SA temperature in WMN-SA system Shinji Sakamoto a,, Elis Kulla a, Tetsuya Oda a, Makoto Ikeda b, Leonard Barolli b and Fatos Xhafa c a Graduate School of Engineering, Fukuoka Institute of Technology, Fukuoka, Japan b Department of Information and Communication Engineering, Fukuoka Institute of Technology, Fukuoka, Japan c Technical University of Catalonia, Department of Languages and Informatics Systems, Barcelona, Spain Abstract. One of the key advantages of Wireless Mesh Networks (WMNs) is their importance for providing cost-efficient broadband connectivity. There are issues for achieving the network connectivity and user coverage, which are related with the node placement problem. In this work, we consider Simulated Annealing Algorithm (SA) temperature and Iteration per phase for the router node placement problem in WMNs. We want to find the optimal distribution of router nodes in order to provide the best network connectivity and provide the best coverage in a set of Normal distributed clients. From simulation results, we found how to optimize both the size of Giant Component and number of covered mesh clients. When the number of iterations per phase is big, the performance is better in WMN-SA System. From for SA temperature, when SA temperature is and 1, the performance is almost same. When SA temperature is 2 and 3 or more, the performance decrease because there are many kick ups. Keywords: Wireless Mesh Networks, WMN-SA, giant component, covered mesh clients, iterations per phase, SA temperature, normal distribution 1. Introduction Wireless Mesh Networks (WMNs) [1 3] are important network infrastructure for providing costefficient broadband wireless connectivity. They are showing their applicability in deployment of medical, transport and surveillance applications in urban areas, metropolitan, neighboring communities and municipal area networks. The main issues of WMNs consist of achieving network connectivity and stability as well as QoS in terms of user coverage. These issues are very closely related to the family of node placement problems in WMNs, such as mesh router nodes placement. Node placement problems have been long investigated in the optimization field due to numerous applications in location science (facility location, logistics, services, etc.) and classification (clustering). Corresponding author: Shinji Sakamoto, Graduate School of Engineering, Fukuoka Institute of Technology (FIT), Wajiro-Higashi, Higashi-Ku, Fukuoka , Japan. shinji.t.sakamoto@gmail.com X/14/$27. c 214 IOS Press and the authors. All rights reserved

2 322 S. Sakamoto et al. / Performance evaluation considering iterations per phase and SA temperature in WMN-SA system Algorithm 1 : Pseudo-code of SA. t := Initialize T s := Initial_Solution() v := Evaluate(s) while (stopping condition not met) do while t mod MarkovChainLen = do t := t+1 s1 := Generate(s,T ) //Move v1 := Evaluate(s1) if Accept(v, v1, T ) then s := s1 v := v1 end if end while T := Update(T ) end while return s Facility location problems are thus showing their usefulness to communication networks, and more especially from WMNs field. WMNs are currently attracting a lot of attention from wireless research and technology community for providing cost-efficient broadband wireless connectivity. WMNs are based on mesh topology, in which every node (representing a server) is connected to one or more nodes, enabling thus the information transmission in more than one path. The path redundancy is a robust feature of this kind of topology. Compared to other topologies, mesh topology does not need a central node, allowing networks based on such topology to be self-healing. These characteristics of networks with mesh topology make them very reliable and robust networks to potential server node failures. In WMNs mesh routers provide network connectivity services to mesh client nodes. The good performance and operability of WMNs largely depends on placement of mesh routers nodes in the geographical deployment area to achieve network connectivity, stability and user coverage. The objective is to find an optimal and robust topology of the mesh router nodes to support connectivity services to clients. For most formulations, node placement problems are shown to be computationally hard to solve to optimality [4 7], and therefore heuristic and meta-heuristic approaches are useful approaches to solve the problem for practical purposes. Several heuristic approaches are found in the literature for node placement problems in WMNs [8 12]. In this work, we use our proposed and implemented WMN-SA system, which is based on Simulation Annealing (SA) to deal with the node placement problem in WMNs. For simulations, we consider normal distribution of 48 mesh clients in a grid size. Then we deploy 16 mesh routers and apply SA, to maximize the size of Giant Component (GC) and then maximize the number of covered mesh clients. The rest of the paper is organized as follows. The definition of node placement problem is presented in Section 2. The proposed and implemented WMN-SA simulation system is presented in Section 3. The simulation results are given in Section 4. Finally, concluding remarks and future work are given in Section.

3 S. Sakamoto et al. / Performance evaluation considering iterations per phase and SA temperature in WMN-SA system Node placement problem in WMNs In this problem, we are given a grid area arranged in cells where to distribute a number of mesh router nodes and a number of mesh client nodes of fixed positions (of an arbitrary distribution) in the grid area. The objective is to find a location assignment for the mesh routers to the cells of the grid area that maximizes the network connectivity and client coverage. Network connectivity is measured by the size of the GC of the resulting WMN graph, while the user coverage is simply the number of mesh client nodes that fall within the radio coverage of at least one mesh router node. An instance of the problem consists as follows. N mesh router nodes, each having its own radio coverage, defining thus a vector of routers. An area W H where to distribute N mesh routers. Positions of mesh routers are not predetermined, and are to be computed. M client mesh nodes located in arbitrary points of the considered area, defining a matrix of clients. It should be noted that network connectivity and user coverage are among most important metrics in WMNs and directly affect the network performance. In this work, we have considered a bi-objective optimization in which we first maximize the network connectivity of the WMN (through the maximization of the size of the GC) and then, the maximization of the number of covered mesh clients. 3. Proposed and implemented WMN-SA system In this section, we present WMN-SA simulation system. Our system can generate instances of the problem using different distributions of client and mesh routers. The GUI of WMN-SA is shown in Fig. 1. We set the network configuration parameters as number of clients, client distribution, number of mesh routers, grid size, radius of communication distance and the size of subgrid Simulated annealing Description of simulated annealing SA algorithm [13] is a generalization of the metropolis heuristic. Indeed, SA consists of a sequence of executions of metropolis with a progressive decrement of the temperature starting from a rather high temperature, where almost any move is accepted, to a low temperature, where the search resembles Hill Climbing. In fact, it can be seen as a hill-climber with an internal mechanism to escape local optima (see pseudo-code in Algorithm 1). In SA, the solution s is accepted as the new current solution if δ holds, where δ = f(s ) f(s). To allow escaping from a local optimum, the movements that increase the energy function are accepted with a decreasing probability exp ( δ/t) if δ >, wheret is a parameter called the temperature. The decreasing values of T are controlled by a cooling schedule, which specifies the temperature values at each stage of the algorithm. This represents an important decision for its application (a typical option is to use a proportional method, like T k = α T k 1 ). SA usually gives better results in practice, but uses is very slow. The most striking difficulty in applying SA is to choose and tune its parameters such as initial and final temperature, decrement of the temperature (cooling schedule), equilibrium detection, etc.

4 324 S. Sakamoto et al. / Performance evaluation considering iterations per phase and SA temperature in WMN-SA system Fig. 1. GUI tool for WMN-SA system. Fig. 2. Mesh router coverage and communication distance. For further details on initial solution, fitness evaluation and movement types, refer to [14] 1.However, the acceptability criteria of neighboring solutions is now different, as explained next Acceptability criteria The acceptability criteria for newly generated solutions is based on the definition of a threshold value (accepting threshold) as follows. We consider a succession t k such that t k >t k+1, t k > and t k tends toask tends to infinity. Then, for any two solutions s i and s j,iffitness(s j ) fitness(s i ) <t k,then accept solution s j. For the SA, t k values are taken as accepting threshold but the criterion for acceptance is probabilistic: If fitness(s j ) fitness(s i ) then s j is accepted. If fitness(s j ) fitness(s i ) > then s j is accepted with probability exp[(fitness(s j ) fitness(s i ))/t k ] (at iteration k the algorithm generates a random number R (, 1) and s j is accepted if R< exp[(fitness(s j ) fitness(s i ))/t k ]). In this case, each neighbor of a solution has a positive probability of replacing the current solution. The t k values are chosen in a way that solutions with large increase in the cost of the solutions are less likely to be accepted (but there is still a positive probability of accepting them). 4. Simulation results 4.1. Simulation settings We carried out many simulations to evaluate the performance of WMNs using WMN-SA simulation system. In these simulation scenarios, we consider a grid with size. One grid unit is 2m 2 m 1 Initial solution, fitness evaluation and movement types are the same for Hill Climbing and Simulated Annealing.

5 S. Sakamoto et al. / Performance evaluation considering iterations per phase and SA temperature in WMN-SA system 32 Table 1 Simulation settings Parameters Values Client distribution Normal Area size Number of mesh router nodes 16 Number of mesh client nodes 48 SA temperature, 1, 2, 3 Iteration per phase 64, 128, 26, 12 Applied method Combination Iterations per phase=64 (a) Iterations per phase = Iterations per phase= (b) Iterations per phase = Iterations per phase=128 (c) Iterations per phase = 26 (d) Iterations per phase = 12 Fig. 3. Size of GC for different iterations per phase. (d =2m). In Fig. 2, we show the coverage area of a mesh router, which has a radius of m. In Table 1, we show the simulation parameters. The distribution of mesh clients is normal. The number of mesh routers is 16 and the number of mesh clients 48. For evaluation, we considered 4 different values of iterations per phase (64, 128, 26, 12) and SA temperature (, 1, 2, 3). It should be noted that when the value of temperature is larger or equal to 1, the SA may accept sometimes bad solutions.

6 326 S. Sakamoto et al. / Performance evaluation considering iterations per phase and SA temperature in WMN-SA system [%] Iterations per phase=64 (a) Iterations per phase = 64 (b) Iterations per phase = Iterations per phase= Iterations per phase=128 (c) Iterations per phase = 26 (d) Iterations per phase = Fig. 4. Number of covered mesh clients for different iterations per phase. 4 Iterations per phase = 64 Iterations per phase 128 Iterations per phase 26 Iterations per phase = (a) Size of GC Covered Mesh Clients[%] 1 Fig.. Comparison of 4 different iterations per phase Iterations per phase = 64 Iterations per phase 128 Iterations per phase 26 Iterations per phase = 12 4 (b) Number of covered mesh clients

7 S. Sakamoto et al. / Performance evaluation considering iterations per phase and SA temperature in WMN-SA system SA Temperature= (a) SA temperature = (b) SA temperature = SA Temperature=2 2 SA Temperature=3 1 (c) SA temperature = 2 (d) SA temperature = Results discussion Fig. 6. Size of GC for different SA temperature. In Figs 3, 4, 6 and 7, we show results of size of GC and number of covered mesh clients. For each phase of calculations, we conduct the simulations times, in order to create a general view of results. The maximum size of GC is 16, as we have 16 routers in our scenario Evaluation for different iterations per phase We conduct simulations for different number of iterations per each phase. In Figs 3 and 4, we show results of size of GC and number of covered mesh clients, respectively. For each phase of calculations, SA runs a number of 64, 128, 26 and 12 iterations. In Figs 3(a) and 3(b), the performance of the system for optimizing the size of GC, is almost the same. After 2 iterations the router backbone is completed with all 16 routers. While in the cases of 26 and 12 iterations (Figs 3(c) and 3(d)), the performance increases, as the max size of GC is reached for less phases ( and 8, respectively). In Fig. (a), we show the results of the size of GC up to 14 phases as the size of GC is always maximum for more phases. In Fig. 4 are shown the results for number of covered mesh clients. We conducted simulations with 2 phases. The algorithm runs in similar ways for all cases when number of iterations is different. The 1

8 328 S. Sakamoto et al. / Performance evaluation considering iterations per phase and SA temperature in WMN-SA system SA Temperature= (a) SA temperature = (b) SA temperature = SA Temperature= (c) SA temperature = 2 (d) SA temperature = SA Temperature=3 Fig. 7. Number of covered mesh clients for different SA temperature. [%] Iterations per Phase=12 6 SA Temperature SA Temperature 1 SA Temperature 2 SA Temperature = 3 (a) Ratios of Giant Component Covered Mesh Clients[%] Iterations per Phase=12 6 SA Temperature SA Temperature 1 SA Temperature 2 SA Temperature = 3 (b) Ratios of fovered mesh clients Fig. 8. Comparison for different SA temperature.

9 S. Sakamoto et al. / Performance evaluation considering iterations per phase and SA temperature in WMN-SA system 329 maximum number of covered mesh clients goes up to 46. The performance becomes a little better when we move from 64 iterations per phase up to 12 (see Figs 4(a) 4(d)), in terms of faster optimization. In the cases of 26 and 12 iterations per phase, in Figs 4(c) and 4(d), in around phases there are more than 4 mesh clients covered. In Fig. (b), for less iterations per phase the rate of covered mesh clients is smaller Evaluation for different SA temperature values We conduct tests for different values of SA temperature (from to 3), while keeping the number of iterations per phase fixed to 12. We should note that when the value of temperature is, SA is a simple HC and there is no tolerance for finding bad solutions. In Figs 6 and 7, we show results of size of GC and number of covered mesh clients, respectively. For 2 phases of calculations, when SA temperature is and 1 (Figs 6(a) and 6(b)), the performance is good and the maximum size of GC is reached in a few phases. In Figs 6(c) and 6(d), the SA temperature is increased to values 2 and 3. We notice that, because of many kick-ups of SA, the performance decreases and the max size of GC (16) is not reached in most of the cases. The average size of GC is smaller when temperature value is 3. In Fig. 7 is shown the number of covered mesh clients for each SA temperature values. The total number of deployed mesh clients is 48 and in the first two cases (Figs 7(a) and 7(b)), the number of covered mesh clients reaches 47 and 46, respectively. The performance decreases further to 44 and 41 when temperature increases to 2 and 3, respectively (see Figs 7(c) and 7(d)).. Conclusions In this paper, we conducted simulations with our WMN-SA system, in a grid with size 32 32,where we deployed 48 mesh clients and 16 mesh routers. Using SA, we optimized the size of GC and then the number of covered mesh clients for different iterations per phase and values of SA temperature. From the simulation results, we conclude that, when we use SA, the performance is better when the number of iterations per phase is bigger. While, when the temperature of SA increases, the performance decreases for both sizes of GC and number of covered mesh clients. In our future work, we would like to make evaluations for different cases and patterns. Moreover, we would like to implement other search optimization algorithms in our simulation system. Acknowledgment This work is support by a Grant-in-Aid for scientific research of Japanese Society for the Promotion of Science (JSPS). The authors would like to thank JSPS for the financial support. References [1] I.F. Akyildiz, X. Wang and W. Wang, Wireless Mesh Networks: A Survey, Computer Networks 47(4), 2, [2] N. Nandiraju, D. Nandiraju, L. Santhanama, B. He, J. Wang and D. Agrawal, Wireless Mesh Networks: Current Challenges and Future Direction of Web-in-the-Sky, IEEE Wireless Communications (27), [3] Ch. Chen and Ch. Chekuri, Urban Wireless Mesh Network Planning: The Case of Directional Antennas, Tech Report No. UIUCDCS-R , Department of Computer Science, University of Illinois at Urbana-Champaign, 27.

10 33 S. Sakamoto et al. / Performance evaluation considering iterations per phase and SA temperature in WMN-SA system [4] M.R. Garey and D.S. Johnson, Computers and Intractability -A Guide to the Theory of NP-Completeness, Freeman, San Francisco, [] A. Lim, B. Rodrigues, F. Wang and Zh. Xua, k Center Problems with Minimum Coverage, Theoretical Computer Science 332(1 3) (2), [6] E. Amaldi, A. Capone, M. Cesana, I. Filippini and F. Malucelli, Optimization Models and Methods for Planning Wireless Mesh Networks, Computer Networks 2 (28), [7] J. Wang, B. Xie, K. Cai and D.P. Agrawal, Efficient Mesh Router Placement in Wireless Mesh Networks, MASS-27, Pisa, Italy, 27, pp [8] S.N. Muthaiah and C. Rosenberg, Single Gateway Placement in Wireless Mesh Networks, In Proc. of 8th International IEEE Symposium on Computer Networks, Turkey, 28, pp [9] P. Zhou, B.S. Manoj and R. Rao, A Gateway Placement Algorithm in Wireless Mesh Networks, Proc. of the Third Annual International Wireless Internet Conference (WICON-27), October 27, pp [] M. Tang, Gateways Placement in Backbone Wireless Mesh Networks, International Journal of Communications, Network and System Sciences 2(1) (29), 4. [11] A. Antony Franklin and C. Siva Ram Murthy, Node Placement Algorithm for Deployment of Two-Tier Wireless Mesh Networks, In Proc. of IEEE GLOBECOM-27, Washington, USA, 27, pp [12] T. Vanhatupa, M. Hännikäinen and T.D. Hämäläinen, Genetic Algorithm to Optimize Node Placement and Configuration for WLAN Planning, In Proc. of 4th International Symposium on Wireless Communication Systems, 27, pp [13] S. Kirkpatrick, C.D. Gelatt and M.P. Vecchi, Optimization by Simulated Annealing, Journal of Science 22 (1983), [14] F. Xhafa, C. Sanchez, L. Barolli and R. Miho, An Annealing Approach to Router Nodes Placement Problem in Wireless Mesh Networks, In Proc. of CISIS-2, 2, pp [1] J. Holland, Adaptation in Natural and Artificial Systems, University of Michigan Press, Ann Arbor, 197. [16] F. Xhafa, C. Sanchez and L. Barolli, Genetic Algorithms for Efficient Placement of Router Nodes in Wireless Mesh Networks, Proc. of AINA-2, 2, pp

11 Journal of Industrial Engineering Multimedia The Scientific World Journal Applied Computational Intelligence and Soft Computing International Journal of Distributed Sensor Networks Fuzzy Systems Modelling & Simulation in Engineering Submit your manuscripts at Journal of Computer Networks and Communications Artificial Intelligence International Journal of Biomedical Imaging Artificial Neural Systems International Journal of Computer Engineering Computer Games Technology Software Engineering International Journal of Reconfigurable Computing Robotics Computational Intelligence and Neuroscience Human-Computer Interaction Journal of Journal of Electrical and Computer Engineering

Ad Hoc and Neighborhood Search Methods for Placement of Mesh Routers in Wireless Mesh Networks

Ad Hoc and Neighborhood Search Methods for Placement of Mesh Routers in Wireless Mesh Networks 29 29th IEEE International Conference on Distributed Computing Systems Workshops Ad Hoc and Neighborhood Search Methods for Placement of Mesh Routers in Wireless Mesh Networks Fatos Xhafa Department of

More information

A Study on Performance of Hill Climbing Heuristic Method for Router Placement in Wireless Mesh Networks

A Study on Performance of Hill Climbing Heuristic Method for Router Placement in Wireless Mesh Networks A Study on Performance of Hill Climbing Heuristic Method for Router Placement in Wireless Mesh Networks Evjola Spaho, Alda Xhafa, Donald Elmazi, Fatos Xhafa and Leonard Barolli Abstract Wireless Mesh Networks

More information

Genetic Algorithms for Efficient Placement of Router Nodes in Wireless Mesh Networks

Genetic Algorithms for Efficient Placement of Router Nodes in Wireless Mesh Networks 2 24th IEEE International Conference on Advanced Information Networking and Applications Genetic Algorithms for Efficient Placement of Router Nodes in Wireless Mesh Networks Fatos Xhafa Department of Languages

More information

Portal del coneixement obert de la UPC

Portal del coneixement obert de la UPC UPCommons Portal del coneixement obert de la UPC http://upcommons.upc.edu/e-prints Sakamoto, S. [et al.] (2016) Node placement in Wireless Mesh Networks: a comparison study of WMN-SA and WMN-PSO simulation

More information

Solving Mesh Router Nodes Placement Problem in Wireless Mesh Networks by Tabu Search Algorithm

Solving Mesh Router Nodes Placement Problem in Wireless Mesh Networks by Tabu Search Algorithm Solving Mesh Router Nodes Placement Problem in Wireless Mesh Networks by Tabu Search Algorithm Fatos Xhafa a,, Christian Sánchez a, Admir Barolli b, Makoto Takizawa b a Technical University of Catalonia,

More information

Novel Placement Mesh Router Approach for Wireless Mesh Network

Novel Placement Mesh Router Approach for Wireless Mesh Network Novel Placement Mesh Router Approach for Wireless Mesh Network Mohsen Rezaei 1, Mehdi Agha Sarram 2,Vali Derhami 3,and Hossein Mahboob Sarvestani 4 Electrical and Computer Engineering Department, Yazd

More information

Mesh Router Nodes placement in Rural Wireless Mesh Networks

Mesh Router Nodes placement in Rural Wireless Mesh Networks CARI 14 Mesh Router Nodes placement in Rural Wireless Mesh Networks Jean Louis Fendji Kedieng Ebongue*, Christopher Thron**, Jean Michel Nlong*, Karl-Heinz Rodiger*** *The University of Ngaoundéré CAMEROON

More information

Gateways Placement in Backbone Wireless Mesh Networks

Gateways Placement in Backbone Wireless Mesh Networks I. J. Communications, Network and System Sciences, 2009, 1, 1-89 Published Online February 2009 in SciRes (http://www.scirp.org/journal/ijcns/). Gateways Placement in Backbone Wireless Mesh Networks Abstract

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

Linear Wireless Mesh Network Planning

Linear Wireless Mesh Network Planning Linear Wireless Mesh Network Planning Felipe Rolim e Souza and Célio V. N. Albuquerque Instituto de Computação - Universidade Federal Fluminense (UFF), Brazil Email: {frolim,celio}@ic.uff.br Abstract Wireless

More information

Wireless broadband networks are being increasingly

Wireless broadband networks are being increasingly A Multi-objective Optimization Model For Planning Robust and Least Interfered Wireless Mesh Networks Djohara Benyamina, Abdelhakim Hafid NRL, University of Montreal, Canada {benyamid, ahafid}@iro.umontreal.ca

More information

A Cluster Head Decision System for Sensor Networks Using Fuzzy Logic and Number of Neighbor Nodes

A Cluster Head Decision System for Sensor Networks Using Fuzzy Logic and Number of Neighbor Nodes A Cluster Head Decision System for Sensor Networks Using Fuzzy Logic and Number of Neighbor Nodes Junpei Anno, Leonard Barolli, Arjan Durresi, Fatos Xhafa, Akio Koyama Graduate School of Engineering Fukuoka

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

A Performance Study of Deployment Factors in Wireless Mesh

A Performance Study of Deployment Factors in Wireless Mesh A Performance Study of Deployment Factors in Wireless Mesh Networks Joshua Robinson and Edward Knightly Rice University Rice Networks Group networks.rice.edu City-wide Wireless Deployments Many new city-wide

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

Node Deployment Strategies and Coverage Prediction in 3D Wireless Sensor Network with Scheduling

Node Deployment Strategies and Coverage Prediction in 3D Wireless Sensor Network with Scheduling Advances in Computational Sciences and Technology ISSN 0973-6107 Volume 10, Number 8 (2017) pp. 2243-2255 Research India Publications http://www.ripublication.com Node Deployment Strategies and Coverage

More information

PLACEMENT OF ENERGY AWARE WIRELESS MESH NODES FOR E-LEARNING IN GREEN CAMPUSES

PLACEMENT OF ENERGY AWARE WIRELESS MESH NODES FOR E-LEARNING IN GREEN CAMPUSES PLACEMENT OF ENERGY AWARE WIRELESS MESH NODES FOR E-LEARNING IN GREEN CAMPUSES G.Merlin Sheeba 1, Alamelu Nachiappan 2, P.H.Pavan umar 3, Prateek 3 1, 3 Department of Electronics and Telecommunication

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

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

International Journal of Distributed Systems and Technologies

International Journal of Distributed Systems and Technologies International Journal of Distributed Systems and Technologies Editorial Preface Table of Contents April-June 2015, Vol. 6, No. 2 iv Preface Nik Bessis, University of Derby, Derby, UK Research Articles

More information

Improving QoS Metrics in Dynamic Bandwidth Allocation Of Wireless Mesh Community Networks

Improving QoS Metrics in Dynamic Bandwidth Allocation Of Wireless Mesh Community Networks International Journal of Advanced Research in Biology Engineering Science and Technology (IJARBEST) Vol. 2, Special Issue 15, March 2016 ISSN 2395-695X (Print) ISSN 2395-695X (Online) Improving QoS Metrics

More information

Rating and Generating Sudoku Puzzles Based On Constraint Satisfaction Problems

Rating and Generating Sudoku Puzzles Based On Constraint Satisfaction Problems Rating and Generating Sudoku Puzzles Based On Constraint Satisfaction Problems Bahare Fatemi, Seyed Mehran Kazemi, Nazanin Mehrasa International Science Index, Computer and Information Engineering waset.org/publication/9999524

More information

AN EFFICIENT DEPLOYMENT APPROACH FOR IMPROVED COVERAGE IN WIRELESS SENSOR NETWORKS BASED ON FLOWER POLLINATION ALGORITHM

AN EFFICIENT DEPLOYMENT APPROACH FOR IMPROVED COVERAGE IN WIRELESS SENSOR NETWORKS BASED ON FLOWER POLLINATION ALGORITHM AN EFFICIENT DEPLOYMENT APPROACH FOR IMPROVED COVERAGE IN WIRELESS SENSOR NETWORKS BASED ON FLOWER POLLINATION ALGORITHM Faten Hajjej, Ridha Ejbali and Mourad Zaied Research Group on Intelligent Machines

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

Extending lifetime of sensor surveillance systems in data fusion model

Extending lifetime of sensor surveillance systems in data fusion model IEEE WCNC 2011 - Network Exting lifetime of sensor surveillance systems in data fusion model Xiang Cao Xiaohua Jia Guihai Chen State Key Laboratory for Novel Software Technology, Nanjing University, Nanjing,

More information

Calculation on Coverage & connectivity of random deployed wireless sensor network factors using heterogeneous node

Calculation on Coverage & connectivity of random deployed wireless sensor network factors using heterogeneous node Calculation on Coverage & connectivity of random deployed wireless sensor network factors using heterogeneous node Shikha Nema*, Branch CTA Ganga Ganga College of Technology, Jabalpur (M.P) ABSTRACT A

More information

SENSOR PLACEMENT FOR MAXIMIZING LIFETIME PER UNIT COST IN WIRELESS SENSOR NETWORKS

SENSOR PLACEMENT FOR MAXIMIZING LIFETIME PER UNIT COST IN WIRELESS SENSOR NETWORKS SENSOR PACEMENT FOR MAXIMIZING IFETIME PER UNIT COST IN WIREESS SENSOR NETWORKS Yunxia Chen, Chen-Nee Chuah, and Qing Zhao Department of Electrical and Computer Engineering University of California, Davis,

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

Gateway Placement for Throughput Optimization in Wireless Mesh Networks

Gateway Placement for Throughput Optimization in Wireless Mesh Networks Gateway Placement for Throughput Optimization in Wireless Mesh Networks Fan Li Yu Wang Department of Computer Science University of North Carolina at Charlotte, USA Email: {fli, ywang32}@uncc.edu Xiang-Yang

More information

Fine-grained Access Provisioning via Joint Gateway Selection and Flow Routing on SDN-aware Wi-Fi Mesh Networks

Fine-grained Access Provisioning via Joint Gateway Selection and Flow Routing on SDN-aware Wi-Fi Mesh Networks Fine-grained Access Provisioning via Joint Gateway Selection and Flow Routing on SDN-aware Wi-Fi Mesh Networks Dawood Sajjadi (sajjadi @ uvic.ca) Department of Computer Science, Faculty of Engineering,

More information

A Greedy Algorithm for Target Coverage Scheduling in Directional Sensor Networks

A Greedy Algorithm for Target Coverage Scheduling in Directional Sensor Networks A Greedy Algorithm for Target Coverage Scheduling in Directional Sensor Networks Youn-Hee Han, Chan-Myung Kim Laboratory of Intelligent Networks Advanced Technology Research Center Korea University of

More information

A Retrievable Genetic Algorithm for Efficient Solving of Sudoku Puzzles Seyed Mehran Kazemi, Bahare Fatemi

A Retrievable Genetic Algorithm for Efficient Solving of Sudoku Puzzles Seyed Mehran Kazemi, Bahare Fatemi A Retrievable Genetic Algorithm for Efficient Solving of Sudoku Puzzles Seyed Mehran Kazemi, Bahare Fatemi Abstract Sudoku is a logic-based combinatorial puzzle game which is popular among people of different

More information

CHANNEL ASSIGNMENT AND LOAD DISTRIBUTION IN A POWER- MANAGED WLAN

CHANNEL ASSIGNMENT AND LOAD DISTRIBUTION IN A POWER- MANAGED WLAN CHANNEL ASSIGNMENT AND LOAD DISTRIBUTION IN A POWER- MANAGED WLAN Mohamad Haidar Robert Akl Hussain Al-Rizzo Yupo Chan University of Arkansas at University of Arkansas at University of Arkansas at University

More information

Evolution of Sensor Suites for Complex Environments

Evolution of Sensor Suites for Complex Environments Evolution of Sensor Suites for Complex Environments Annie S. Wu, Ayse S. Yilmaz, and John C. Sciortino, Jr. Abstract We present a genetic algorithm (GA) based decision tool for the design and configuration

More information

Combining MBSFN and PTM Transmission Schemes for Resource Efficiency in LTE Networks

Combining MBSFN and PTM Transmission Schemes for Resource Efficiency in LTE Networks Combining MBSFN and PTM Transmission Schemes for Resource Efficiency in LTE Networks Antonios Alexiou 2, Konstantinos Asimakis 1,2, Christos Bouras 1,2, Vasileios Kokkinos 1,2, Andreas Papazois 1,2 1 Research

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

Current Trends in Technology and Science ISSN: Volume: VI, Issue: VI

Current Trends in Technology and Science ISSN: Volume: VI, Issue: VI 784 Current Trends in Technology and Science Base Station Localization using Social Impact Theory Based Optimization Sandeep Kaur, Pooja Sahni Department of Electronics & Communication Engineering CEC,

More information

CHANNEL ASSIGNMENT IN AN IEEE WLAN BASED ON SIGNAL-TO- INTERFERENCE RATIO

CHANNEL ASSIGNMENT IN AN IEEE WLAN BASED ON SIGNAL-TO- INTERFERENCE RATIO CHANNEL ASSIGNMENT IN AN IEEE 802.11 WLAN BASED ON SIGNAL-TO- INTERFERENCE RATIO Mohamad Haidar #1, Rabindra Ghimire #1, Hussain Al-Rizzo #1, Robert Akl #2, Yupo Chan #1 #1 Department of Applied Science,

More information

Mesh-type Broadband Fixed Wireless Access System

Mesh-type Broadband Fixed Wireless Access System Mesh-type Broadband Fixed Wireless Access System Daisei Uchida, Makoto Sugita, Ichihiko Toyoda, and Takeo Atsugi Abstract The mesh-type fixed wireless access (FWA) system, which uses directional antennas

More information

Joint QoS Multicast Routing and Channel Assignment in Multiradio Multichannel Wireless Mesh Networks using Intelligent Computational Methods

Joint QoS Multicast Routing and Channel Assignment in Multiradio Multichannel Wireless Mesh Networks using Intelligent Computational Methods Joint QoS Multicast Routing and Channel Assignment in Multiradio Multichannel Wireless Mesh Networks using Intelligent Computational Methods Hui Cheng,a, Shengxiang Yang b a Department of Computer Science,

More information

A GRASP heuristic for the Cooperative Communication Problem in Ad Hoc Networks

A GRASP heuristic for the Cooperative Communication Problem in Ad Hoc Networks MIC2005: The Sixth Metaheuristics International Conference??-1 A GRASP heuristic for the Cooperative Communication Problem in Ad Hoc Networks Clayton Commander Carlos A.S. Oliveira Panos M. Pardalos Mauricio

More information

Swarm Based Sensor Deployment Optimization in Ad hoc Sensor Networks

Swarm Based Sensor Deployment Optimization in Ad hoc Sensor Networks Swarm Based Sensor Deployment Optimization in Ad hoc Sensor Networks Wu Xiaoling, Shu Lei, Yang Jie, Xu Hui, Jinsung Cho, and Sungyoung Lee Department of Computer Engineering, Kyung Hee University, Korea

More information

Wireless Mesh Networks

Wireless Mesh Networks Wireless Mesh Networks Renato Lo Cigno www.disi.unitn.it/locigno/teaching Part of this material (including some pictures) features and are freely reproduced from: Ian F.Akyildiz, Xudong Wang,Weilin Wang,

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

Optimal Placement of Antennae in Telecommunications Using Metaheuristics

Optimal Placement of Antennae in Telecommunications Using Metaheuristics Optimal Placement of Antennae in Telecommunications Using Metaheuristics E. Alba, G. Molina March 24, 2006 Abstract In this article, several optimization algorithms are applied to solve the radio network

More information

A GRASP HEURISTIC FOR THE COOPERATIVE COMMUNICATION PROBLEM IN AD HOC NETWORKS

A GRASP HEURISTIC FOR THE COOPERATIVE COMMUNICATION PROBLEM IN AD HOC NETWORKS A GRASP HEURISTIC FOR THE COOPERATIVE COMMUNICATION PROBLEM IN AD HOC NETWORKS C. COMMANDER, C.A.S. OLIVEIRA, P.M. PARDALOS, AND M.G.C. RESENDE ABSTRACT. Ad hoc networks are composed of a set of wireless

More information

Application of Soft Computing Techniques for Handoff Management in Wireless Cellular Networks

Application of Soft Computing Techniques for Handoff Management in Wireless Cellular Networks International Journal of Engineering and Management Research, Vol.-2, Issue-6, December 2012 ISSN No.: 2250-0758 Pages: 1-6 www.ijemr.net Application of Soft Computing Techniques for Handoff Management

More information

Multi-objective Genetic Algorithm for Access Point Optimum Location: A Case Study of Wireless Digital Campus

Multi-objective Genetic Algorithm for Access Point Optimum Location: A Case Study of Wireless Digital Campus 348 Multi-objective Genetic Algorithm for Access Point Optimum Location: A Case Study of Wireless Digital Campus A.Bayu Primawan 1, 1 Department of Electrical Engineering, Sanata Dharma University, Paingan,

More information

DV-HOP LOCALIZATION ALGORITHM IMPROVEMENT OF WIRELESS SENSOR NETWORK

DV-HOP LOCALIZATION ALGORITHM IMPROVEMENT OF WIRELESS SENSOR NETWORK DV-HOP LOCALIZATION ALGORITHM IMPROVEMENT OF WIRELESS SENSOR NETWORK CHUAN CAI, LIANG YUAN School of Information Engineering, Chongqing City Management College, Chongqing, China E-mail: 1 caichuan75@163.com,

More information

Research Article A New Iterated Local Search Algorithm for Solving Broadcast Scheduling Problems in Packet Radio Networks

Research Article A New Iterated Local Search Algorithm for Solving Broadcast Scheduling Problems in Packet Radio Networks Hindawi Publishing Corporation EURASIP Journal on Wireless Communications and Networking Volume 2010, Article ID 578370, 8 pages doi:10.1155/2010/578370 Research Article A New Iterated Local Search Algorithm

More information

Optimal Relay Placement for Cellular Coverage Extension

Optimal Relay Placement for Cellular Coverage Extension Optimal elay Placement for Cellular Coverage Extension Gauri Joshi, Abhay Karandikar Department of Electrical Engineering Indian Institute of Technology Bombay Powai, India 400076. Email: gaurijoshi@iitb.ac.in,

More information

INTERNATIONAL CONFERENCE ON ENGINEERING DESIGN ICED 01 GLASGOW, AUGUST 21-23, 2001

INTERNATIONAL CONFERENCE ON ENGINEERING DESIGN ICED 01 GLASGOW, AUGUST 21-23, 2001 INTERNATIONAL CONFERENCE ON ENGINEERING DESIGN ICED 01 GLASGOW, AUGUST 21-23, 2001 DESIGN OF PART FAMILIES FOR RECONFIGURABLE MACHINING SYSTEMS BASED ON MANUFACTURABILITY FEEDBACK Byungwoo Lee and Kazuhiro

More information

QUALITY OF SERVICE (QoS) is driving research and

QUALITY OF SERVICE (QoS) is driving research and 482 IEEE JOURNAL ON SELECTED AREAS IN COMMUNICATIONS, VOL. 33, NO. 3, MARCH 2015 Joint Allocation of Resource Blocks, Power, and Energy-Harvesting Relays in Cellular Networks Sobia Jangsher, Student Member,

More information

Joint Routing and Scheduling Optimization in Wireless Mesh Networks with Directional Antennas

Joint Routing and Scheduling Optimization in Wireless Mesh Networks with Directional Antennas Joint Routing and Scheduling Optimization in Wireless Mesh Networks with Directional Antennas Antonio Capone Department of Electronics and Information Politecnico di Milano Email: capone@elet.polimi.it

More information

Multi robot Team Formation for Distributed Area Coverage. Raj Dasgupta Computer Science Department University of Nebraska, Omaha

Multi robot Team Formation for Distributed Area Coverage. Raj Dasgupta Computer Science Department University of Nebraska, Omaha Multi robot Team Formation for Distributed Area Coverage Raj Dasgupta Computer Science Department University of Nebraska, Omaha C MANTIC Lab Collaborative Multi AgeNt/Multi robot Technologies for Intelligent

More information

Coverage in Sensor Networks

Coverage in Sensor Networks Coverage in Sensor Networks Xiang Luo ECSE 6962 Coverage problems Definition: the measurement of quality of service (surveillance) that can be provided by a particular sensor network Coverage problems

More information

Structure and Synthesis of Robot Motion

Structure and Synthesis of Robot Motion Structure and Synthesis of Robot Motion Motion Synthesis in Groups and Formations I Subramanian Ramamoorthy School of Informatics 5 March 2012 Consider Motion Problems with Many Agents How should we model

More information

Mehrdad Amirghasemi a* Reza Zamani a

Mehrdad Amirghasemi a* Reza Zamani a The roles of evolutionary computation, fitness landscape, constructive methods and local searches in the development of adaptive systems for infrastructure planning Mehrdad Amirghasemi a* Reza Zamani a

More information

Surveillance strategies for autonomous mobile robots. Nicola Basilico Department of Computer Science University of Milan

Surveillance strategies for autonomous mobile robots. Nicola Basilico Department of Computer Science University of Milan Surveillance strategies for autonomous mobile robots Nicola Basilico Department of Computer Science University of Milan Intelligence, surveillance, and reconnaissance (ISR) with autonomous UAVs ISR defines

More information

OFDM Pilot Optimization for the Communication and Localization Trade Off

OFDM Pilot Optimization for the Communication and Localization Trade Off SPCOMNAV Communications and Navigation OFDM Pilot Optimization for the Communication and Localization Trade Off A. Lee Swindlehurst Dept. of Electrical Engineering and Computer Science The Henry Samueli

More information

DISTRIBUTION NETWORK RECONFIGURATION FOR LOSS MINIMISATION USING DIFFERENTIAL EVOLUTION ALGORITHM

DISTRIBUTION NETWORK RECONFIGURATION FOR LOSS MINIMISATION USING DIFFERENTIAL EVOLUTION ALGORITHM DISTRIBUTION NETWORK RECONFIGURATION FOR LOSS MINIMISATION USING DIFFERENTIAL EVOLUTION ALGORITHM K. Sureshkumar 1 and P. Vijayakumar 2 1 Department of Electrical and Electronics Engineering, Velammal

More information

Fault-tolerant Coverage in Dense Wireless Sensor Networks

Fault-tolerant Coverage in Dense Wireless Sensor Networks Fault-tolerant Coverage in Dense Wireless Sensor Networks Akshaye Dhawan and Magdalena Parks Department of Mathematics and Computer Science, Ursinus College, 610 E Main Street, Collegeville, PA, USA {adhawan,

More information

Zhan Chen and Israel Koren. University of Massachusetts, Amherst, MA 01003, USA. Abstract

Zhan Chen and Israel Koren. University of Massachusetts, Amherst, MA 01003, USA. Abstract Layer Assignment for Yield Enhancement Zhan Chen and Israel Koren Department of Electrical and Computer Engineering University of Massachusetts, Amherst, MA 0003, USA Abstract In this paper, two algorithms

More information

Trade-offs Between Mobility and Density for Coverage in Wireless Sensor Networks. Wei Wang, Vikram Srinivasan, Kee-Chaing Chua

Trade-offs Between Mobility and Density for Coverage in Wireless Sensor Networks. Wei Wang, Vikram Srinivasan, Kee-Chaing Chua Trade-offs Between Mobility and Density for Coverage in Wireless Sensor Networks Wei Wang, Vikram Srinivasan, Kee-Chaing Chua Coverage in sensor networks Sensors are often randomly scattered in the field

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

Performance Evaluation of MANET Using Quality of Service Metrics

Performance Evaluation of MANET Using Quality of Service Metrics Performance Evaluation of MANET Using Quality of Service Metrics C.Jinshong Hwang 1, Ashwani Kush 2, Ruchika,S.Tyagi 3 1 Department of Computer Science Texas State University, San Marcos Texas, USA 2,

More information

Layout Optimization for a Wireless Sensor Network Using a Multi-Objective Genetic Algorithm

Layout Optimization for a Wireless Sensor Network Using a Multi-Objective Genetic Algorithm Layout Optimization for a Wireless Sensor Network Using a Multi-Objective Genetic Algorithm Damien B. Jourdan, Olivier L. de Weck Dept. of Aeronautics and Astronautics, Massachusetts Institute of Technology

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

Solving Assembly Line Balancing Problem using Genetic Algorithm with Heuristics- Treated Initial Population

Solving Assembly Line Balancing Problem using Genetic Algorithm with Heuristics- Treated Initial Population Solving Assembly Line Balancing Problem using Genetic Algorithm with Heuristics- Treated Initial Population 1 Kuan Eng Chong, Mohamed K. Omar, and Nooh Abu Bakar Abstract Although genetic algorithm (GA)

More information

Energy-Efficient Duty Cycle Assignment for Receiver-Based Convergecast in Wireless Sensor Networks

Energy-Efficient Duty Cycle Assignment for Receiver-Based Convergecast in Wireless Sensor Networks Energy-Efficient Duty Cycle Assignment for Receiver-Based Convergecast in Wireless Sensor Networks Yuqun Zhang, Chen-Hsiang Feng, Ilker Demirkol, Wendi B. Heinzelman Department of Electrical and Computer

More information

EasyChair Preprint. A User-Centric Cluster Resource Allocation Scheme for Ultra-Dense Network

EasyChair Preprint. A User-Centric Cluster Resource Allocation Scheme for Ultra-Dense Network EasyChair Preprint 78 A User-Centric Cluster Resource Allocation Scheme for Ultra-Dense Network Yuzhou Liu and Wuwen Lai EasyChair preprints are intended for rapid dissemination of research results and

More information

Planning and Optimization of Broadband Power Line Communications Access Networks: Analysis, Modeling and Solution

Planning and Optimization of Broadband Power Line Communications Access Networks: Analysis, Modeling and Solution Technische Universität Dresden Chair for Telecommunications 1 ITG-Fachgruppe 5.2.1. Workshop Planning and Optimization of Broadband Power Line Communications Access Networks: Analysis, Modeling and Solution

More information

Available online at ScienceDirect. Procedia Computer Science 36 (2014 )

Available online at  ScienceDirect. Procedia Computer Science 36 (2014 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 36 (2014 ) 541 548 Complex Adaptive Systems, Publication 4 Cihan H. Dagli, Editor in Chief Conference Organized by Missouri

More information

A Communication Model for Inter-vehicle Communication Simulation Systems Based on Properties of Urban Areas

A Communication Model for Inter-vehicle Communication Simulation Systems Based on Properties of Urban Areas IJCSNS International Journal of Computer Science and Network Security, VO.6 No.10, October 2006 3 A Communication Model for Inter-vehicle Communication Simulation Systems Based on Properties of Urban Areas

More information

Distributed Power Control in Cellular and Wireless Networks - A Comparative Study

Distributed Power Control in Cellular and Wireless Networks - A Comparative Study Distributed Power Control in Cellular and Wireless Networks - A Comparative Study Vijay Raman, ECE, UIUC 1 Why power control? Interference in communication systems restrains system capacity In cellular

More information

Adaptive Hybrid Channel Assignment in Wireless Mobile Network via Genetic Algorithm

Adaptive Hybrid Channel Assignment in Wireless Mobile Network via Genetic Algorithm Adaptive Hybrid Channel Assignment in Wireless Mobile Network via Genetic Algorithm Y.S. Chia Z.W. Siew A. Kiring S.S. Yang K.T.K. Teo Modelling, Simulation and Computing Laboratory School of Engineering

More information

Integrated Detection and Tracking in Multistatic Sonar

Integrated Detection and Tracking in Multistatic Sonar Stefano Coraluppi Reconnaissance, Surveillance, and Networks Department NATO Undersea Research Centre Viale San Bartolomeo 400 19138 La Spezia ITALY coraluppi@nurc.nato.int ABSTRACT An ongoing research

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

Q-Coverage Maximum Connected Set Cover (QC-MCSC) Heuristic for Connected Target Problem in Wireless Sensor Network

Q-Coverage Maximum Connected Set Cover (QC-MCSC) Heuristic for Connected Target Problem in Wireless Sensor Network Global Journal of Computer Science and Technology: E Network, Web & Security Volume 15 Issue 6 Version 1.0 Year 2015 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global Journals

More information

Ad Hoc Networks 8 (2010) Contents lists available at ScienceDirect. Ad Hoc Networks. journal homepage:

Ad Hoc Networks 8 (2010) Contents lists available at ScienceDirect. Ad Hoc Networks. journal homepage: Ad Hoc Networks 8 (2010) 545 563 Contents lists available at ScienceDirect Ad Hoc Networks journal homepage: www.elsevier.com/locate/adhoc Routing, scheduling and channel assignment in Wireless Mesh Networks:

More information

Available online at ScienceDirect. Procedia Technology 17 (2014 ) 50 57

Available online at   ScienceDirect. Procedia Technology 17 (2014 ) 50 57 Available online at www.sciencedirect.com ScienceDirect Procedia Technology 17 (2014 ) 50 57 Conference on Electronics, Telecommunications and Computers CETC 2013 Optimizing Propagation Models on Railway

More information

Mobile Base Stations Placement and Energy Aware Routing in Wireless Sensor Networks

Mobile Base Stations Placement and Energy Aware Routing in Wireless Sensor Networks Mobile Base Stations Placement and Energy Aware Routing in Wireless Sensor Networks A. P. Azad and A. Chockalingam Department of ECE, Indian Institute of Science, Bangalore 5612, India Abstract Increasing

More information

This list supersedes the one published in the November 2002 issue of CR.

This list supersedes the one published in the November 2002 issue of CR. PERIODICALS RECEIVED This is the current list of periodicals received for review in Reviews. International standard serial numbers (ISSNs) are provided to facilitate obtaining copies of articles or subscriptions.

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

Neural Network based Multi-Dimensional Feature Forecasting for Bad Data Detection and Feature Restoration in Power Systems

Neural Network based Multi-Dimensional Feature Forecasting for Bad Data Detection and Feature Restoration in Power Systems Neural Network based Multi-Dimensional Feature Forecasting for Bad Data Detection and Feature Restoration in Power Systems S. P. Teeuwsen, Student Member, IEEE, I. Erlich, Member, IEEE, Abstract--This

More information

Energy Management of Dense Wireless Heterogeneous Networks Over Slow Timescales

Energy Management of Dense Wireless Heterogeneous Networks Over Slow Timescales Energy Management of Dense Wireless Heterogeneous Networks Over Slow Timescales Binnan Zhuang, Dongning Guo, and Michael L. Honig Department of Electrical Engineering and Computer Science Northwestern

More information

WLAN Coverage Planning: Optimization Models and Algorithms

WLAN Coverage Planning: Optimization Models and Algorithms 1 WLAN Coverage Planning: Optimization Models and Algorithms E. Amaldi, A. Capone, M. Cesana, F. Malucelli, F. Palazzo Politecnico di Milano - DEI Address : Piazza L. da Vinci 32, 20133, Milano,Italy Phone:

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

ARTIFICIAL INTELLIGENCE IN POWER SYSTEMS

ARTIFICIAL INTELLIGENCE IN POWER SYSTEMS ARTIFICIAL INTELLIGENCE IN POWER SYSTEMS Prof.Somashekara Reddy 1, Kusuma S 2 1 Department of MCA, NHCE Bangalore, India 2 Kusuma S, Department of MCA, NHCE Bangalore, India Abstract: Artificial Intelligence

More information

Cellular Mobile Radio Networks Design

Cellular Mobile Radio Networks Design Cellular Mobile Radio Networks Design Yu-Cheng Chang Ph. D. Candidate, Department of Technology Management Chung Hua University, CHU Hsinchu, Taiwan d09603024@chu.edu.tw Chi-Yuan Chang CMC Consulting,

More information

Converting Motion between Different Types of Humanoid Robots Using Genetic Algorithms

Converting Motion between Different Types of Humanoid Robots Using Genetic Algorithms Converting Motion between Different Types of Humanoid Robots Using Genetic Algorithms Mari Nishiyama and Hitoshi Iba Abstract The imitation between different types of robots remains an unsolved task for

More information

Tracking Evacuation of Pedestrians during Disasters

Tracking Evacuation of Pedestrians during Disasters Tracking Evacuation of Pedestrians during Disasters Gürkan Solmaz and Damla Turgut Department of Electrical Engineering and Computer Science University of Central Florida Email: {gsolmaz,turgut}@eecs.ucf.edu

More information

2006 CCRTS THE STATE OF THE ART AND THE STATE OF THE PRACTICE. Network on Target: Remotely Configured Adaptive Tactical Networks. C2 Experimentation

2006 CCRTS THE STATE OF THE ART AND THE STATE OF THE PRACTICE. Network on Target: Remotely Configured Adaptive Tactical Networks. C2 Experimentation 2006 CCRTS THE STATE OF THE ART AND THE STATE OF THE PRACTICE Network on Target: Remotely Configured Adaptive Tactical Networks C2 Experimentation Alex Bordetsky Eugene Bourakov Center for Network Innovation

More information

Fast Placement Optimization of Power Supply Pads

Fast Placement Optimization of Power Supply Pads Fast Placement Optimization of Power Supply Pads Yu Zhong Martin D. F. Wong Dept. of Electrical and Computer Engineering Dept. of Electrical and Computer Engineering Univ. of Illinois at Urbana-Champaign

More information

AN IMPROVED NEURAL NETWORK-BASED DECODER SCHEME FOR SYSTEMATIC CONVOLUTIONAL CODE. A Thesis by. Andrew J. Zerngast

AN IMPROVED NEURAL NETWORK-BASED DECODER SCHEME FOR SYSTEMATIC CONVOLUTIONAL CODE. A Thesis by. Andrew J. Zerngast AN IMPROVED NEURAL NETWORK-BASED DECODER SCHEME FOR SYSTEMATIC CONVOLUTIONAL CODE A Thesis by Andrew J. Zerngast Bachelor of Science, Wichita State University, 2008 Submitted to the Department of Electrical

More information

Optimal Multicast Routing in Ad Hoc Networks

Optimal Multicast Routing in Ad Hoc Networks Mat-2.108 Independent esearch Projects in Applied Mathematics Optimal Multicast outing in Ad Hoc Networks Juha Leino 47032J Juha.Leino@hut.fi 1st December 2002 Contents 1 Introduction 2 2 Optimal Multicasting

More information

Energy Consumption Reduction of Clustering Communication Based on Number of Neighbors for Wireless Sensor Networks

Energy Consumption Reduction of Clustering Communication Based on Number of Neighbors for Wireless Sensor Networks Energy Consumption Reduction of Clustering Communication Based on Number of Neighbors for Wireless Sensor Networks Noritaka Shigei, Hiromi Miyajima, and Hiroki Morishita Abstract The wireless sensor network

More information

Evolutionary Optimization for the Channel Assignment Problem in Wireless Mobile Network

Evolutionary Optimization for the Channel Assignment Problem in Wireless Mobile Network (649 -- 917) Evolutionary Optimization for the Channel Assignment Problem in Wireless Mobile Network Y.S. Chia, Z.W. Siew, S.S. Yang, H.T. Yew, K.T.K. Teo Modelling, Simulation and Computing Laboratory

More information

International Journal of Scientific & Engineering Research, Volume 7, Issue 2, February ISSN

International Journal of Scientific & Engineering Research, Volume 7, Issue 2, February ISSN International Journal of Scientific & Engineering Research, Volume 7, Issue 2, February-2016 181 A NOVEL RANGE FREE LOCALIZATION METHOD FOR MOBILE SENSOR NETWORKS Anju Thomas 1, Remya Ramachandran 2 1

More information

Scheduling. Radek Mařík. April 28, 2015 FEE CTU, K Radek Mařík Scheduling April 28, / 48

Scheduling. Radek Mařík. April 28, 2015 FEE CTU, K Radek Mařík Scheduling April 28, / 48 Scheduling Radek Mařík FEE CTU, K13132 April 28, 2015 Radek Mařík (marikr@fel.cvut.cz) Scheduling April 28, 2015 1 / 48 Outline 1 Introduction to Scheduling Methodology Overview 2 Classification of Scheduling

More information