奥村(Okumura)模型 matlab仿真

无线电传播预测是无线网络规划的基础之一。因此,传播预测模型尽可能准确是至关重要的。传播路径损耗是通信系统链路预算分析和设计的重要内容。路径损耗的计算通常称为预测。精确的预测只有在更简单的情况下才有可能,例如自由空间传播或平面地球模型。对于实际情况,采用各种近似方法计算路径损耗。

这里我们将讨论经验路径损耗模型,然后主要关注用于信号预测的Okumura模型。Okumura模型是城市地区应用最广泛的经验传播预测模型之一。它是由Y. Okumura的著作开发的,是基于日本某些城市和郊区广泛测量的结果。我们将考虑导致传播损耗的参数,如自由空间传播损耗、基站天线高度因子、移动天线高度增益因子、基本中值衰减和环境增益。

为了验证实际的实现和工作,可以通过编写一些代码在MATLAB上创建一些演示视图,查看接收功率与距离的实际关系图,发射机高度与传播路径损耗的关系图。

% This program will plot the relationship Between Received Power with respect to Distance 
clc;
clear ;

% Transmitting  Antenna Height 
Hte=30:1:100;  
% Input of Parameters 
Hre=input('Enter the receiver antenna height 3m<hre<10m : ');
f=input('Enter the frequency 150Mhz<f<1920Mhz : ');
Pt=input('Enter the Transmitter power watts :  ');
Pt1=10*log10 (Pt);
fprintf('The Transmitted power in db is :%i\n',Pt1)

% Basic Calculation
x1=((4*pi)^2);
%lamda Calculation
c=3*10^8;
lamda=(c)/(f*10^6);  
lamda1=lamda*lamda;

% Median Attenuation Assumtion Amu (f,d) in dB
Amu = 35;    
%Gain Due to Type of Terrain in dB
Garea = 9;    
%Base Antenna Height Gain Factor in dB
Ghte = 20*log(Hte/200);
% Mobile a Antenna Height Gain Factor in dB
if(Hre>3)
Ghre = 20*log(Hre/3);    
else
Ghre = 10*log(Hre/3);
end
% Continue .......
% Free Space Loss
d=1:1:71;
d1=d.*d;

Lf = 10*log ((d1.*x1)/(lamda1));
% 50 th  Percentile (Median Value of Propogation Path Loss 
for n=1:1:d 
     L50 = Lf+Amu-Ghte-Ghre-Garea;
     Pr=(Pt1-L50);
%      Pr1=(Pr./10);
%      Pr2=10.^Pr1;
    
end
% Plotting of Graphes 
fprintf('\n######################################################################################');
fprintf('\nCaclulating Received Power Vs Distance Graph for Receiver antena Height of:%i m\n',Hre);
fprintf('Frequency:%i Mhz ,Transmitter Power:%i Watt (%i dB )\n',f,Pt,Pt1);
fprintf('#########################################################################################\n');
plot(d,Pr,'LineWidth',1.5);
title('Okumura Model Analysis');
xlabel('Distance between Transmitter and Receiver');
ylabel('Received Power in dB1');
grid on;

 

  • 0
    点赞
  • 21
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Mr Leach

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值