Wireless - Communication For A Div
Wireless - Communication For A Div
DEPARTMENT
Wireless Communication
(3171004)
Gandhinagar, Gujarat
Wireless Communication
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
L.D. COLLEGE OF ENGINEERING
CERTIFICATE
Date of Submission:
Signature:
Wireless Communication
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Index
Sr.No. Title Date Page Sign
Wireless Communication
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Experiment: 1
Aim: To study about GSM system architecture and GSM handset.
GSM FREQUENCIES
The GSM system is a frequency and time division system each physical channel is characterized by
a carrier frequency & a time slot number. GSM system frequencies a includes two bands at 900
MHz and 1800MHz commonly referred as GSM-900 and DCS1800. For the primary band in GSM-
900 system,124 radio carriers have been defined and assigned in two sub-bands of 25 MHz each in
the 890-915 MHz and 935-960MHz ranges, with channel width of 200 kHz.
The GSM system comprises of (refer Fig- 1) mobile station (MS), base transceiver station (BTS).
base station controller (BSC). mobile switching center (MSC) and a set of registers (databases) to
assist in mobility management & security functions. All signaling between MSC and various
registers as well as between MSCs takes place using Signaling System 7 (SS7) network.
Mobile Station (MS): GSM mobile station is nothing but your handset or subscriber unit. At the
time of manufacturing a handset, an international mobile equipment identity (IMEI) is
programmed into the terminal. A subscriber identity module (SIM) is required to activate and
operate GSM terminal. The SIM may be a removable unit that can be inserted by the user. Any
GSM terminal capable of receiving a detachable SIM card can become the user's MS upon plugging
into the SIM card.
Wireless Communication 1
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Basc_station_system (BSS); The base station system comprises a base station controller (BSC) and
one or more subtending base transceiver stations (BTS).The BSS is responsible for all functions
related to the radio resource management.
Mobile switching center (MSC): It's a local ISDN switch with additional capabilities to support
mobility management functions like location update, terminal registration, and handoff. MSC
performs the following major functions:
Call setup,
Billing information
Echo cancellation
Registration etc.
Figure 2: GSMNetworkarchitecture
Home location register (HLR): It is a centralized database that has the permanent data about the
mobile subscribers in a large service area
Visiting location register_(VLR): It represents a temporary data store, and generally there is one
VLR per MSC. This register contains information about mobile subscribers who are currently in the
service area & which features are activated locally.
Wireless Communication 2
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Authentication center (AC): Generally associated with HLR, contains authentication parameters
which are used in initial location registration, location updates etc.it uses authentication & cipher
key generation algorithm A3 & A8 respectively.
GSM supports a range of basic and supplementary services like bearer services, tele-services and
supplementary services. The common ISDN like supplementary services
Call forwarding
Call barring
Wireless Communication 3
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Call waiting
Call hold
Call forwarding & barring are defined in the original GSM specification (phase 1). GSM data
services consist of circuit-switched and packet-switched data. Circuit switched data can be to an
analog modem, to an ISDN connection, or to a fax machine. Packet switched data connects to a
packet network.
The GSM GPRS extends the packet capabilities of GSM to higher data rates and longer messages.
The service supports sending point to point and point to multi-point messages. Two nodes are added
to the GSM network to support GPRS.
GSM- The Wireless Evolution: The Wireless Evolution is achieved through the GSM family of
wireless technology platforms - today's GSM, GPRS, EDGE & 3GSM. GSM is a living. evolving
standard - growing and adapting to meet changing customer needs. It is the basis of a powerful
family of platforms for the future - providing a direct-link into next generation solutions including
GPRS (General Packet Radio Services) EDGE (Enhanced Data for GSM Evolution) and 3GSM.
Conclusion:-
Wireless Communication 4
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Experiment: 2
Aim: Calculate path loss in free space.
Theory
The free space path loss, also known as FSPL is the loss in signal strength that occurs when an
electromagnetic wave travels over a line-of-sight path in free space. In these circumstances there are
no obstacles that might cause the signal to be reflected refracted, or that might cause additional
attenuation.
The free space path loss calculations only look at the loss of the path itself and do not contain any
factors relating to the transmitter power, antenna gains or the receiver sensitivity levels.
To understand the reasons for the free space path loss, it is possible to imagine a signal spreading out
from the transmitter. It will move away from the source spreading out in the form of a sphere. As it
does so, the surface area of the sphere increases. As this will follow the law of the conservation of
energy, as the surface area of the sphere increases, so the intensity of the signal must decrease.
As a result of this it is found that the signal decreases in a way that is inversely proportional to the
square of the distance from the source of the radio signal.
The free space path loss formula or free space path loss equation is quite simple to use. Not only is
the path loss proportional to the square of the distance between the transmitter and receiver, but the
signal level is also proportional to the square of the frequency in use.
The free space path loss formula is applicable to situations where only the electromagnetic wave is
present, i.e, for far field situations. It does not hold true for near field situations
Wireless Communication 5
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Most RF comparisons and measurements are performed in decibels. This gives an easy and
consistent method to compare the signal levels present at various points. Accordingly, it is very
convenient to the express the free space path loss formula, FSPL, in terms of decibels.
Where:
Procedure:
1. Use the formula: FSPL (dB) = 20 10g10 (d) + 20 1og10 (1) + 32.44
2. Determine the distance (d) between the transmitter and receiver in meters
4. Utilize the speed of light (c) at approximately 3 x 10^8 meters per second
Program:
clc;
close all;
clear all;
f=input('enter the frequency in Mhz: ');
L=300/f; disp(thus the wavelength is: ');
L
d=input('enter the distance in km:');
1s=32.44+20* log10(d)+20*log10(f);
disp(sprintf(%s %d %s','the path loss is:",ls,'db');
Output:
L=150
Wireless Communication 6
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
enter the distance in km: 10
Conclusion:
Wireless Communication 7
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Experiment: 3
Aim: Perform Quadrature Amplitude Modulation and Demodulation in MATLAB.
Theory:
Quadrature Amplitude Modulation (QAM) is a modulation scheme that simultaneously varies the
amplitude and phase of a carrier signal to transmit digital data. In short:
Modulation (QAM):
- QAM represents digital information as points in a complex plane, where the amplitude and phase
of the carrier signal are adjusted to create a unique constellation point for each symbol.
- QAM can support various symbol constellations (e.g., 16-QAM, 64-QAM) with higher-order
constellations allowing for more bits to be transmitted per symbol.
- It's used in modern communication systems like Wi-Fi and cable television to achieve high data
rates and spectral efficiency.
Demodulation:
- Demodulation is the process of converting the received QAM signal back into digital data - The
received signal is compared to the points in the constellation, and the closest point is selected ta
decode the transmitted bits.
- Demodulation is susceptible to noise, and error correction techniques are often used to improve
reliability.
In essence, QAM allows for the efficient transmission of digital information over communication
channels by cleverly manipulating both the amplitude and phase of the carrier signal.
Matlab code:
Wireless Communication 8
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
snr = 10^(snr_db/10);
% QAM Demodulation
Output:
Conclusion:
Wireless Communication 9
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Experiment: 4
Aim: Perform AWGN channel modeling.
Theory:
Channel Modeling :
A channel model is a mathematical representation of the effects of a communication channel
through which wireless signals are propagated. The channel model can represent the power loss
incurred by the signal as it travels through the wireless medium. In a more general case, the channel
model is the impulse response of the channel medium in the time domain or its Fourier transform in
the frequency domain. The channel impulse response of a wireless communication system typically
varies randomly over time.
By using channel models with your wireless system design in MATLABR and Simulink R you can
optimize link performance, perform system architecture trade-offs, and provide a realistic
assessment of the overall system performance.
1. Path loss
2. Purely stochastic
3. Spatial
4. Ray tracing
AWGN Channel:
An AWGN channel adds white Gaussian noise to the signal that passes through it.
WGN is a noise that affects the transmitted signal when it passes through the channel. It contains a
uniform continuous frequency spectrum over a particular frequency band,
Wireless Communication 10
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
8 5 0.4545 5 11
16 5 0.5455 6 11
32 5 0.9091 10 11
8 10 0.0000 0 11
16 10 0.3636 5 11
32 10 0.5455 6 11
Conclusion:
Wireless Communication 11
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Experiment: 5
Aim: Perform Rayleigh Channel modeling.
Theory:
Fading Channel :
In wireless communications, fading is deviation of the attenuation affecting a signal over certain
propagation media. Fading may vary with time, geographical position or radio frequency and is
often modeled as a random process. It is used to describe the rapid fluctuations of the amplitudes,
phase or multi-path delays of a radio signal over a short period of time or travel distance.
Fading is caused by interference between two or more versions of transmitted signal which arrive at
the receiver at slightly different times. it results in a such output signal which may largely vary in
amplitude and phase depending on the distribution of the intensity. relative propagation of the waves
and the band width of the transmitted signal
Rayleigh Channel-
When no LOS path exists in between transmitter and receiver, but only have indirect path than the
resultant signal received at the receiver will be the sum of all the reflected and scattered waves.
Wireless Communication 12
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Dopler
M frequency shift BER No of Error Total No of Bits
(Hz)
8 0.001 1 11 11
16 0.001 1 11 11
32 0.001 1 11 11
8 0.1 0.9091 10 11
16 0.1 0.9091 10 11
32 0.1 0.9091 10 11
Conclusion:
Wireless Communication 13
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Experiment: 6
Aim: Perform Rician channel modeling.
Theory:
Fading is caused by interference between two or more versions of transmitted arrive at the receiver
at slightly different times, it results in a such output signal which may largely vary in amplitude and
phase depending on the distribution of the intensity, relative propagation of the waves and the
bandwidth of the transmitted signal.
Rician Channel: It occurs when there is a LOS as well as the non-LOS path in between the
transmitter and receiver, i.e., the received signal comprises on both the direct and scattered multipath
waves.
Simulation M = 16, k = 3:
Wireless Communication 14
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
8 3 0.4545 5 11
16 3 0.6364 7 11
32 3 0.8182 9 11
8 10 0 0 11
16 10 0.3636 4 11
32 10 0.6364 7 11
Conclusion:
Wireless Communication 15
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Experiment: 7
Aim: Perform and observe channelization scheme of cellular system.
Objectives:
1.To measure BS and MS carrier frequency and understand concept of FDD (Frequency Division
Duplexing)
Apparatus:
MT-2000 trainer board, Spectrum analyzer (HM 5014), BNC to BNC, Connecting probe
Theory:
Frequency division duplex, FDD, uses the idea that the transmission and reception of signals are
achieved simultaneously using two different frequencies. Using FDD it is possible to transmit and
receive signals simultaneously as the receiver is not tuned to the samem frequency as the transmitters
shown.
The use of an FDD system does enable true simultaneous transmission and reception of signals
However two channels are required and this may not always use the available spectrum efficiently The
spectrum used for FDD systems is allocated by the regulatory authorities. As there is a frequency
separation between the uplink and downlink directions, it is not normally possible to reallocate
spectrum to change the balance between the capacity of the uplink and downlink directions if there are
changing capacity requirements for each direction
Procedure:
Wireless Communication 16
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Channelization:
1. Switch on both BS and MS module and their sub modules. 2. Select channel 1 from the control
module of BS. 5. Select channel 1 from the control module of MS. 4. Measure the received power and
frequency and the transmitting power and frequency at the MS using spectrum analyzer 5. Measure the
Duplexing distance as MS frequency minus BS frequency 6. Repeat above steps for all the channels. 7.
Prepare the observation table.
Observation Table:
Conclusion:
Wireless Communication 17
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Experiment: 8
Aim: Perform and observe Adjacent channel interference in cellular system.
Objectives:
Apparatus:
MT-2000 trainer board, spectrum analyser (HM 5014), BNC-to-BNC, connecting probe
Theory:
Interference is the sum of all signal contributions that are neither noise not the wanted signal. Let's
understand how its effect, its type and what possible source for it.
Effect of interference:
4. Bit error are partly recoverable by means of channel coding and error correction mechanisms.
5. The interference situation is not reciprocal in the aplink and down link direction.
6. Mobile station and base station are exposed to the different interference situation.
Sources of interference:
Any non-cellular system which leaks energy in to the cellular frequency band.
Types of interference:
1. Co-channel interference
Wireless Communication 18
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
2. Adjacent channel interference
Interference resulting from signals which are adjacent in frequency to the desired signal is call
adjacent channel interference.
Adjacent channel interference results from imperfect receivers filters which allow nearby
frequencies to leak into the pass band.
Adjacent channel interference can be minimized through careful filtering and channel assignments.
By keeping the frequency separations between each channel in a given cell is largest possible, the
adjacent interference may be reduced considerably.
Procedure:
2. Take another MS 2 and select channel 5 or 3. Keep the MS 1 farand MS 2 the near to the BS.
3. Individually measure the received power of MS 1 and MS 2 at the base stations. This given the
signal power and interference power respectively.
5. Simultaneously switch of both the MS .and the observed the received power and frequency at the
BS.
Wireless Communication 19
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Observation Table:
Conclusion:
Wireless Communication 20
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Experiment: 9
Aim: Perform and observe Co-channel interference in cellular system.
Objectives:
Apparatus:
MT-2000 trainer board, spectrum analyser (HM 5014), BNC-to-BNC, connecting probe.
Theory:
Interference is the sum of all signal contributions that are neither noise not the wanted signal. Let's
understand how its effect, its type and what possible source for it.
Effect of interference:
Any non-cellular system which leaks energy in to the cellular frequency band.
Tyes of interference:
Wireless Communication 21
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Co-channel interference:
This type of interference is the due to frequency reuse, i.e.several cells use same set of frequency
Co-channel interference cannot be combated by increasing the power of transmitter This is because
an increasing in carrier transmit power increases the interference to neighbouring co-channel cell.
Some factors other than reuse distance that influence co-channel interference are antenna type,
directionality, height, site position etc.
In a cellular system, when the size of each cell is approximately the same, co-channel
interference is independent of the transmitted power and becomes a function of cell radius ®
and the distance to the centre of the nearest co-channel cell (D).
QDR-O3N
By increasing the ratio of D/R the spatial separation between the co-channel cells relative to the
coverage distance of the cell is increased. In this way interference is reduced from-prove the
isolation of RF energy from the co-channel cell • The perimeter Q. call the co-channel reuse
Wireless Communication 22
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
ratio, is the related to the cluster size. A small Value of Q provides larger capacity since the
cluster size N is small whereas • a large value of Q improve the transition quality.
Procedure:
Co-channel interference:
1. For co-channel interference, select same channel on the BS, MS 1 and MS2.
2. Individually measure power received power MS 1 and MS 2 at the base stations This given the
signal power and interference power respectively
3. Simultaneously switch on both the MS. And observed the received power and frequency at the
BS.
Observations table:
Conclusion:
Wireless Communication 23
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Experiment: 10
Aim: Perform outdoor propagation model Okumara model.
Theorv:
The Okumura model for Urban Areas is a Radio propagation model that was built using the data
collected in the city of Tokyo, Japan. The model is ideal for using in cities with many urban
structures but not many tall blocking structures. The model served as a base for the Hata Model.
Okumura model was built into three modes. The ones for urban, suburban and open areas. The
model for urban areas was built first and used as the base for others.
Coverage
Mathematical formulation
where,
K correction = Correction factor gain (such as type of environment, water surfaces. isolated obstacle
etc.)
Okumura model does not provide a mean to measure the Free space loss. However, any standard
method for calculating thefree space loss can be used.
Wireless Communication 24
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Program:
clc;
clear all;
close all;
LFSL= input('Enter the free space loss:');
AMU= input('Enter the medium attenuation value:');
HMG= input('Enter the Mobile station antenna height gain factor:');
HBG= input('Enter the Base Station antenna height gain factor:');
Kcorrection= input('Enter the correction factor gain:');
L= LFSL + AMU - HMG - HBG - Kcorrection;
disp(fprintf('%s %f %s','the medium path loss:',L,'db'));
Output:
Conclusion:
Wireless Communication 25
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Experiment: 11
Aim: Perform outdoor propagation Model Hata-Model.
Theory:
In wireless communication, the Hata Model for Urban Areas, also known as the Okumura-Hata
model for being a developed version of the Okumura Model. is the most widely used radio
frequency propagation model for predicting the behaviour of cellular transmissions in built up areas.
This model incorporates the graphical information from Okumura model and develops it further to
realize the effects of diffraction, reflection and scattering caused by city structures. This model also
has two more varieties for transmission in Suburban Areas and Open Areas.
Hata Model predicts the total path loss along a link of terrestrial microwave or other type of cellular
communications.
This particular version of the Hata model is applicable to the radio propagation within urban areas,
This model is suited for both point-to-point and broadcast transmissions and it is based on extensive
empirical measurements taken.
PCS is another extension of the Hata model. The Walfisch and Bertoni Model is further advanced.
Coverage
Mathematical formulation
Wireless Communication 26
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Where,
CH = Antenna height correction factor d = Distance between the base and mobile stations (km)
The term "small city' means a city where the mobile antenna height not more than 10 meters. i.e. 1 ≤
hM ≤ 10m
Program:
clc;
clear all;
close all;
f= input('enter the frequency of transmission in mhz:');
Hb=input('enter the height of base station Antenna in meter:');
Hm=input('enter the height of mobile station Antenna in meter:');
d=input('enter the distance between the base and mobile stations:');
n=input('enter 0 for small city and 1 for large city:');
ch=input("Antenna height correction factor ")
if n==0
ch=0.8+(1.1*log10(f)-0.7)*Hm-1.56*log10(f);
else
if f>=150 && f<=200
ch=8.29*(log10(1.54*Hm))^.2-1.1;
else
if f>-200 && f<=1500
ch=3.2*(log10(11.75*Hm))^.2-4.97;
end
end
end
Lu=69.55+26.16*log10(f)-13.82*log10(Hb)-ch+(44.9-6.55*log10(Hb))*log10(d);
disp(fprintf('%s %f %s','Path loss in Urban Areas=',Lu,'dB'));
Wireless Communication 27
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Output:
Conclusion:
Wireless Communication 28
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
Experiment: 12
Aim: Performed received power and path loss of Two Ray Model.
Theory:
The Two-Ray Ground Reflection Model is a simplified radio propagation model used to estimate
received power and path loss in wireless communication. It assumes that the signal propagates along
two paths: one direct path from the transmitter to the receiver and another path reflected from the
ground.
The received power (Pr) in the Two-Ray Model can be calculated using the formula:
Pr=Pt* Gt*Gr*(h^2)/(d^2*L)
Where:
L=(4*1*d)^2/(λ^2)
Where:
The Two-Ray Model simplifies path loss calculations and assumes that the signal strength is
inversely proportional to the square of the distance. This model works well in scenarios with a clear
line of sight and a reflecting ground, such as outdoor environments, Keep in mind thet uins is a
Wireless Communication 29
L.D. COLLEGE OF ENGINEERING EC ENGG. DEPARTMENT
simplified model and may not account for all real-world propagation effects, like shadowing.
multipath, and interference, which can significantly affect wireless communication in practical
situations.
Program:
clc;
clear all;
close all;
Pt= input("Enter the value Transmitted power (in dBm) ");
Gt = input("Enter the value transmitter antenna gain (in dBi) ");
Gr = input ("Enter the value Receiver antenna gain (in dBi) ");
h = input("Enter the value Height of antennas (in meters)");
d= input("Enter the value Distance between transmitter and receiver (in meters)");
lambda =input("Enter the value Wavelength ");
Pr = Pt + Gt + Gr + 20*log10(h) - 20 * log10(d);
L= (4*pi*d/lambda)^2;
fprintf('Received Power (Pr); %.2f dBm\n', Pr);
fprintf('Path Loss (L): %.2f dB\n', L);
Output:
Conclusion:
Wireless Communication 30