Close-In path loss model
12 次查看(过去 30 天)
显示 更早的评论
Hi team,
I am trying to replicate some results from the research paper "Multi-Frequency Multi-Scenario Millimeter Wave MIMO Channel Measurements and Modeling for "B5G Wireless Communication Systems".
I am trying to model the Close-In path loss model from the paper, and trying to creating the following plot.
for the following parameters;
I have reproduced the Free space path loss model, but I am not able to reproduce the Close-In path loss model. I would really appreciate any kind of input on this topic.
function PL = My_FreeSpace_PL(freq, dist)
c = physconst('lightspeed');
PL = fspl(dist,c/freq);
end
function PL = My_CI_PL(freq, dist,n,sigma)
c = physconst('lightspeed');
PL = fspl(dist,c/freq) + 10*n*log10(dist) + sigma*randn(size(dist));
end
%% Main Code
clc;
clear all;
close all;
%% Free Space path loss model
c = physconst('lightspeed');
R0 = 1:2:1000;
freq = 28e9;
% apathloss = fspl(R0,c/freq);
for k = 1:length(R0)
apathloss(k) = My_FreeSpace_PL(freq, R0(k));
end
figure(2) % Replicating the research paper FSPL
semilogx(R0,apathloss);
grid on;
% ylim([90 200]);
legend('Frequency: 28 GHz');
xlabel('Tx-Rx distance (m)');
ylabel('Path Loss (dB)');
title('Free Space Path Loss');
%% CI path loss model
% 28 GHz band
n1 = 2.637;
sigma1 = 5.47;
f1 = 28e3;
for k = 1:length(R0)
CI_PL1(k) = My_CI_PL(f1,R0(k),n1,sigma1);
end
figure(2)
semilogx(R0,CI_PL1)
grid on;
My Output:
0 个评论
采纳的回答
Rahul Gulia
2022-5-16
2 个评论
mer potter
2022-5-24
Hello. Have you solved your problem with the close in path loss model? I have a similar assignment in my graduate thesis and it would be awesome if you could send me your code.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Propagation and Channel Models 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!