SlideShare ist ein Scribd-Unternehmen logo
1 von 4
Downloaden Sie, um offline zu lesen
International journal of Engineering, Business and Management (IJEBM) [Vol-1, Issue-1, May-Jun, 2017]
AI Publications ISSN: 2456-7817
www.aipublications.com Page | 15
FPGA Implementation of LDPC Encoder for
Terrestrial Television
S.Akash1
, D. Maria Vinith2
, Dr. S. Ananiah Durai3
1,2
VIT University Campus, Chennai.
3
School of Electronics and Communication VIT University, Chennai-600127, Tamilnadu, India.
Abstract— The increasing data rates in digital television
networks increase the demands on data capacity of the
current transmission channels. Through new standards, the
capacity of existing channels is increased with new methods
of error correction coding and modulation. In this work,
Low Density Parity Check (LDPC) codes are implemented
for their error correcting capability. LDPC is a linear error
correcting code. These linear error correcting codes are
used for transmitting a message over a noisy transmission
channel. LDPC codes are finding increasing use in
applications requiring reliable and highly efficient
information transfer over noisy channels. These codes are
capable of performing near to Shannon limit performance
and have low decoding complexity. LDPC uses parity check
matrix for its encoding and decoding purpose. The main
advantage of the parity check matrix is that it helps in
detecting and correcting errors which is a very important
advantage against noisy channels. This work presents the
design and implementation of a LDPC encoder for
transmission of digital terrestrial television according to
the Chinese DTMB standard. The system is written in
Verilog and is implemented on FPGA. The whole work is
then verified with the help of Matlab modelling.
Keywords— LDPC, BCH, FPGA, DTMB, Scrambler,
LFSR.
I. INTRODUCTION
In digital data transmission or storage systems, messages
transmitted or stored often go through a channel or storage
medium that introduces noise that may corrupt the original
message. Forward error correction (FEC) codes were
introduced in order to solve this problem. In the case of a
data transmission communication system, an encoder is
introduced at the transmitter to encode the message bits by
adding redundancy to the message. This redundancy is
transmitted to the receiver along with the message. At the
receiver, the received message is decoded in hopes of
correcting the errors that may have been introduced during
the transmission through the channel and retrieving the
original message. According to Shannon's theorem [1], no
matter how noisy the communication channel is, there exists
an error correction code that can make the probability of
error small for a transmission rate. In recent years, one of
the most successful types of codes in doing so has been
LDPC codes. LPDC codes were introduced in 1960 by
Gallager. Due to its advantages, it was adopted by many
standards to be used as a FEC for Digital Video
Broadcasting. M.Sakurai [2] has proposed the
implementation of ISDB standard which uses RS coding as
a FEC. Jian-yun Zheng ,Jing Gao [3] have proposed the use
of Turbo coding as the FEC for DVB standard. Among all
the different forward error correcting codes LDPC codes are
found and proved to be the one that achieves maximum
Shannon limit. The Chinese make use of LDPC encoder in
their DTMB standard. The encoder is implemented in
FPGA. Field Programmable Gate Array is a Integrated
Circuit(IC) consisting of configurable logic elements that be
altered as per the requirement. Verilog is a type of HDL
language which is used to implement the design in FPGA.
As opposed to Application Specific Integrated Circuit
(ASIC) FPGA can be reprogrammed after the
manufacturing process as per the requirement. This work
presents the FPGA Implementation of LDPC encoder.
II. BASIC WORKING
The messages which are to transmitted are in digital format,
are given using the switch interface in FPGA. The messages
are scrambled and are sent to the LDPC encoder. The
encoding process is done with the help of parity check
matrix which is generated using Matlab. The messages are
then sent to the BCH encoder. Data packets which are the
output of LDPC encoder when fed to BCH encoder gives
the data in frames.
Fig.1: Basic Block Diagram
International journal of Engineering, Business and Management (IJEBM) [Vol-1, Issue-1, May-Jun, 2017]
AI Publications ISSN: 2456-7817
www.aipublications.com Page | 16
Fig.2: System Block Diagram
The final output is then given to DAC module to convert the
given digital signal to analog for transmission. We can see
the encoded output in the Xilinx software and in the LEDs
present in the FPGA kit.
III. EXISTING METHODOLOGY
In India here we use DVB-T standard. This standard uses
RS encoding as forward error correcting code. With this
encoding algorithm Shannon limit cannot be reached, which
is big disadvantage. It is difficult to implement this encoder
in hardware. The complexity of implementing RS encoder
is more when compared to LDPC encoder. The receiver
complexity is also more. So when comparing both the codes
LDPC is better due its performance and it consumes less
resources.
IV. PROPOSED SYSTEM
To design a LDPC encoder which forms the part of the
Chinese DTMB standard. By achieving Shannon limit with
the help of LDPC codes we will be able to send more
information signals or we can get a better quality picture
like a HD picture all within the same bandwidth.
V. METHODOLOGY
Methodology involves three main stages. The first stage
involves acquiring the input message from the user via
switch interfacing in the FPGA kit. The second stage
involves scrambling the data with the help of Scrambler
unit. The third stage involves encoding the scrambled data
with the help of LPDC and BCH encoder. Lastly the
encoded codeword from the encoder stage is converted to
analog signal using DAC module for transmission.
A. Scrambler Unit:
Scrambler is a device used in telecommunication that helps
in randomizing data.
Scrambler unit is basically a set of LFSR s connected
together, with each having an initial seed value and a logical
operation is present between the registers. In this case we
are using a XOR logic gate and the output is fed back as
input to the first linear feedback shift register. Scrambling
is necessary because the transmitter design does not have
any constraints with the inputs. If a string of zeroes is
obtained it may cause some doubts at the receiver side. So
with scrambler such problems can be eliminated.
B. LDPC Encoder
The first step of LDPC encoding is the generation of Parity
Check Matrix (H matrix). With ‘n’ defined as the total
length of the codeword and ‘k’ defining the number of
message bits. So n-k gives the number of parity bits. With
these basic information we can create the parity check
matrix using Matlab.
H= [In-k | PT
], where I is identity matrix and order of the
overall matrix is (n-k, n)
Generator matrix can be derived from H matrix using
G= [P | Ik], where I is identity matrix and order of overall
matrix is (k, n).
The codeword is derived using the generator matrix. The
parity check matrix is very important since it is used for
error correction and finally retrieve the message back from
the codeword. Parity check matrix is used to find the
syndrome for corresponding error pattern which helps in
getting back the transmitted message without any error.
C. BCH Encoder
The first part of BCH encoder is parallel to serial converter.
The encoded word from the previous encoder is sent as
input to the BCH encoder. The data packets are converted
into frames. The second part of the BCH encoder involves
shift registers. After the parallel to series conversion the bits
are fed as shown below
The last stage of BCH encoder involves serial to parallel
converter. The encoded bits are converted to a parallel
fashion and are displayed in the on board LED s.
D. DAC module
The final block in the whole system is digital to analog
converter. The encoded bits are now converted into analog
signal for transmission. The analog output can be seen in
cathode ray oscilloscope (CRO).
International journal of Engineering, Business and Management (IJEBM) [Vol-1, Issue-1, May-Jun, 2017]
AI Publications ISSN: 2456-7817
www.aipublications.com Page | 17
VI. RESULTS
Fig.3: Codeword Generated in Isim Simulator
Fig.3 Shows the complete output stage by stage when an
input message is entered via the switching interface in the
FPGA board.
Fig.4: RTL Schematic
Fig.4 shows the RTL schematic of the total logic of the
encoder through logic circuit elements.
Fig.5: Technology Schematic
Fig.5 shows the technology schematic i.e. the total logic of
the encoder inside the Xilinx FPGA chip.
Fig.6: Design Summary
Fig.6 shows the hardware utilization of the logic. It shows
the number of slices,flip-flops used.
VII. CONCLUSION AND FUTURE WORK
Thus by implementing LDPC coding in our television
standards we can achieve more transmission rate or reach
Shannon limit i.e. zero error probability. So we will be able
to send more signals or we can get a better quality picture in
the same allocated bandwidth. This is a huge improvement
over other codes. The complexity involved is also less when
compared to other codes. So LDPC encoding is a technique
with high advantages that can be integrated to the standard
we use. The work can be extended by improving the length
of the codes to higher orders and can we can also add a
decoding platform to get back our message.
REFERENCES
[1] C. E. Shannon, A Mathematical Theory of
Communication," Bell system Technical Journal, vol.
27, pp. 379{423 and 623{656, July and October
1948.
[2] M.Sakurai ,(2006), ” Digital television receiver” ,
IEEE Xplore Digital Library
[3] Jian-yun Zheng ,Jing Gao ,(2012),” Turbo coding in
DVB”, IEEE Xplore Digital Library
[4] Jintao Wang, Zhixing Yang and Chanyong Pan
(2006),” A transmitter diversity scheme for DMB
standard” IEEE Xplore Digital Library
[5] A. Mason (2002), “Digital Video Broadcasting
standards for terrestrial and television transmission”
IEEE Xplore Digital Library
International journal of Engineering, Business and Management (IJEBM) [Vol-1, Issue-1, May-Jun, 2017]
AI Publications ISSN: 2456-7817
www.aipublications.com Page | 18
[6] Jian Song and Chao Xhang , (2016) , ” Technical
Review on DTMB standard ” , IEEE Xplore Digital
Library
[7] Fengbo Liang, Liang Pan (2010), “A CRT-Based BCH
Encoding and FPGA Implementation, IEEE Xplore
Digital Library
[8] Dimple Garg, C.P. Sharma,” High throughput FPGA
implementation of Reed-Solomon Encoder for Space
Data Systems” IEEE Xplore Digital Library
[9] C.Anton, G.Serban, A.Mazare,” On a FPGA
implementation of BCH codes” IEEE Xplore Digital
Library.
[10]S. Lin, and D.J. Costello Jr. “Error Control Coding
Fundamentals and Applications”, Prentice - Hall, New
Jersey, 1983
[11]J. G. Proakis,”Digital Communications”, Prentice
Hall, 4th edition, 2005.

Weitere Àhnliche Inhalte

Was ist angesagt?

Jb2415831591
Jb2415831591Jb2415831591
Jb2415831591
IJERA Editor
 
Ebc7fc8ba9801f03982acec158fa751744ca copie
Ebc7fc8ba9801f03982acec158fa751744ca   copieEbc7fc8ba9801f03982acec158fa751744ca   copie
Ebc7fc8ba9801f03982acec158fa751744ca copie
Sourour Kanzari
 
Turbo codes.ppt
Turbo codes.pptTurbo codes.ppt
Turbo codes.ppt
Prasant Barik
 

Was ist angesagt? (20)

Resume_Jayachandra
Resume_JayachandraResume_Jayachandra
Resume_Jayachandra
 
Resume_Jayachandra
Resume_JayachandraResume_Jayachandra
Resume_Jayachandra
 
Performance comparison of eg ldpc codes
Performance comparison of eg ldpc codesPerformance comparison of eg ldpc codes
Performance comparison of eg ldpc codes
 
Jb2415831591
Jb2415831591Jb2415831591
Jb2415831591
 
02 ldpc bit flipping_decoding_dark knight
02 ldpc bit flipping_decoding_dark knight02 ldpc bit flipping_decoding_dark knight
02 ldpc bit flipping_decoding_dark knight
 
Ebc7fc8ba9801f03982acec158fa751744ca copie
Ebc7fc8ba9801f03982acec158fa751744ca   copieEbc7fc8ba9801f03982acec158fa751744ca   copie
Ebc7fc8ba9801f03982acec158fa751744ca copie
 
Proposal
ProposalProposal
Proposal
 
Ldpc based error correction
Ldpc based error correctionLdpc based error correction
Ldpc based error correction
 
Hardware implementation of (63, 51) bch encoder and decoder for wban using lf...
Hardware implementation of (63, 51) bch encoder and decoder for wban using lf...Hardware implementation of (63, 51) bch encoder and decoder for wban using lf...
Hardware implementation of (63, 51) bch encoder and decoder for wban using lf...
 
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)
 
E42032732
E42032732E42032732
E42032732
 
Chaos Encryption and Coding for Image Transmission over Noisy Channels
Chaos Encryption and Coding for Image Transmission over Noisy ChannelsChaos Encryption and Coding for Image Transmission over Noisy Channels
Chaos Encryption and Coding for Image Transmission over Noisy Channels
 
Ff34970973
Ff34970973Ff34970973
Ff34970973
 
FEC-Forward Error Correction for Optics Professionals..www.mapyourtech.com
FEC-Forward Error Correction for Optics Professionals..www.mapyourtech.comFEC-Forward Error Correction for Optics Professionals..www.mapyourtech.com
FEC-Forward Error Correction for Optics Professionals..www.mapyourtech.com
 
Design and implementation of log domain decoder
Design and implementation of log domain decoder Design and implementation of log domain decoder
Design and implementation of log domain decoder
 
Reliability Level List Based Iterative SISO Decoding Algorithm for Block Turb...
Reliability Level List Based Iterative SISO Decoding Algorithm for Block Turb...Reliability Level List Based Iterative SISO Decoding Algorithm for Block Turb...
Reliability Level List Based Iterative SISO Decoding Algorithm for Block Turb...
 
Turbo codes.ppt
Turbo codes.pptTurbo codes.ppt
Turbo codes.ppt
 
Paper id 312201514
Paper id 312201514Paper id 312201514
Paper id 312201514
 
Survey on Error Control Coding Techniques
Survey on Error Control Coding TechniquesSurvey on Error Control Coding Techniques
Survey on Error Control Coding Techniques
 
Generation and Implementation of Barker and Nested Binary codes
Generation and Implementation of Barker and Nested Binary codesGeneration and Implementation of Barker and Nested Binary codes
Generation and Implementation of Barker and Nested Binary codes
 

Ähnlich wie FPGA Implementation of LDPC Encoder for Terrestrial Television

Research Inventy : International Journal of Engineering and Science is publis...
Research Inventy : International Journal of Engineering and Science is publis...Research Inventy : International Journal of Engineering and Science is publis...
Research Inventy : International Journal of Engineering and Science is publis...
researchinventy
 
Turbo encoder and decoder chip design and FPGA device analysis for communicat...
Turbo encoder and decoder chip design and FPGA device analysis for communicat...Turbo encoder and decoder chip design and FPGA device analysis for communicat...
Turbo encoder and decoder chip design and FPGA device analysis for communicat...
International Journal of Reconfigurable and Embedded Systems
 

Ähnlich wie FPGA Implementation of LDPC Encoder for Terrestrial Television (20)

LDPC Encoding and Hamming Encoding
LDPC Encoding and Hamming EncodingLDPC Encoding and Hamming Encoding
LDPC Encoding and Hamming Encoding
 
H017653645
H017653645H017653645
H017653645
 
Research Inventy : International Journal of Engineering and Science is publis...
Research Inventy : International Journal of Engineering and Science is publis...Research Inventy : International Journal of Engineering and Science is publis...
Research Inventy : International Journal of Engineering and Science is publis...
 
Turbo encoder and decoder chip design and FPGA device analysis for communicat...
Turbo encoder and decoder chip design and FPGA device analysis for communicat...Turbo encoder and decoder chip design and FPGA device analysis for communicat...
Turbo encoder and decoder chip design and FPGA device analysis for communicat...
 
Non-binary codes approach on the performance of short-packet full-duplex tran...
Non-binary codes approach on the performance of short-packet full-duplex tran...Non-binary codes approach on the performance of short-packet full-duplex tran...
Non-binary codes approach on the performance of short-packet full-duplex tran...
 
PERFORMANCE ESTIMATION OF LDPC CODE SUING SUM PRODUCT ALGORITHM AND BIT FLIPP...
PERFORMANCE ESTIMATION OF LDPC CODE SUING SUM PRODUCT ALGORITHM AND BIT FLIPP...PERFORMANCE ESTIMATION OF LDPC CODE SUING SUM PRODUCT ALGORITHM AND BIT FLIPP...
PERFORMANCE ESTIMATION OF LDPC CODE SUING SUM PRODUCT ALGORITHM AND BIT FLIPP...
 
GF(q) LDPC encoder and decoder FPGA implementation using group shuffled beli...
GF(q) LDPC encoder and decoder FPGA implementation using  group shuffled beli...GF(q) LDPC encoder and decoder FPGA implementation using  group shuffled beli...
GF(q) LDPC encoder and decoder FPGA implementation using group shuffled beli...
 
Hv3414491454
Hv3414491454Hv3414491454
Hv3414491454
 
Comparative study of_digital_modulation (1)
Comparative study of_digital_modulation (1)Comparative study of_digital_modulation (1)
Comparative study of_digital_modulation (1)
 
Implementation of Algorithms For Multi-Channel Digital Monitoring Receiver
Implementation of Algorithms For Multi-Channel Digital Monitoring ReceiverImplementation of Algorithms For Multi-Channel Digital Monitoring Receiver
Implementation of Algorithms For Multi-Channel Digital Monitoring Receiver
 
Cdma
CdmaCdma
Cdma
 
Design and Implementation of Low Power High Speed Symmetric Decoder Structure...
Design and Implementation of Low Power High Speed Symmetric Decoder Structure...Design and Implementation of Low Power High Speed Symmetric Decoder Structure...
Design and Implementation of Low Power High Speed Symmetric Decoder Structure...
 
A NOVEL APPROACH FOR LOWER POWER DESIGN IN TURBO CODING SYSTEM
A NOVEL APPROACH FOR LOWER POWER DESIGN IN TURBO CODING SYSTEMA NOVEL APPROACH FOR LOWER POWER DESIGN IN TURBO CODING SYSTEM
A NOVEL APPROACH FOR LOWER POWER DESIGN IN TURBO CODING SYSTEM
 
Design and Implementation of an Embedded System for Software DeïŹned Radio
Design and Implementation of an Embedded System for Software DeïŹned RadioDesign and Implementation of an Embedded System for Software DeïŹned Radio
Design and Implementation of an Embedded System for Software DeïŹned Radio
 
Performance Analysis of DRA Based OFDM Data Transmission With Respect to Nove...
Performance Analysis of DRA Based OFDM Data Transmission With Respect to Nove...Performance Analysis of DRA Based OFDM Data Transmission With Respect to Nove...
Performance Analysis of DRA Based OFDM Data Transmission With Respect to Nove...
 
Error control coding techniques
Error control coding techniquesError control coding techniques
Error control coding techniques
 
REDUCED COMPLEXITY QUASI-CYCLIC LDPC ENCODER FOR IEEE 802.11N
REDUCED COMPLEXITY QUASI-CYCLIC LDPC ENCODER FOR IEEE 802.11N REDUCED COMPLEXITY QUASI-CYCLIC LDPC ENCODER FOR IEEE 802.11N
REDUCED COMPLEXITY QUASI-CYCLIC LDPC ENCODER FOR IEEE 802.11N
 
Vlsics08
Vlsics08Vlsics08
Vlsics08
 
simulation of turbo encoding and decoding
simulation of turbo encoding and decodingsimulation of turbo encoding and decoding
simulation of turbo encoding and decoding
 
Implementation of High Speed OFDM Transceiver using FPGA
Implementation of High Speed OFDM Transceiver using FPGAImplementation of High Speed OFDM Transceiver using FPGA
Implementation of High Speed OFDM Transceiver using FPGA
 

Mehr von AI Publications

The Statutory Interpretation of Renewable Energy Based on Syllogism of Britis...
The Statutory Interpretation of Renewable Energy Based on Syllogism of Britis...The Statutory Interpretation of Renewable Energy Based on Syllogism of Britis...
The Statutory Interpretation of Renewable Energy Based on Syllogism of Britis...
AI Publications
 
Analysis of Value Chain of Cow Milk: The Case of Itang Special Woreda, Gambel...
Analysis of Value Chain of Cow Milk: The Case of Itang Special Woreda, Gambel...Analysis of Value Chain of Cow Milk: The Case of Itang Special Woreda, Gambel...
Analysis of Value Chain of Cow Milk: The Case of Itang Special Woreda, Gambel...
AI Publications
 
Minds and Machines: Impact of Emotional Intelligence on Investment Decisions ...
Minds and Machines: Impact of Emotional Intelligence on Investment Decisions ...Minds and Machines: Impact of Emotional Intelligence on Investment Decisions ...
Minds and Machines: Impact of Emotional Intelligence on Investment Decisions ...
AI Publications
 
Growth, Yield and Economic Advantage of Onion (Allium cepa L.) Varieties in R...
Growth, Yield and Economic Advantage of Onion (Allium cepa L.) Varieties in R...Growth, Yield and Economic Advantage of Onion (Allium cepa L.) Varieties in R...
Growth, Yield and Economic Advantage of Onion (Allium cepa L.) Varieties in R...
AI Publications
 
A retrospective study on ovarian cancer with a median follow-up of 36 months ...
A retrospective study on ovarian cancer with a median follow-up of 36 months ...A retrospective study on ovarian cancer with a median follow-up of 36 months ...
A retrospective study on ovarian cancer with a median follow-up of 36 months ...
AI Publications
 
The Impacts of Viral Hepatitis on Liver Enzymes and Bilrubin
The Impacts of Viral Hepatitis on Liver Enzymes and BilrubinThe Impacts of Viral Hepatitis on Liver Enzymes and Bilrubin
The Impacts of Viral Hepatitis on Liver Enzymes and Bilrubin
AI Publications
 

Mehr von AI Publications (20)

The Statutory Interpretation of Renewable Energy Based on Syllogism of Britis...
The Statutory Interpretation of Renewable Energy Based on Syllogism of Britis...The Statutory Interpretation of Renewable Energy Based on Syllogism of Britis...
The Statutory Interpretation of Renewable Energy Based on Syllogism of Britis...
 
Enhancement of Aqueous Solubility of Piroxicam Using Solvent Deposition System
Enhancement of Aqueous Solubility of Piroxicam Using Solvent Deposition SystemEnhancement of Aqueous Solubility of Piroxicam Using Solvent Deposition System
Enhancement of Aqueous Solubility of Piroxicam Using Solvent Deposition System
 
Analysis of Value Chain of Cow Milk: The Case of Itang Special Woreda, Gambel...
Analysis of Value Chain of Cow Milk: The Case of Itang Special Woreda, Gambel...Analysis of Value Chain of Cow Milk: The Case of Itang Special Woreda, Gambel...
Analysis of Value Chain of Cow Milk: The Case of Itang Special Woreda, Gambel...
 
Minds and Machines: Impact of Emotional Intelligence on Investment Decisions ...
Minds and Machines: Impact of Emotional Intelligence on Investment Decisions ...Minds and Machines: Impact of Emotional Intelligence on Investment Decisions ...
Minds and Machines: Impact of Emotional Intelligence on Investment Decisions ...
 
Lung cancer: “Epidemiology and risk factors”
Lung cancer: “Epidemiology and risk factors”Lung cancer: “Epidemiology and risk factors”
Lung cancer: “Epidemiology and risk factors”
 
Further analysis on Organic agriculture and organic farming in case of Thaila...
Further analysis on Organic agriculture and organic farming in case of Thaila...Further analysis on Organic agriculture and organic farming in case of Thaila...
Further analysis on Organic agriculture and organic farming in case of Thaila...
 
Current Changes in the Role of Agriculture and Agri-Farming Structures in Tha...
Current Changes in the Role of Agriculture and Agri-Farming Structures in Tha...Current Changes in the Role of Agriculture and Agri-Farming Structures in Tha...
Current Changes in the Role of Agriculture and Agri-Farming Structures in Tha...
 
Growth, Yield and Economic Advantage of Onion (Allium cepa L.) Varieties in R...
Growth, Yield and Economic Advantage of Onion (Allium cepa L.) Varieties in R...Growth, Yield and Economic Advantage of Onion (Allium cepa L.) Varieties in R...
Growth, Yield and Economic Advantage of Onion (Allium cepa L.) Varieties in R...
 
Evaluation of In-vitro neuroprotective effect of Ethanolic extract of Canariu...
Evaluation of In-vitro neuroprotective effect of Ethanolic extract of Canariu...Evaluation of In-vitro neuroprotective effect of Ethanolic extract of Canariu...
Evaluation of In-vitro neuroprotective effect of Ethanolic extract of Canariu...
 
Neuroprotective Herbal Plants - A Review
Neuroprotective Herbal Plants - A ReviewNeuroprotective Herbal Plants - A Review
Neuroprotective Herbal Plants - A Review
 
A phytochemical and pharmacological review on canarium solomonense
A phytochemical and pharmacological review on canarium solomonenseA phytochemical and pharmacological review on canarium solomonense
A phytochemical and pharmacological review on canarium solomonense
 
Influences of Digital Marketing in the Buying Decisions of College Students i...
Influences of Digital Marketing in the Buying Decisions of College Students i...Influences of Digital Marketing in the Buying Decisions of College Students i...
Influences of Digital Marketing in the Buying Decisions of College Students i...
 
A Study on Performance of the Karnataka State Cooperative Agriculture & Rural...
A Study on Performance of the Karnataka State Cooperative Agriculture & Rural...A Study on Performance of the Karnataka State Cooperative Agriculture & Rural...
A Study on Performance of the Karnataka State Cooperative Agriculture & Rural...
 
Imaging of breast hamartomas
Imaging of breast hamartomasImaging of breast hamartomas
Imaging of breast hamartomas
 
A retrospective study on ovarian cancer with a median follow-up of 36 months ...
A retrospective study on ovarian cancer with a median follow-up of 36 months ...A retrospective study on ovarian cancer with a median follow-up of 36 months ...
A retrospective study on ovarian cancer with a median follow-up of 36 months ...
 
More analysis on environment protection and sustainable agriculture - A case ...
More analysis on environment protection and sustainable agriculture - A case ...More analysis on environment protection and sustainable agriculture - A case ...
More analysis on environment protection and sustainable agriculture - A case ...
 
Assessment of Growth and Yield Performance of Twelve Different Rice Varieties...
Assessment of Growth and Yield Performance of Twelve Different Rice Varieties...Assessment of Growth and Yield Performance of Twelve Different Rice Varieties...
Assessment of Growth and Yield Performance of Twelve Different Rice Varieties...
 
Cultivating Proactive Cybersecurity Culture among IT Professional to Combat E...
Cultivating Proactive Cybersecurity Culture among IT Professional to Combat E...Cultivating Proactive Cybersecurity Culture among IT Professional to Combat E...
Cultivating Proactive Cybersecurity Culture among IT Professional to Combat E...
 
The Impacts of Viral Hepatitis on Liver Enzymes and Bilrubin
The Impacts of Viral Hepatitis on Liver Enzymes and BilrubinThe Impacts of Viral Hepatitis on Liver Enzymes and Bilrubin
The Impacts of Viral Hepatitis on Liver Enzymes and Bilrubin
 
Determinants of Women Empowerment in Bishoftu Town; Oromia Regional State of ...
Determinants of Women Empowerment in Bishoftu Town; Oromia Regional State of ...Determinants of Women Empowerment in Bishoftu Town; Oromia Regional State of ...
Determinants of Women Empowerment in Bishoftu Town; Oromia Regional State of ...
 

KĂŒrzlich hochgeladen

result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
Tonystark477637
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Christo Ananth
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
sivaprakash250
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Dr.Costas Sachpazis
 

KĂŒrzlich hochgeladen (20)

result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
(INDIRA) Call Girl Bhosari Call Now 8617697112 Bhosari Escorts 24x7
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 

FPGA Implementation of LDPC Encoder for Terrestrial Television

  • 1. International journal of Engineering, Business and Management (IJEBM) [Vol-1, Issue-1, May-Jun, 2017] AI Publications ISSN: 2456-7817 www.aipublications.com Page | 15 FPGA Implementation of LDPC Encoder for Terrestrial Television S.Akash1 , D. Maria Vinith2 , Dr. S. Ananiah Durai3 1,2 VIT University Campus, Chennai. 3 School of Electronics and Communication VIT University, Chennai-600127, Tamilnadu, India. Abstract— The increasing data rates in digital television networks increase the demands on data capacity of the current transmission channels. Through new standards, the capacity of existing channels is increased with new methods of error correction coding and modulation. In this work, Low Density Parity Check (LDPC) codes are implemented for their error correcting capability. LDPC is a linear error correcting code. These linear error correcting codes are used for transmitting a message over a noisy transmission channel. LDPC codes are finding increasing use in applications requiring reliable and highly efficient information transfer over noisy channels. These codes are capable of performing near to Shannon limit performance and have low decoding complexity. LDPC uses parity check matrix for its encoding and decoding purpose. The main advantage of the parity check matrix is that it helps in detecting and correcting errors which is a very important advantage against noisy channels. This work presents the design and implementation of a LDPC encoder for transmission of digital terrestrial television according to the Chinese DTMB standard. The system is written in Verilog and is implemented on FPGA. The whole work is then verified with the help of Matlab modelling. Keywords— LDPC, BCH, FPGA, DTMB, Scrambler, LFSR. I. INTRODUCTION In digital data transmission or storage systems, messages transmitted or stored often go through a channel or storage medium that introduces noise that may corrupt the original message. Forward error correction (FEC) codes were introduced in order to solve this problem. In the case of a data transmission communication system, an encoder is introduced at the transmitter to encode the message bits by adding redundancy to the message. This redundancy is transmitted to the receiver along with the message. At the receiver, the received message is decoded in hopes of correcting the errors that may have been introduced during the transmission through the channel and retrieving the original message. According to Shannon's theorem [1], no matter how noisy the communication channel is, there exists an error correction code that can make the probability of error small for a transmission rate. In recent years, one of the most successful types of codes in doing so has been LDPC codes. LPDC codes were introduced in 1960 by Gallager. Due to its advantages, it was adopted by many standards to be used as a FEC for Digital Video Broadcasting. M.Sakurai [2] has proposed the implementation of ISDB standard which uses RS coding as a FEC. Jian-yun Zheng ,Jing Gao [3] have proposed the use of Turbo coding as the FEC for DVB standard. Among all the different forward error correcting codes LDPC codes are found and proved to be the one that achieves maximum Shannon limit. The Chinese make use of LDPC encoder in their DTMB standard. The encoder is implemented in FPGA. Field Programmable Gate Array is a Integrated Circuit(IC) consisting of configurable logic elements that be altered as per the requirement. Verilog is a type of HDL language which is used to implement the design in FPGA. As opposed to Application Specific Integrated Circuit (ASIC) FPGA can be reprogrammed after the manufacturing process as per the requirement. This work presents the FPGA Implementation of LDPC encoder. II. BASIC WORKING The messages which are to transmitted are in digital format, are given using the switch interface in FPGA. The messages are scrambled and are sent to the LDPC encoder. The encoding process is done with the help of parity check matrix which is generated using Matlab. The messages are then sent to the BCH encoder. Data packets which are the output of LDPC encoder when fed to BCH encoder gives the data in frames. Fig.1: Basic Block Diagram
  • 2. International journal of Engineering, Business and Management (IJEBM) [Vol-1, Issue-1, May-Jun, 2017] AI Publications ISSN: 2456-7817 www.aipublications.com Page | 16 Fig.2: System Block Diagram The final output is then given to DAC module to convert the given digital signal to analog for transmission. We can see the encoded output in the Xilinx software and in the LEDs present in the FPGA kit. III. EXISTING METHODOLOGY In India here we use DVB-T standard. This standard uses RS encoding as forward error correcting code. With this encoding algorithm Shannon limit cannot be reached, which is big disadvantage. It is difficult to implement this encoder in hardware. The complexity of implementing RS encoder is more when compared to LDPC encoder. The receiver complexity is also more. So when comparing both the codes LDPC is better due its performance and it consumes less resources. IV. PROPOSED SYSTEM To design a LDPC encoder which forms the part of the Chinese DTMB standard. By achieving Shannon limit with the help of LDPC codes we will be able to send more information signals or we can get a better quality picture like a HD picture all within the same bandwidth. V. METHODOLOGY Methodology involves three main stages. The first stage involves acquiring the input message from the user via switch interfacing in the FPGA kit. The second stage involves scrambling the data with the help of Scrambler unit. The third stage involves encoding the scrambled data with the help of LPDC and BCH encoder. Lastly the encoded codeword from the encoder stage is converted to analog signal using DAC module for transmission. A. Scrambler Unit: Scrambler is a device used in telecommunication that helps in randomizing data. Scrambler unit is basically a set of LFSR s connected together, with each having an initial seed value and a logical operation is present between the registers. In this case we are using a XOR logic gate and the output is fed back as input to the first linear feedback shift register. Scrambling is necessary because the transmitter design does not have any constraints with the inputs. If a string of zeroes is obtained it may cause some doubts at the receiver side. So with scrambler such problems can be eliminated. B. LDPC Encoder The first step of LDPC encoding is the generation of Parity Check Matrix (H matrix). With ‘n’ defined as the total length of the codeword and ‘k’ defining the number of message bits. So n-k gives the number of parity bits. With these basic information we can create the parity check matrix using Matlab. H= [In-k | PT ], where I is identity matrix and order of the overall matrix is (n-k, n) Generator matrix can be derived from H matrix using G= [P | Ik], where I is identity matrix and order of overall matrix is (k, n). The codeword is derived using the generator matrix. The parity check matrix is very important since it is used for error correction and finally retrieve the message back from the codeword. Parity check matrix is used to find the syndrome for corresponding error pattern which helps in getting back the transmitted message without any error. C. BCH Encoder The first part of BCH encoder is parallel to serial converter. The encoded word from the previous encoder is sent as input to the BCH encoder. The data packets are converted into frames. The second part of the BCH encoder involves shift registers. After the parallel to series conversion the bits are fed as shown below The last stage of BCH encoder involves serial to parallel converter. The encoded bits are converted to a parallel fashion and are displayed in the on board LED s. D. DAC module The final block in the whole system is digital to analog converter. The encoded bits are now converted into analog signal for transmission. The analog output can be seen in cathode ray oscilloscope (CRO).
  • 3. International journal of Engineering, Business and Management (IJEBM) [Vol-1, Issue-1, May-Jun, 2017] AI Publications ISSN: 2456-7817 www.aipublications.com Page | 17 VI. RESULTS Fig.3: Codeword Generated in Isim Simulator Fig.3 Shows the complete output stage by stage when an input message is entered via the switching interface in the FPGA board. Fig.4: RTL Schematic Fig.4 shows the RTL schematic of the total logic of the encoder through logic circuit elements. Fig.5: Technology Schematic Fig.5 shows the technology schematic i.e. the total logic of the encoder inside the Xilinx FPGA chip. Fig.6: Design Summary Fig.6 shows the hardware utilization of the logic. It shows the number of slices,flip-flops used. VII. CONCLUSION AND FUTURE WORK Thus by implementing LDPC coding in our television standards we can achieve more transmission rate or reach Shannon limit i.e. zero error probability. So we will be able to send more signals or we can get a better quality picture in the same allocated bandwidth. This is a huge improvement over other codes. The complexity involved is also less when compared to other codes. So LDPC encoding is a technique with high advantages that can be integrated to the standard we use. The work can be extended by improving the length of the codes to higher orders and can we can also add a decoding platform to get back our message. REFERENCES [1] C. E. Shannon, A Mathematical Theory of Communication," Bell system Technical Journal, vol. 27, pp. 379{423 and 623{656, July and October 1948. [2] M.Sakurai ,(2006), ” Digital television receiver” , IEEE Xplore Digital Library [3] Jian-yun Zheng ,Jing Gao ,(2012),” Turbo coding in DVB”, IEEE Xplore Digital Library [4] Jintao Wang, Zhixing Yang and Chanyong Pan (2006),” A transmitter diversity scheme for DMB standard” IEEE Xplore Digital Library [5] A. Mason (2002), “Digital Video Broadcasting standards for terrestrial and television transmission” IEEE Xplore Digital Library
  • 4. International journal of Engineering, Business and Management (IJEBM) [Vol-1, Issue-1, May-Jun, 2017] AI Publications ISSN: 2456-7817 www.aipublications.com Page | 18 [6] Jian Song and Chao Xhang , (2016) , ” Technical Review on DTMB standard ” , IEEE Xplore Digital Library [7] Fengbo Liang, Liang Pan (2010), “A CRT-Based BCH Encoding and FPGA Implementation, IEEE Xplore Digital Library [8] Dimple Garg, C.P. Sharma,” High throughput FPGA implementation of Reed-Solomon Encoder for Space Data Systems” IEEE Xplore Digital Library [9] C.Anton, G.Serban, A.Mazare,” On a FPGA implementation of BCH codes” IEEE Xplore Digital Library. [10]S. Lin, and D.J. Costello Jr. “Error Control Coding Fundamentals and Applications”, Prentice - Hall, New Jersey, 1983 [11]J. G. Proakis,”Digital Communications”, Prentice Hall, 4th edition, 2005.