Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

WIRELESS AND MOBILE COMMUNICATION

LAB TASK – 4

SLOT : L1+ L2
TEAM : AYUSH GURTU (Reg.No : 17BEC0185)
AISHWARYA.A (Reg.No : 17BEC0131)
E B EKAMBARAESWAR (Reg.No : 16BEC0616)
TASK :
Consider a 2X1 MISO system. It is assumed that the channels between the transmitter and
the receiver are independent, identically distributed and Rayleigh faded. Consider that the
target rate R = 1 bit/sec and the transmitting SNR increases from 1 dB to 10 dB . Design
a simulation model to investigate the outage performance for MRC and SC diversity
techniques. Compare the performance for both the techniques.

THEORY:
MISO:
MISO (multiple input, single output) is an antenna technology for wireless communications in
which multiple antennas are used at the source (transmitter). The antennas are combined to
minimize errors and optimize data speed. The destination (receiver) has only one antenna.
MISO is one of several forms of smart antenna technology, the others being MIMO (multiple
input, multiple output) and SIMO (single input, multiple output).
In conventional wireless communications, a single antenna is used at the source, and
another single antenna is used at the destination. In some cases, this gives rise to problems
with multipath effects. When an electromagnetic field (EM field) is met with obstructions such
as hills, canyons, buildings, and utility wires, the wave fronts are scattered, and thus they
take many paths to reach the destination. The late arrival of scattered portions of the signal
causes problems such as fading, cut-out (cliff effect), and intermittent reception (picket
fencing). In digital communications systems such as wireless Internet, it can cause a
reduction in data speed and an increase in the number of errors. The use of two or more
antennas, along with the transmission of multiple signals (one for each antenna) at the
source, can reduce the trouble caused by multipath wave propagation.
MISO technology has widespread applications in digital television (DTV), wireless local area
networks (WLANs), metropolitan area networks (MANs), and mobile communications.

MATLAB CODE:

clc; clear all; %close all;


numb_simul = 5000;
%Ps = 1; %Transmit power 1 W
SNR = linspace(1,10,10); % Transmitting SNR in dB
snr = 10.^(SNR/10);
R=1 ;
for i = 1:length(SNR)
%simulation
count =0 ;
snr_bar = 0 ;
for k = 1: numb_simul
h1 = 1/sqrt(2)*(randn(1,1) + j*randn(1,1)); %Rayleight channel ;
h2 = 1/sqrt(2)*(randn(1,1) +j*randn(1,1)) ; %Rayleigh channel ;
h3 = abs(h1);
h4 = h3.^2; % gain of channel 1
h5 = abs(h2);
h6 = h5.^2; % gain of channel 2
%h = sqrt(max(h4,h6)); % selection diversity
%h = sqrt(h4) + sqrt(h6) ;
h = sqrt(h4) + sqrt(h6) ; % maximum ratio combining (h3 + h5)

h_gain = h^2 ;
C = log2(1+snr(i)*h_gain)
if C<g
count = count +1 ;
end
snr_bar = snr_bar + mean(h1*conj(h1));
end
Pout_simu(i) = (count/numb_simul);
end
plot(SNR, Pout_simu,'g'); hold on ;

OUTPUT:

You might also like