资源简介
leach 改进算法 wsn
matlab编程 无线传感器网络,分簇算法
代码片段和文件信息
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% SEP: A Stable Election Protocol for clustered %
% heterogeneous wireless sensor networks %
% %
% (c) Georgios Smaragdakis %
% WING group Computer Science Department Boston University %
% %
% You can find full documentation and related information at: %
% http://csr.bu.edu/sep %
% %
% To report your comment or any bug please send e-mail to: %
% gsmaragd@cs.bu.edu %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% This is the LEACH [1] code we have used. %
% The same code can be used for FAIR if m=1 %
% %
% [1] W.R.Heinzelman A.P.Chandrakasan and H.Balakrishnan %
% “An application-specific protocol architecture for wireless %
% microsensor networks“ %
% IEEE Transactions on Wireless Communications 1(4):660-6702002 %
% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
clear;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% PARAMETERS %%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Field Dimensions - x and y maximum (in meters)
xm = 200;
ym = 200;
%x and y Coordinates of the Sink
%sink.x =0.5 * xm;
%sink.y = ym + 50;
sink.x=100;
sink.y=100;
%Number of Nodes in the field
n = 200
%Optimal Election Probability of a node
%to become cluster head
p=0.05;
packetLength = 4000;%数据包长度
ctrPacketLength = 100;%控制包长度
%Energy Model (all values in Joules)
%Initial Energy
Eo = 0.5;
%Eelec=Etx=Erx
ETX=50*0.000000001;
ERX=50*0.000000001;
%Transmit Amplifier types
Efs=10*0.000000000001;
Emp=0.0013*0.000000000001;
%Data Aggregation Energy
EDA=5*0.000000001;
%Values for Hetereogeneity
%Percentage of nodes than are advanced
m=1;
%\alpha
a=1;
INFINITY = 999999999999999;
%maximum number of rounds最大循环次数
rmax=2000
%%%%%%%%%%%%%%%%%%%%%%%%% END OF PARAMETERS %%%%%%%%%%%%%%%%%%%%%%%%
%Computation of do
do=sqrt(Efs/Emp);
%Creation of the random Sensor Network
figure(1);
for i=1:1:n
S(i).xd=rand(11)*xm;%坐标
XR(i)=S(
- 上一篇:超分辨率图像重建matlab源码
- 下一篇:圆柱绕流 附加质量 matlab计算程序
相关资源
- 基于BP神经网络的无线传感器定位算法
- 7个经典传感器网络WSN节点定位算法的
- 脉冲噪声去噪的改进算法
- 分水岭分割算法matlab实现
- LEACH多跳传输协议matlab实现
- 基于MATLAB仿真的LEACH协议代码
- 基本蚁群聚类算法及其改进算法带M
- BP神经网络的改进算法研究-MATLAB7_0中
- 经典的Leach算法在matlab中的实现
- leach 关于节点剩余能量的性能仿真
- DEEC VS LEACH比较
- leach经典算法matlab代码
- WSN仿真-MATLAB基于COMPOW协议下的网络连
- cv水平集及改进算法MATLAB程序
- 最新matlab仿真leach协议和另一种改进算
- 无线传感器网络leach协议matlab仿真
- PSO版leach
- 无线传感器网络DVHOP定位算法
- LEACH分簇算法
- RSSI定位 MATLAB
- HEED、LEACH以及一种基于地理位置的非
- 无线传感网仿真代码
- leach分簇算法仿真基于matlab
- LEACH算法相关代码
- 无线传感器网络的拓扑结构下的无线
- 无线传感器网络中LEACH路由协议的MA
- WSN DV-Hop定位的Matlab仿真代码
- pegasis+leachvsdeec
- 无线传感器网络泛洪算法
- leach协议源代码matlab
评论
共有 条评论