当前位置: 首页 > news >正文

基于 A* 搜索算法来优化无线传感器节点网络的平均电池寿命(Matlab代码实现)

    目录

💥1 概述

📚2 运行结果

🎉3 参考文献

👨‍💻4 Matlab代码

💥1 概述

A*(念做:A Star)算法是一种很常用的路径查找和图形遍历算法。它有较好的性能和准确度。本文使用 A* 搜索算法来优化无线传感器节点网络的平均电池寿命。​​

📚2 运行结果

主函数部分代码:

close all;
clear;
clc;
%-------------------------------
%Number of Nodes in the fieldn=200;
%n=input('Enter the number of nodes in the space : '); 
%Energy Model (all values in Joules)
%Initial Energy 
Eo=0.1;
%Eo=input('Enter the initial energy of sensor nJ : ');
%Field Dimensions - x and y maximum (in meters)
% xm=input('Enter x value for area plot : ');
% ym=input('Enter y value for area plot : ');  
xm=100;
ym=100;
​
%x and y Coordinates of the Sink
sink.x=1.5*xm;
sink.y=0.5*ym;
​
%Optimal Election Probability of a node
%to become cluster head
p=0.2;
​
%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=0.5;
%\alpha
a=1;
​
%maximum number of rounds
%rmax=input('enter the number of iterations you want to run : '); 
rmax=200;
%------------------
​
%Computation of do
do=sqrt(Efs/Emp);
​
%Creation of the random Sensor Network
figure(1);
hold off;
for i=1:1:nS(i).xd=rand(1,1)*xm;XR(i)=S(i).xd;S(i).yd=rand(1,1)*ym;YR(i)=S(i).yd;S(i).G=0;%initially there are no cluster heads only nodesS(i).type='N';temp_rnd0=i;%Random Election of Normal Nodesif (temp_rnd0>=m*n+1) S(i).E=Eo;S(i).ENERGY=0;plot(S(i).xd,S(i).yd,'o-r');hold on;end%Random Election of Advanced Nodesif (temp_rnd0<m*n+1)  S(i).E=Eo*(1+a);S(i).ENERGY=1;plot(S(i).xd,S(i).yd,'+');hold on;end
end
​
S(n+1).xd=sink.x;
S(n+1).yd=sink.y;
plot(S(n+1).xd,S(n+1).yd,'o', 'MarkerSize', 12, 'MarkerFaceColor', 'r');
figure(1);  
% figure(1)
%  plot(o1,o2,'^','LineWidth',1, 'MarkerEdgeColor','k', 'MarkerFaceColor','y', 'MarkerSize',12);
%    hold on
%First Iteration
%counter for CHs
countCHs=0;
%counter for CHs per round
rcountCHs=0;
cluster=1;
​
countCHs;
rcountCHs=rcountCHs+countCHs;
flag_first_dead=0;
​
for r=0:1:rmaxr;
​%Operation for epochif(mod(r, round(1/p) )==0)for i=1:1:nS(i).G=0;S(i).cl=0;endend

🎉3 参考文献

[1]梁艺凡,谭丽,冯挺.A~*进路搜索算法的研究与实现[J].铁道标准设计,2013,No.613(02):117-119+127.

部分理论引用网络文献,若有侵权联系博主删除。

http://www.lryc.cn/news/63615.html

相关文章:

  • 三款自研AI应用引领未来,重塑行业新风尚
  • Kafka的命令行操作
  • 递归,回溯,分治(C++刷题笔记)
  • CentOS 7.6更改yum源
  • 三、进度管理
  • 基于LEACH和HEED的WSN路由协议研究与改进(Matlab代码实现)
  • ChatGPT镜像站收集【Free ChatGPT】(一)
  • PHP面试宝典之Mysql数据库基础篇
  • 4月记录总结
  • 每日学术速递4.29
  • 整数在内存中的存储:原码、反码、补码 大小端字节序
  • 【方法】 如何批量将RAR或其他压缩格式转换成ZIP?
  • 《道德经》
  • ABI Research产业研究:ZiFiSense如何革新物流货物及运输包装追踪
  • 家乡特色推荐系统~java~mysql
  • 二维码在设备点维一体化管理中的应用
  • 基于simulink使用混合波束成形对射频毫米波发射器进行建模
  • 面试官:v-model原理?
  • 兰林:科技赋能健康产业 助力乡村振兴建设
  • 小红书流量密码是什么,怎么掌握并运用
  • FL Studio 2023中文高级版水果编曲软件下载
  • 浅析如何写出高质量代码
  • 手把手教你 ,带你彻底掌握八大排序算法【数据结构】
  • 第十一章 Transform组件(上)
  • aac音频怎么转mp3,这几个方法很简便
  • 分屏视图上线,详情数据秒切换
  • 怎么释放C盘空间?清理C盘空间的4大方法分享!
  • 【文件描述符|重定向|缓冲区】
  • 软件测试—进阶篇
  • 设计模式:创建型设计模式、结构型设计模式