91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 10KB
    文件類型: .m
    金幣: 1
    下載: 1 次
    發(fā)布日期: 2021-06-11
  • 語言: Matlab
  • 標(biāo)簽: leach??改進算法??wsn??

資源簡介

leach 改進算法 wsn matlab編程 無線傳感器網(wǎng)絡(luò),分簇算法

資源截圖

代碼片段和文件信息

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%??????????????????????????????????????????????????????????????????????%
%?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;%數(shù)據(jù)包長度
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最大循環(huán)次數(shù)
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;%坐標(biāo)
????XR(i)=S(

評論

共有 條評論