Download presentation
Presentation is loading. Please wait.
Published byMagdalen Owens Modified over 9 years ago
1
A Node-Centric Load Balancing Algorithm for Wireless Sensor Networks Hui Dai, Richar Han Department of Computer Science University of Colorado at Boulder IEEE GLOBECOM Wireless Communications 2003
2
Outline Introduction LOAD BALANCING IN SENSOR NETWORKS Load Balancing Metric Algorithms Simulation and Performance Evaluation Conclusion
3
Introduction
4
Wireless sensor networks By spreading the workload across the sensor network, load balancing averages the energy consumption. Load balancing extends the expected lifespan of the whole sensor network by extending the time until the first node is out of energy. Load balancing is also useful for reducing congestion hot spots, thereby reducing wireless collisions.
5
Feature of this paper This paper focus on WSNs with an asymmetric architecture, i.e. a powerful base station collects data through a multi-hop routing framework of distributed wireless sensor nodes. In this paper, it also assumes the common case of static sensor networks in which the position of the sensor nodes are fixed. The algorithm of this paper presents a complete solution that forms the initial tree, and rebalances this tree using topological knowledge rather than random selection.
6
LOAD BALANCING IN SENSOR NETWORKS The Drawback of Shortest Path First Tree Topology
7
LOAD BALANCING IN SENSOR NETWORKS A node-centric load balancing strategy considers the cumulative load of data traffic from child nodes in a routing tree on their parent nodes. The load of child sensor nodes adds to the load of each up stream parent in the tree. Hence, the sensor nodes nearest the base station will be the most heavily loaded. The goal of node-centric load balancing is to evenly distribute packet traffic generated by sensor nodes across the different branches of the routing tree.
8
The Drawback of Shortest Path First The shortest path routing algorithm selecting the shortest path doesn't account for the effect of load aggregation on upstream links. A shortest path routing algorithm executed on a sensor grid rooted in a base station doesn't guarantee that the resulting shortest path tree is load balanced.
9
Unbalanced shortest path tree vs. Top-level Balanced tree
10
The Top Balanced, Hierarchy Balanced, and Fully Balanced tree topology level : the distance from the node to the base station. Fully Balanced tree is a in which the branches on the same level carry the same amount of load. Top-level Balanced tree is such that each branch at top level closest to the base station carries the same amount of load. Both Fully Balanced trees and Top-level Balanced trees are extreme cases of Hierarchy Balanced trees.
11
The Top Balanced, Hierarchy Balanced, and Fully Balanced tree topology (cont.)
12
Load Balancing Metric Chebyshev Sum Inequality Fairness Index
13
Chebyshev Sum Inequality for all a C N, b C N a = {a 1, a 2, a 3, …, a n }b = { b 1, b 2, b 3, …, b n } if a 1 ≧ a 2 ≧ a 3 ≧ … ≧ a n b 1 ≧ b 2 ≧ b 3 ≧ … ≧ b n then
14
Chebyshev Sum Inequality (cont.) Since let a = b = w, we can derive : or
16
Algorithms Basic Algorithm Adjustment Algorithm
17
Variables Definition T : the current tree B[i] :the array of branches B :the selected branch N[] :lists of the border nodes for each branch M :the set of unmarked nodes growth space : a measure of the freedom to grow the tree towards this node The growth space of a node is the sum of the number of unmarked neighbors of all the node ’ s unmarked neighbors minus common links.
18
Number of unmarked neighbors and growth spaces of each node The growth space of z equals 3 + 3 – 2 (common links) = 4
19
Basic Algorithm M ( Allnodes; while(M is not empty) do step 0: Select the lightest most restricted branch B = B[0] for each B[i] do if (Weight(B) 6= Weight(B[i])) /* select lightest branch */ B lighter (B[i],B); else /* if same load, select most restricted branch */ B minFreedom (B[i],B); ↓ ↓ ↓
20
Figure for explaining the Algorithm
21
Basic Algorithm (cont.) step 1: Select the heaviest border node with most growth space n0 = n0 N, N is B´s border node list for each ni N if Weight(n´) 6= Weight(ni) /* Select heaviest border node */ n0 heavier(n0, ni); else /* Select border node with max growth space */ n0 maxFreedom(n0, ni); step 2: graft node and update metrics T = T + {n0} N = N − {n0} M = M − {n0}; for each unmarked border node i of n0 N = N + {i}; done
22
The time complexity of this algorithm With appropriate data structures supported, the time complexity could be : O(nlog 4 n + nlog 3 n + n)= O(nlogn) Hence, the time complexity of this algorithm is better than Dijkstra algorithm.
23
Adjustment Algorithm Avr − the average number of the nodes on a brunch B − Heaviest Brunch that has maximum neighbors While (Not meet the stop criteria) do if Weight(B) is bigger than average δ = |B| − Avr; if there is node m that has load close to Push m to B0s unmarked neighbor else connect all leaf nodes to neighboring branches that can improve the balance factor if Weight(B) is smaller than average Pull the leave nodes from the neighbor B = the next connected unmarked neighbor
24
Example : 4 x 4 grid (0)
25
Example : 4 x 4 grid (1)
26
Example : 4 x 4 grid (2)
27
Example : 4 x 4 grid (3)
28
Example : 4 x 4 grid (4)
29
Example : 4 x 4 grid (5)
30
Example : 4 x 4 grid (6)
31
Example : 4 x 4 grid (7)
32
Example : 4 x 4 grid (8)
33
Example : 4 x 4 grid (9)
34
Example : 4 x 4 grid (10)
35
Example : 4 x 4 grid (11)
36
Simulation and Performance Evaluation
37
Average Performance Comparison
38
Worst Performance Comparison
39
Average Performance Comparison in uneven sensor network
40
Worst Performance Comparison in uneven sensor network
41
Performance Comparison between the Random adjustment and spiral adjustment
42
Conclusion Key contributions of this paper
43
First, it identify the importance of the node-centric approach. Second, it formulate a node-centric load-balancing problem that helps construct the routing and monitoring structures for an asymmetric sensor network. Third, it present the construction algorithms for load balancing.
44
The End Thanks for your listening !
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.