Lab Worksheet 2 - Wireless and Mobile Communication - 013601
Lab Worksheet 2 - Wireless and Mobile Communication - 013601
Prepared By:
Roll No:
Pre Lab Task:
The Okumura model is an empirical propagation model developed by Yoshihisa Okumura in the
1960s, primarily for use in urban areas of Japan. It is used to estimate the path loss for mobile
radio systems, specifically in the frequency range of 150 MHz to 1920 MHz, although it can be
extended up to 3000 MHz. The model is based on extensive field measurements and is suitable
for both urban and suburban environments. Key features of the Okumura model include:
L=L0+Af(f)−G(ht)−G(hr)−GA(d)+CL
Where:
Path loss models are used to estimate the loss of signal strength as it propagates through space.
Here are some commonly known path loss models:
This model considers both the direct path and the ground-reflected path.
It is more accurate for longer distances and low antenna heights.
3. Hata Model:
An empirical model derived from the Okumura model, suitable for urban,
suburban, and rural areas.
It simplifies the Okumura model equations for practical use.
L=L0+10nlog10(d/d0)
Where L0 is the path loss at a reference distance d0d, and n is the path loss
exponent.
6. Indoor Models:
Models like the Log-Distance Path Loss Model are adapted for indoor
environments.
They account for factors such as walls, floors, and other obstacles.
The Hata model is an empirical model developed by Masaharu Hata in 1980. It is based on the
Okumura model and provides a more simplified method to estimate path loss in urban, suburban,
and rural environments. The model is applicable in the frequency range of 150 MHz to 1500
MHz and is particularly useful for mobile communication systems.
Urban Areas:
L=69.55+26.16log10(f)−13.82log10(ht)−a(hr)+(44.9−6.55log10(ht))log10(d)
Where:
For suburban and rural areas, adjustments are made to the urban path loss formula:
Lsuburban=Lurban− 2(log10(f/28))2−5.4
Lopen=Lurban−4.78(log10(f))2+18.33log10(f)−40.94
Path loss is the reduction in power density of an electromagnetic wave as it propagates through
space. It is a critical factor in wireless communication systems as it affects the strength and
quality of the received signal. Path loss can result from several factors, including:
Free-Space Loss: The natural spreading of the wavefront as the distance increases.
Reflection: Bouncing off surfaces like buildings, ground, and water bodies.
Diffraction: Bending around obstacles.
Scattering: Deviation due to small objects and irregularities in the medium.
Absorption: Loss of signal energy due to interaction with the medium, such as
atmospheric gases, rain, or foliage.
Path loss is usually expressed in decibels (dB) and can be calculated using various models
depending on the environment and application. Understanding and estimating path loss is
essential for designing efficient and reliable wireless communication systems.
Lab Work :
Now we will write below command into Live editor code window :
% Inputs:
% f - frequency in MHz
% d - distance in kilometers
% env_type - environment type ('urban', 'suburban', 'open')
end
end
if hr < 1 || hr > 10
end
if d < 1 || d > 20
end
if f > 400
else
end
L_urban = 69.55 + 26.16 * log10(f) - 13.82 * log10(ht) - a_hr + (44.9 - 6.55 * log10(ht)) * log10(d);
switch lower(env_type)
case 'urban'
L = L_urban;
case 'suburban'
case 'open'
otherwise
end
end
% Example usage:
% Test cases
f = 900; % MHz
ht = 50; % meters
hr = 5; % meters
d = 10; % kilometers
% Urban environment
% Suburban environment
%%
Explanation
1. Function Definition: The hata_okumura function calculates the median path loss using the Hata-
Okumura model.
2. Input Validation: The function checks if the input parameters are within the valid ranges.
3. Urban Correction Factor: It calculates the correction factor for urban environments.
4. Urban Path Loss Calculation: It calculates the path loss for urban areas.
5. Environment Adjustment: It adjusts the path loss based on the environment type (urban,
suburban, or open).
This MATLAB implementation of the Hata-Okumura model allows for the calculation of median path loss
for different outdoor environments. By testing with various inputs, we can verify the function's accuracy
and reliability. The results provide insights into how environmental factors influence signal propagation,
which is crucial for designing and optimizing wireless communication systems.
The model shows higher path loss in urban environments due to obstacles and reflections, while
suburban and open areas have comparatively lower path loss, emphasizing the importance of terrain
and surroundings in communication planning.