0% found this document useful (0 votes)
16 views2 pages

Exp 1

The document outlines an experiment using the Hata-Okumura model to calculate path loss and received signal levels for a Base Transceiver Station (BTS) in an urban environment. It includes parameters such as antenna heights, terrain elevation, and transmitted power, along with calculations for path loss and signal levels over varying distances. The results are visualized through two plots displaying path loss and received signal levels against distance.

Uploaded by

virendraaa07
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views2 pages

Exp 1

The document outlines an experiment using the Hata-Okumura model to calculate path loss and received signal levels for a Base Transceiver Station (BTS) in an urban environment. It includes parameters such as antenna heights, terrain elevation, and transmitted power, along with calculations for path loss and signal levels over varying distances. The results are visualized through two plots displaying path loss and received signal levels against distance.

Uploaded by

virendraaa07
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Experiment no.

:01

Code:
clc;

clear all;

Hbts= 40; %Height measured from the base of the BTS tower to the radiation centerline

Tbts = 350; %Terrain elevation at the location of the BTS

Htav= 300; %Height of the average terrain (from 3 Km to 15 km distance from the BTS)

Hm=2; %Height of the mobile antenna in meters

f=6000; %100:100:3000; %Range of frequencies in MHz

d=0.5:0.5:15; %Range of Tx-Rx separation distances in Kilometers

Pt = 0.020; %Power transmitted by the BTS antenna in Watts

Gt= 10; %BTS antenna gain in dBi

Hb=Hbts+Tbts-Htav; %Effective Height of the BTS antenna in meters

%Cell array to store various model names

display('Hata-Okumura Model');

aHm=3.2*(log10(11.75*Hm))^2-4.97;

A = 69.55 + 26.16*log10(f) - 13.82*log10(Hb)-aHm;

B = 44.9 - 6.55*log10(Hb);

C=0;

PL=A+B*log10(d);

subplot(2,1,1)

plot(d,PL,'r','LineWidth',2);

title("Hata-Okumura Path Loss Model for : ' 'Big City (Urban model)", 'fontsize',18);

xlabel('Distance in Kilometers','fontsize',18);
ylabel('Path Loss (dB)','fontsize',18);

%Compute Received Signal Level

Pr = 10*log10(Pt*1000)+Gt-PL

subplot(2,1,2)

plot(d,Pr,'r','LineWidth',2);

title("Hata-Okumura Model for : ' 'Big City (Urban model", 'fontsize',18);

xlabel('Distance - Kilometers','fontsize',18);

ylabel('Received Signal Level (dBm)','fontsize',18);

Output:

You might also like