SlideShare a Scribd company logo
1 of 5
Download to read offline
International Journal of Advanced Computer Research (ISSN (print):2249-7277 ISSN (online):2277-7970)
Volume-3 Number-2 Issue-10 June-2013
67
Behaviour of OFDM System using MATLAB Simulation
S.S.Ghorpade1
, S.V.Sankpal2
Abstract
Orthogonal Frequency Division Multiplexing
(OFDM) is mainly designed to combat the
effect of multipath reception, by dividing the
wideband frequency selective fading channel into
many narrow flat sub-channels. OFDM offers
flexibility in adaptation to time varying channel
condition by adopting the parameters at each
subcarrier accurately. To avoid ISI due to
multipath, successive OFDM symbols are separated
by guard band. This makes the OFDM
system resistant to multi-path effects [1].The idea of
using parallel data transmission by FDM was
published in mid 60s [2].However, recently the
attention toward OFDM has grown rapidly in the
field of wireless and wired communication systems.
This is reflected by the adoption of this technique
in applications such as digital audio/video
broadcast, wireless LAN (802.11a and
HiperLAN2), broadband wireless (802.16) and
xDSL [3]. In this paper design of OFDM system
transmitter and receiver is introduced and
Simulation is done using MATLAB.
Keywords
FFT, IFFT, OFDM, QAM
1. Introduction
Orthogonal Frequency Division Multiplexing is a
special form of multicarrier modulation which is
particularly suited for transmission over a dispersive
channel.. Here the different carriers are orthogonal to
each other, that is, they are totally independent of one
another. Orthogonal Frequency Division
Multiplexing (OFDM) is a wideband modulation
scheme that is designed to cope with the problems of
the multipath reception. Essentially, the wideband
frequency selective fading channel is divided into
many narrow-band sub channels. If the number of
sub channels is high enough, each sub channel could
be considered as flat.
S.S.Ghorpade, E&TC, DYP College, Kolhapur, India.
S.V.Sankpal, E&TC, DYP College, Kolhapur, India.
This is because we transmit many narrowband
overlapping digital signals in parallel, inside one
wide band.
Figure 1: A) Spectrum of FDM showing guard
Bands
B) Spectrum of OFDM showing overlapping
subcarrier
Increasing the number of parallel transmission
channels reduces the data rate that each individual
carrier must convey, and that lengthens the symbol
period. Therefore the delay time of reflected waves is
suppressed to within 1 symbol time. Fig.1 compares
the utilization of FDM and OFDM.
The development of OFDM systems can be divided
into three parts. They are Frequency Division
Multiplexing, Multicarrier Communication and
Orthogonal Frequency Division Multiplexing [4].
Frequency Division Multiplexing is a form of signal
multiplexing which involves assigning non
overlapping frequency ranges or channels to different
signals or to each user of a medium. A gap or guard
band is left between each of these channels to ensure
that the signal of one channel does not overlap with
the signal from an adjacent one. Multicarrier
Communication involves splitting of the signal to
give a number of signals over that frequency range.
Each of these signals are individually modulated and
transmitted over the channel. At the receiver end,
International Journal of Advanced Computer Research (ISSN (print):2249-7277 ISSN (online):2277-7970)
Volume-3 Number-2 Issue-10 June-2013
68
these signals are fed to a demultiplexer where it is
demodulated and recombined to obtain the original
signal.
2. Implementation
As shown in Fig.2, we have to implement the OFDM
System below.
Figure 2: OFDM Block Diagram
Modulation
Modulation is the technique by which the signal
wave is transformed in order to send it over the
communication channel in order to minimize the
effect of noise. This is done in order to ensure that
the received data can be demodulated to give back
the original data. In an OFDM system, the high data
rate information is divided into small packets of data
which are placed orthogonal to each other. This is
achieved by modulating the data by a desirable
modulation technique like Quadrature Amplitude
Modulation [7]. After this, IFFT is performed on the
modulated signal which is further processed by
passing through a parallel to serial converter. Guard
Interval Insertion (GII) is done in order to avoid ISI.
Communication Channel
This is the channel through which the data is
transferred. Presence of noise in this medium affects
the signal and causes distortion in its data content.
Demodulation
Demodulation is the technique by which the original
data is recovered from the modulated signal which is
received at the receiver end. In this case, the received
data is first made to pass through a low pass filter and
the Guard Interval Removal (GIR ) is done. FFT of
the signal is done after it is made to pass through a
serial to parallel converter. A demodulator is used, to
get back the original signal. The bit error rate and the
signal to noise ratio is calculated by taking into
consideration the unmodulated signal data and the
data at the receiving end.
3. Simulation
Figure 3: OFDM Simulation Flowchart
OFDM Simulation Process
Simulation flowchart is shown in fig.3. MATLAB
code for 256 bits processing is given below.
The transmitter first converts the input data from a
serial stream to parallel sets. Each set of data contains
one symbol, Si, for each subcarrier. For example, a set
of four data would be [S0 S1 S2 S3].Before performing
the Inverse Fast Fourier Transform (IFFT), this
example data set is arranged on the horizontal axis in
the frequency domain as shown in Fig:4. This
symmetrical arrangement about the vertical axis is
necessary for using the IFFT to manipulate this data.
Figure 4: Frequency Domain Distribution of
Symbol
International Journal of Advanced Computer Research (ISSN (print):2249-7277 ISSN (online):2277-7970)
Volume-3 Number-2 Issue-10 June-2013
69
An inverse Fourier transform converts the frequency
domain data set into samples of the corresponding
time domain representation of this data. Specifically,
the IFFT is useful for OFDM because it generates
samples of a waveform with orthogonal frequency
components. Then, the parallel to serial block creates
the OFDM signal by sequentially outputting the time
domain samples.
The channel simulation will allow examination of the
effects of noise, multipath, and clipping. By adding
random data to the transmitted signal, simple noise
can be simulated. Multipath simulation involves
adding attenuated and delayed copies of the
transmitted signal to the original. This simulates the
problem in wireless communication when the signal
propagates on many paths. For example, a receiver
may see a signal via a direct path as well as a path
that bounces off a building. Finally, clipping
simulates the problem of amplifier saturation. This
addresses a practical implementation problem in
OFDM where the peak to average power ratio is
high. The receiver performs the inverse of the
transmitter. First, the OFDM data are split from a
serial stream into parallel sets. The Fast Fourier
Transform (FFT) converts the time domain samples
back into a frequency domain representation. The
magnitudes of the frequency components correspond
to the original data. Finally, the parallel to serial
block converts this parallel data into a serial stream to
recover the original input data.
MATLAB Code
%code for OFDM signal transmission and reception
in AWGN channel
% code
n = 256; % Number of bits to process
x = randint(n,1); % Random binary data stream
M = 16; % Size of signal constellation
k = log2(M); % Number of bits per symbol
xsym = bi2de(reshape(x,k,length(x)/k).','left-msb');
% Convert the bits in x into k-bit symbols.
y = modulate(modem.qammod(M),xsym);
% Modulate using QAM
tu=3.2e-6;%useful symbol period
tg=0.8e-6;%guard interval length
ts=tu+tg;%total symbol duration
nmin=0;
nmax=64;%total number of subcarriers
scb=312.5e3;%sub carrier spacing
fc=3.6e9;%carrier frequency
Rs=fc;
tt=0: 6.2500e-008:ts-6.2500e-008;
c=ifft(y,nmax);%IFFT
s=real(c'.*(exp(1j*2*pi*fc*tt)));%bandpass
modulation
figure;
plot(real(s),'b');title('OFDM signal transmitted');
figure;
plot(10*log10(abs(fft(s,nmax))));title('OFDM
spectrum');
xlabel('frequency')
ylabel('power spectral density')
title('Transmit spectrum OFDM');
snr=10;%signal to noise ratio
ynoisy = awgn(s,snr,'measured');%awgn channel
figure;
plot(real(ynoisy),'b');title('received OFDM signal
with noise');
z=ynoisy.*exp(j*2*pi*fc*tt);%Bandpass
demodulation
z=fft(z,nmax);%FFT
zsym=demodulate(modem.qamdemod(M),z);%demo
dulation of bandpass data.
z = de2bi(zsym,'left-msb'); %Convert integers to bits.
z = reshape(z.',prod(size(z)),1);%matrix to vector
conversion
[noe,ber] = biterr(x,z) ;%BER calculation figure;
subplot(211);stem(x(1:256));title('Original
Message');
subplot(212);stem(z(1:256));title('recovered
Message');
4. Results
Simulation results for MATLAB code are shown in
fig.5, 6, 7, 8.
Figure 5: Transmit spectrum of OFDM
International Journal of Advanced Computer Research (ISSN (print):2249-7277 ISSN (online):2277-7970)
Volume-3 Number-2 Issue-10 June-2013
70
Fig 6: OFDM Signal Transmitted
Fig 7: Received OFDM Signal with Noise
Figure 8: Original message and Recovered
Message
5. Conclusion
The main aim of the project is to implement the core
signal processing blocks of OFDM system. These
blocks are simulated using MATLAB. Design Suite
is tested for data patterns and the results are as
shown. The results are matching with expected
results. In this project OFDM system is simulated
using 64 subcarriers. This is very basic
implementation and has advantage of less processing
time requirement and complexity. The spectral
efficiency can be increased by increasing the number
of subcarriers. The problem of Peak-to-average ratio
can be reduced by using power amplifier with wide
linear range at the front end of transmitter. Some
other methods like Clipping, Peak Cancellation can
be used. Synchronisation can be achieved by using
Cyclic extension and Training Sequences.
Acknowledgment
I wish to thank the referee for the careful reading of
the paper and giving the valuable suggestions.
References
[1] Masoud Olfat, “Spatial Processing ,Power
Control, and Channel Allocation for OFDM
Wireless Communications”.-Ph,d Report , 2003.
[2] B. Salzberg,“Performance of an efficient parallel
data transmission system”. IEEE Trans.
Commun Technol., vol. COM-15, pp.805-813,
Dec 1967.
[3] Chide, Nilesh, Shreyas Deshmukh, and P. B.
Borole. "Implementation of OFDM System using
IFFT and FFT." International Journal of
Engineering Research and Applications (IJERA)
3, no. 1 (2013): 2009-2014.
[4] H. Taub, D. L. Schilling, G. Saha,
“Taub’sPrinciples of Communication Systems”.
Tata McGraw Hill, 2008.
[5] S. Weinstein and P. Ebert, “Data transmission by
frequency-division multiplexing using the fourier
transform” ,IEEE Trans. Commun. Technol.,vol.
COM-19, pp. 628-634, Oct 1971.
[6] T.Pollet, M. Bladel, and
M.Moeneclaey,“Sensitivity of OFDM systems to
carrier frequency offset and wiener phase noise”,
IEEETransaction on Communications, vol. 43,
pp. 191-193, Apr 1995.
[7] Horosaki B., “An orthogonally multiplexed QAM
system using the DFT,” IEEE Trans. Comm.
Vol.COM-29, pp. 982-989, July 1981.
International Journal of Advanced Computer Research (ISSN (print):2249-7277 ISSN (online):2277-7970)
Volume-3 Number-2 Issue-10 June-2013
71
[8] P. Banelli and S. Cacopardi, “Theoretical
analysis and performance of OFDM signals
in channels,” IEEE Trans. Communication.,vol.
48, pp. 430–441, Mar. 2000.
S.S.Ghorpade, received her B.E.(I.E.)
degree from Shivaji University.She is
student of M.E.(E&TC) in DYP
College, Kolhapur.Her research interest
include OFDM.She published 1
international conference paper, 1
international journal paper.
Swati V.Sankpal is currently working
as associate professor at D. Y. Patil
college of Engineering and
Techonology, Kolhapur. She has total
28 years of experience. She has
completed her B.E .and M.E.in
Electronics from Walchand College of Engineering Sangli
and earned her Ph.D. from Shivaji University, Kolhapur.
She has published totally 28 national conference papers, 29
international conference papers, 25 international journal
papers.Under her guidance three students have completed
their P.G.(E.&.TC) and ,three students have submitted their
thesis and ten are pursuing.

More Related Content

What's hot

OFDM Orthogonal Frequency Division Multiplexing
OFDM Orthogonal Frequency Division MultiplexingOFDM Orthogonal Frequency Division Multiplexing
OFDM Orthogonal Frequency Division MultiplexingAbdullaziz Tagawy
 
Mimo must read
Mimo must readMimo must read
Mimo must readaritra321
 
OFDMA - Orthogonal Frequency Division Multiple Access PPT by PREM KAMAL
OFDMA - Orthogonal Frequency Division Multiple Access PPT by PREM KAMALOFDMA - Orthogonal Frequency Division Multiple Access PPT by PREM KAMAL
OFDMA - Orthogonal Frequency Division Multiple Access PPT by PREM KAMALprem kamal
 
Mimo ofdm by abhishek pandey
Mimo ofdm by abhishek pandeyMimo ofdm by abhishek pandey
Mimo ofdm by abhishek pandeyabhi29513
 
MIMO Features In WiMAX and LTE
MIMO Features In WiMAX and LTEMIMO Features In WiMAX and LTE
MIMO Features In WiMAX and LTEPrav_Kalyan
 
Digital Communication 4
Digital Communication 4Digital Communication 4
Digital Communication 4admercano101
 
COMPARISON OF SISO & MIMO TECHNIQUES IN WIRELESS COMMUNICATION
COMPARISON OF SISO & MIMO TECHNIQUES IN WIRELESS COMMUNICATIONCOMPARISON OF SISO & MIMO TECHNIQUES IN WIRELESS COMMUNICATION
COMPARISON OF SISO & MIMO TECHNIQUES IN WIRELESS COMMUNICATIONJournal For Research
 
MIMO system (potential candidate for 4G system)
MIMO system (potential candidate for 4G system)MIMO system (potential candidate for 4G system)
MIMO system (potential candidate for 4G system)Virak Sou
 
Space Division Multiplexing
Space Division MultiplexingSpace Division Multiplexing
Space Division MultiplexingMahmudul Soukhin
 
space time codes
space time codesspace time codes
space time codesjie ren
 
Performance Analysis of MIMO-OFDM System Using QOSTBC Code Structure for M-PSK
Performance Analysis of MIMO-OFDM System Using QOSTBC Code Structure for M-PSKPerformance Analysis of MIMO-OFDM System Using QOSTBC Code Structure for M-PSK
Performance Analysis of MIMO-OFDM System Using QOSTBC Code Structure for M-PSKCSCJournals
 

What's hot (20)

OFDM Orthogonal Frequency Division Multiplexing
OFDM Orthogonal Frequency Division MultiplexingOFDM Orthogonal Frequency Division Multiplexing
OFDM Orthogonal Frequency Division Multiplexing
 
Mimo must read
Mimo must readMimo must read
Mimo must read
 
MIMO OFDM
MIMO OFDMMIMO OFDM
MIMO OFDM
 
Mimo radar(1)
Mimo radar(1)Mimo radar(1)
Mimo radar(1)
 
OFDMA - Orthogonal Frequency Division Multiple Access PPT by PREM KAMAL
OFDMA - Orthogonal Frequency Division Multiple Access PPT by PREM KAMALOFDMA - Orthogonal Frequency Division Multiple Access PPT by PREM KAMAL
OFDMA - Orthogonal Frequency Division Multiple Access PPT by PREM KAMAL
 
Mimo ofdm by abhishek pandey
Mimo ofdm by abhishek pandeyMimo ofdm by abhishek pandey
Mimo ofdm by abhishek pandey
 
OFDM
OFDMOFDM
OFDM
 
Mimo
MimoMimo
Mimo
 
Final ppt
Final pptFinal ppt
Final ppt
 
MIMO Features In WiMAX and LTE
MIMO Features In WiMAX and LTEMIMO Features In WiMAX and LTE
MIMO Features In WiMAX and LTE
 
Digital Communication 4
Digital Communication 4Digital Communication 4
Digital Communication 4
 
COMPARISON OF SISO & MIMO TECHNIQUES IN WIRELESS COMMUNICATION
COMPARISON OF SISO & MIMO TECHNIQUES IN WIRELESS COMMUNICATIONCOMPARISON OF SISO & MIMO TECHNIQUES IN WIRELESS COMMUNICATION
COMPARISON OF SISO & MIMO TECHNIQUES IN WIRELESS COMMUNICATION
 
MIMO system (potential candidate for 4G system)
MIMO system (potential candidate for 4G system)MIMO system (potential candidate for 4G system)
MIMO system (potential candidate for 4G system)
 
Mimo [new]
Mimo [new]Mimo [new]
Mimo [new]
 
Space Division Multiplexing
Space Division MultiplexingSpace Division Multiplexing
Space Division Multiplexing
 
Mimo
MimoMimo
Mimo
 
space time codes
space time codesspace time codes
space time codes
 
Performance Analysis of MIMO-OFDM System Using QOSTBC Code Structure for M-PSK
Performance Analysis of MIMO-OFDM System Using QOSTBC Code Structure for M-PSKPerformance Analysis of MIMO-OFDM System Using QOSTBC Code Structure for M-PSK
Performance Analysis of MIMO-OFDM System Using QOSTBC Code Structure for M-PSK
 
(Ofdm)
(Ofdm)(Ofdm)
(Ofdm)
 
Ch 06
Ch 06Ch 06
Ch 06
 

Similar to ofdm

Simulation of OFDM modulation
Simulation of OFDM modulationSimulation of OFDM modulation
Simulation of OFDM modulationDawood Aqlan
 
Simulation of ofdm modulation adapted to the transmission of a fixed image
Simulation of ofdm modulation adapted to the transmission of a fixed imageSimulation of ofdm modulation adapted to the transmission of a fixed image
Simulation of ofdm modulation adapted to the transmission of a fixed imageIAEME Publication
 
Blind Channel Shortening for MIMO-OFDM System Using Zero Padding and Eigen De...
Blind Channel Shortening for MIMO-OFDM System Using Zero Padding and Eigen De...Blind Channel Shortening for MIMO-OFDM System Using Zero Padding and Eigen De...
Blind Channel Shortening for MIMO-OFDM System Using Zero Padding and Eigen De...ijsrd.com
 
Design and Implementation of OFDM Trans-Receiver for IEEE 802.11(WLAN)
Design and Implementation of OFDM Trans-Receiver for IEEE  802.11(WLAN) Design and Implementation of OFDM Trans-Receiver for IEEE  802.11(WLAN)
Design and Implementation of OFDM Trans-Receiver for IEEE 802.11(WLAN) IJMER
 
Performance Analysis of 802.lln MIMO OFDM Transceiver
Performance Analysis of 802.lln MIMO OFDM TransceiverPerformance Analysis of 802.lln MIMO OFDM Transceiver
Performance Analysis of 802.lln MIMO OFDM TransceiverIJERA Editor
 
Analyses and performance of techniques papr reduction for stbc mimo ofdm syst...
Analyses and performance of techniques papr reduction for stbc mimo ofdm syst...Analyses and performance of techniques papr reduction for stbc mimo ofdm syst...
Analyses and performance of techniques papr reduction for stbc mimo ofdm syst...ijwmn
 
COMPARISON OF BER AND NUMBER OF ERRORS WITH DIFFERENT MODULATION TECHNIQUES I...
COMPARISON OF BER AND NUMBER OF ERRORS WITH DIFFERENT MODULATION TECHNIQUES I...COMPARISON OF BER AND NUMBER OF ERRORS WITH DIFFERENT MODULATION TECHNIQUES I...
COMPARISON OF BER AND NUMBER OF ERRORS WITH DIFFERENT MODULATION TECHNIQUES I...Sukhvinder Singh Malik
 
Reduction of Outage Probability in Fast Rayleigh Fading MIMO Channels Using OFDM
Reduction of Outage Probability in Fast Rayleigh Fading MIMO Channels Using OFDMReduction of Outage Probability in Fast Rayleigh Fading MIMO Channels Using OFDM
Reduction of Outage Probability in Fast Rayleigh Fading MIMO Channels Using OFDMIJERA Editor
 
SISO MMSE-PIC detector in MIMO-OFDM systems
SISO MMSE-PIC detector in MIMO-OFDM systemsSISO MMSE-PIC detector in MIMO-OFDM systems
SISO MMSE-PIC detector in MIMO-OFDM systemsIJMER
 
An Adaptive Approach to Switching Coded Modulation in OFDM System Under AWGN ...
An Adaptive Approach to Switching Coded Modulation in OFDM System Under AWGN ...An Adaptive Approach to Switching Coded Modulation in OFDM System Under AWGN ...
An Adaptive Approach to Switching Coded Modulation in OFDM System Under AWGN ...ijsrd.com
 
Performance evaluation on the basis of bit error rate for different order of ...
Performance evaluation on the basis of bit error rate for different order of ...Performance evaluation on the basis of bit error rate for different order of ...
Performance evaluation on the basis of bit error rate for different order of ...ijmnct
 
Mathematical description of ofdm
Mathematical description of ofdmMathematical description of ofdm
Mathematical description of ofdmJulia Urbina-Pineda
 
Ofdm mimo and v-blast algorithm-key to high speed wireless communication
Ofdm mimo and v-blast algorithm-key to high speed wireless communicationOfdm mimo and v-blast algorithm-key to high speed wireless communication
Ofdm mimo and v-blast algorithm-key to high speed wireless communicationIAEME Publication
 
Ofdm mimo and v-blast algorithm-key to high speed wireless communication
Ofdm mimo and v-blast algorithm-key to high speed wireless communicationOfdm mimo and v-blast algorithm-key to high speed wireless communication
Ofdm mimo and v-blast algorithm-key to high speed wireless communicationIAEME Publication
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 

Similar to ofdm (20)

Simulation of OFDM modulation
Simulation of OFDM modulationSimulation of OFDM modulation
Simulation of OFDM modulation
 
Simulation of ofdm modulation adapted to the transmission of a fixed image
Simulation of ofdm modulation adapted to the transmission of a fixed imageSimulation of ofdm modulation adapted to the transmission of a fixed image
Simulation of ofdm modulation adapted to the transmission of a fixed image
 
DESIGN AND IMPLEMENTATION OF OFDM SYSTEM AND REDUCTION OF INTER-CARRIER INTER...
DESIGN AND IMPLEMENTATION OF OFDM SYSTEM AND REDUCTION OF INTER-CARRIER INTER...DESIGN AND IMPLEMENTATION OF OFDM SYSTEM AND REDUCTION OF INTER-CARRIER INTER...
DESIGN AND IMPLEMENTATION OF OFDM SYSTEM AND REDUCTION OF INTER-CARRIER INTER...
 
Blind Channel Shortening for MIMO-OFDM System Using Zero Padding and Eigen De...
Blind Channel Shortening for MIMO-OFDM System Using Zero Padding and Eigen De...Blind Channel Shortening for MIMO-OFDM System Using Zero Padding and Eigen De...
Blind Channel Shortening for MIMO-OFDM System Using Zero Padding and Eigen De...
 
Design and Implementation of OFDM Trans-Receiver for IEEE 802.11(WLAN)
Design and Implementation of OFDM Trans-Receiver for IEEE  802.11(WLAN) Design and Implementation of OFDM Trans-Receiver for IEEE  802.11(WLAN)
Design and Implementation of OFDM Trans-Receiver for IEEE 802.11(WLAN)
 
Performance Analysis of 802.lln MIMO OFDM Transceiver
Performance Analysis of 802.lln MIMO OFDM TransceiverPerformance Analysis of 802.lln MIMO OFDM Transceiver
Performance Analysis of 802.lln MIMO OFDM Transceiver
 
Analyses and performance of techniques papr reduction for stbc mimo ofdm syst...
Analyses and performance of techniques papr reduction for stbc mimo ofdm syst...Analyses and performance of techniques papr reduction for stbc mimo ofdm syst...
Analyses and performance of techniques papr reduction for stbc mimo ofdm syst...
 
COMPARISON OF BER AND NUMBER OF ERRORS WITH DIFFERENT MODULATION TECHNIQUES I...
COMPARISON OF BER AND NUMBER OF ERRORS WITH DIFFERENT MODULATION TECHNIQUES I...COMPARISON OF BER AND NUMBER OF ERRORS WITH DIFFERENT MODULATION TECHNIQUES I...
COMPARISON OF BER AND NUMBER OF ERRORS WITH DIFFERENT MODULATION TECHNIQUES I...
 
He3512531256
He3512531256He3512531256
He3512531256
 
Reduction of Outage Probability in Fast Rayleigh Fading MIMO Channels Using OFDM
Reduction of Outage Probability in Fast Rayleigh Fading MIMO Channels Using OFDMReduction of Outage Probability in Fast Rayleigh Fading MIMO Channels Using OFDM
Reduction of Outage Probability in Fast Rayleigh Fading MIMO Channels Using OFDM
 
SISO MMSE-PIC detector in MIMO-OFDM systems
SISO MMSE-PIC detector in MIMO-OFDM systemsSISO MMSE-PIC detector in MIMO-OFDM systems
SISO MMSE-PIC detector in MIMO-OFDM systems
 
An Adaptive Approach to Switching Coded Modulation in OFDM System Under AWGN ...
An Adaptive Approach to Switching Coded Modulation in OFDM System Under AWGN ...An Adaptive Approach to Switching Coded Modulation in OFDM System Under AWGN ...
An Adaptive Approach to Switching Coded Modulation in OFDM System Under AWGN ...
 
Performance evaluation on the basis of bit error rate for different order of ...
Performance evaluation on the basis of bit error rate for different order of ...Performance evaluation on the basis of bit error rate for different order of ...
Performance evaluation on the basis of bit error rate for different order of ...
 
Mathematical description of ofdm
Mathematical description of ofdmMathematical description of ofdm
Mathematical description of ofdm
 
Aa04606162167
Aa04606162167Aa04606162167
Aa04606162167
 
Ofdm mimo and v-blast algorithm-key to high speed wireless communication
Ofdm mimo and v-blast algorithm-key to high speed wireless communicationOfdm mimo and v-blast algorithm-key to high speed wireless communication
Ofdm mimo and v-blast algorithm-key to high speed wireless communication
 
Ofdm mimo and v-blast algorithm-key to high speed wireless communication
Ofdm mimo and v-blast algorithm-key to high speed wireless communicationOfdm mimo and v-blast algorithm-key to high speed wireless communication
Ofdm mimo and v-blast algorithm-key to high speed wireless communication
 
Fp3410401046
Fp3410401046Fp3410401046
Fp3410401046
 
BER PERFORMANCE ANALYSIS OF OFDM IN COGNITIVE RADIO NETWORK IN RAYLEIGH FADIN...
BER PERFORMANCE ANALYSIS OF OFDM IN COGNITIVE RADIO NETWORK IN RAYLEIGH FADIN...BER PERFORMANCE ANALYSIS OF OFDM IN COGNITIVE RADIO NETWORK IN RAYLEIGH FADIN...
BER PERFORMANCE ANALYSIS OF OFDM IN COGNITIVE RADIO NETWORK IN RAYLEIGH FADIN...
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 

Recently uploaded

(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and usesDevarapalliHaritha
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 

Recently uploaded (20)

(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and uses
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 

ofdm

  • 1. International Journal of Advanced Computer Research (ISSN (print):2249-7277 ISSN (online):2277-7970) Volume-3 Number-2 Issue-10 June-2013 67 Behaviour of OFDM System using MATLAB Simulation S.S.Ghorpade1 , S.V.Sankpal2 Abstract Orthogonal Frequency Division Multiplexing (OFDM) is mainly designed to combat the effect of multipath reception, by dividing the wideband frequency selective fading channel into many narrow flat sub-channels. OFDM offers flexibility in adaptation to time varying channel condition by adopting the parameters at each subcarrier accurately. To avoid ISI due to multipath, successive OFDM symbols are separated by guard band. This makes the OFDM system resistant to multi-path effects [1].The idea of using parallel data transmission by FDM was published in mid 60s [2].However, recently the attention toward OFDM has grown rapidly in the field of wireless and wired communication systems. This is reflected by the adoption of this technique in applications such as digital audio/video broadcast, wireless LAN (802.11a and HiperLAN2), broadband wireless (802.16) and xDSL [3]. In this paper design of OFDM system transmitter and receiver is introduced and Simulation is done using MATLAB. Keywords FFT, IFFT, OFDM, QAM 1. Introduction Orthogonal Frequency Division Multiplexing is a special form of multicarrier modulation which is particularly suited for transmission over a dispersive channel.. Here the different carriers are orthogonal to each other, that is, they are totally independent of one another. Orthogonal Frequency Division Multiplexing (OFDM) is a wideband modulation scheme that is designed to cope with the problems of the multipath reception. Essentially, the wideband frequency selective fading channel is divided into many narrow-band sub channels. If the number of sub channels is high enough, each sub channel could be considered as flat. S.S.Ghorpade, E&TC, DYP College, Kolhapur, India. S.V.Sankpal, E&TC, DYP College, Kolhapur, India. This is because we transmit many narrowband overlapping digital signals in parallel, inside one wide band. Figure 1: A) Spectrum of FDM showing guard Bands B) Spectrum of OFDM showing overlapping subcarrier Increasing the number of parallel transmission channels reduces the data rate that each individual carrier must convey, and that lengthens the symbol period. Therefore the delay time of reflected waves is suppressed to within 1 symbol time. Fig.1 compares the utilization of FDM and OFDM. The development of OFDM systems can be divided into three parts. They are Frequency Division Multiplexing, Multicarrier Communication and Orthogonal Frequency Division Multiplexing [4]. Frequency Division Multiplexing is a form of signal multiplexing which involves assigning non overlapping frequency ranges or channels to different signals or to each user of a medium. A gap or guard band is left between each of these channels to ensure that the signal of one channel does not overlap with the signal from an adjacent one. Multicarrier Communication involves splitting of the signal to give a number of signals over that frequency range. Each of these signals are individually modulated and transmitted over the channel. At the receiver end,
  • 2. International Journal of Advanced Computer Research (ISSN (print):2249-7277 ISSN (online):2277-7970) Volume-3 Number-2 Issue-10 June-2013 68 these signals are fed to a demultiplexer where it is demodulated and recombined to obtain the original signal. 2. Implementation As shown in Fig.2, we have to implement the OFDM System below. Figure 2: OFDM Block Diagram Modulation Modulation is the technique by which the signal wave is transformed in order to send it over the communication channel in order to minimize the effect of noise. This is done in order to ensure that the received data can be demodulated to give back the original data. In an OFDM system, the high data rate information is divided into small packets of data which are placed orthogonal to each other. This is achieved by modulating the data by a desirable modulation technique like Quadrature Amplitude Modulation [7]. After this, IFFT is performed on the modulated signal which is further processed by passing through a parallel to serial converter. Guard Interval Insertion (GII) is done in order to avoid ISI. Communication Channel This is the channel through which the data is transferred. Presence of noise in this medium affects the signal and causes distortion in its data content. Demodulation Demodulation is the technique by which the original data is recovered from the modulated signal which is received at the receiver end. In this case, the received data is first made to pass through a low pass filter and the Guard Interval Removal (GIR ) is done. FFT of the signal is done after it is made to pass through a serial to parallel converter. A demodulator is used, to get back the original signal. The bit error rate and the signal to noise ratio is calculated by taking into consideration the unmodulated signal data and the data at the receiving end. 3. Simulation Figure 3: OFDM Simulation Flowchart OFDM Simulation Process Simulation flowchart is shown in fig.3. MATLAB code for 256 bits processing is given below. The transmitter first converts the input data from a serial stream to parallel sets. Each set of data contains one symbol, Si, for each subcarrier. For example, a set of four data would be [S0 S1 S2 S3].Before performing the Inverse Fast Fourier Transform (IFFT), this example data set is arranged on the horizontal axis in the frequency domain as shown in Fig:4. This symmetrical arrangement about the vertical axis is necessary for using the IFFT to manipulate this data. Figure 4: Frequency Domain Distribution of Symbol
  • 3. International Journal of Advanced Computer Research (ISSN (print):2249-7277 ISSN (online):2277-7970) Volume-3 Number-2 Issue-10 June-2013 69 An inverse Fourier transform converts the frequency domain data set into samples of the corresponding time domain representation of this data. Specifically, the IFFT is useful for OFDM because it generates samples of a waveform with orthogonal frequency components. Then, the parallel to serial block creates the OFDM signal by sequentially outputting the time domain samples. The channel simulation will allow examination of the effects of noise, multipath, and clipping. By adding random data to the transmitted signal, simple noise can be simulated. Multipath simulation involves adding attenuated and delayed copies of the transmitted signal to the original. This simulates the problem in wireless communication when the signal propagates on many paths. For example, a receiver may see a signal via a direct path as well as a path that bounces off a building. Finally, clipping simulates the problem of amplifier saturation. This addresses a practical implementation problem in OFDM where the peak to average power ratio is high. The receiver performs the inverse of the transmitter. First, the OFDM data are split from a serial stream into parallel sets. The Fast Fourier Transform (FFT) converts the time domain samples back into a frequency domain representation. The magnitudes of the frequency components correspond to the original data. Finally, the parallel to serial block converts this parallel data into a serial stream to recover the original input data. MATLAB Code %code for OFDM signal transmission and reception in AWGN channel % code n = 256; % Number of bits to process x = randint(n,1); % Random binary data stream M = 16; % Size of signal constellation k = log2(M); % Number of bits per symbol xsym = bi2de(reshape(x,k,length(x)/k).','left-msb'); % Convert the bits in x into k-bit symbols. y = modulate(modem.qammod(M),xsym); % Modulate using QAM tu=3.2e-6;%useful symbol period tg=0.8e-6;%guard interval length ts=tu+tg;%total symbol duration nmin=0; nmax=64;%total number of subcarriers scb=312.5e3;%sub carrier spacing fc=3.6e9;%carrier frequency Rs=fc; tt=0: 6.2500e-008:ts-6.2500e-008; c=ifft(y,nmax);%IFFT s=real(c'.*(exp(1j*2*pi*fc*tt)));%bandpass modulation figure; plot(real(s),'b');title('OFDM signal transmitted'); figure; plot(10*log10(abs(fft(s,nmax))));title('OFDM spectrum'); xlabel('frequency') ylabel('power spectral density') title('Transmit spectrum OFDM'); snr=10;%signal to noise ratio ynoisy = awgn(s,snr,'measured');%awgn channel figure; plot(real(ynoisy),'b');title('received OFDM signal with noise'); z=ynoisy.*exp(j*2*pi*fc*tt);%Bandpass demodulation z=fft(z,nmax);%FFT zsym=demodulate(modem.qamdemod(M),z);%demo dulation of bandpass data. z = de2bi(zsym,'left-msb'); %Convert integers to bits. z = reshape(z.',prod(size(z)),1);%matrix to vector conversion [noe,ber] = biterr(x,z) ;%BER calculation figure; subplot(211);stem(x(1:256));title('Original Message'); subplot(212);stem(z(1:256));title('recovered Message'); 4. Results Simulation results for MATLAB code are shown in fig.5, 6, 7, 8. Figure 5: Transmit spectrum of OFDM
  • 4. International Journal of Advanced Computer Research (ISSN (print):2249-7277 ISSN (online):2277-7970) Volume-3 Number-2 Issue-10 June-2013 70 Fig 6: OFDM Signal Transmitted Fig 7: Received OFDM Signal with Noise Figure 8: Original message and Recovered Message 5. Conclusion The main aim of the project is to implement the core signal processing blocks of OFDM system. These blocks are simulated using MATLAB. Design Suite is tested for data patterns and the results are as shown. The results are matching with expected results. In this project OFDM system is simulated using 64 subcarriers. This is very basic implementation and has advantage of less processing time requirement and complexity. The spectral efficiency can be increased by increasing the number of subcarriers. The problem of Peak-to-average ratio can be reduced by using power amplifier with wide linear range at the front end of transmitter. Some other methods like Clipping, Peak Cancellation can be used. Synchronisation can be achieved by using Cyclic extension and Training Sequences. Acknowledgment I wish to thank the referee for the careful reading of the paper and giving the valuable suggestions. References [1] Masoud Olfat, “Spatial Processing ,Power Control, and Channel Allocation for OFDM Wireless Communications”.-Ph,d Report , 2003. [2] B. Salzberg,“Performance of an efficient parallel data transmission system”. IEEE Trans. Commun Technol., vol. COM-15, pp.805-813, Dec 1967. [3] Chide, Nilesh, Shreyas Deshmukh, and P. B. Borole. "Implementation of OFDM System using IFFT and FFT." International Journal of Engineering Research and Applications (IJERA) 3, no. 1 (2013): 2009-2014. [4] H. Taub, D. L. Schilling, G. Saha, “Taub’sPrinciples of Communication Systems”. Tata McGraw Hill, 2008. [5] S. Weinstein and P. Ebert, “Data transmission by frequency-division multiplexing using the fourier transform” ,IEEE Trans. Commun. Technol.,vol. COM-19, pp. 628-634, Oct 1971. [6] T.Pollet, M. Bladel, and M.Moeneclaey,“Sensitivity of OFDM systems to carrier frequency offset and wiener phase noise”, IEEETransaction on Communications, vol. 43, pp. 191-193, Apr 1995. [7] Horosaki B., “An orthogonally multiplexed QAM system using the DFT,” IEEE Trans. Comm. Vol.COM-29, pp. 982-989, July 1981.
  • 5. International Journal of Advanced Computer Research (ISSN (print):2249-7277 ISSN (online):2277-7970) Volume-3 Number-2 Issue-10 June-2013 71 [8] P. Banelli and S. Cacopardi, “Theoretical analysis and performance of OFDM signals in channels,” IEEE Trans. Communication.,vol. 48, pp. 430–441, Mar. 2000. S.S.Ghorpade, received her B.E.(I.E.) degree from Shivaji University.She is student of M.E.(E&TC) in DYP College, Kolhapur.Her research interest include OFDM.She published 1 international conference paper, 1 international journal paper. Swati V.Sankpal is currently working as associate professor at D. Y. Patil college of Engineering and Techonology, Kolhapur. She has total 28 years of experience. She has completed her B.E .and M.E.in Electronics from Walchand College of Engineering Sangli and earned her Ph.D. from Shivaji University, Kolhapur. She has published totally 28 national conference papers, 29 international conference papers, 25 international journal papers.Under her guidance three students have completed their P.G.(E.&.TC) and ,three students have submitted their thesis and ten are pursuing.