SlideShare uma empresa Scribd logo
1 de 9
Baixar para ler offline
International
OPEN ACCESS Journal
Of Modern Engineering Research (IJMER)
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 63|
FPGA implementation of universal modulator using CORDIC
algorithm for communication applications
M. Satheesh Kumar1
, S. Nagi Reddy, M.Tech2
1
(ECE Department, TKREC, Hyderabad, India)
2
(ECE Department, Assistant Professor of TKREC, Hyderabad, India).
I. Introduction
Coordinate Rotation Digital Computer (CORDIC) algorithms provide an efficient approach for
rotating vectors in a plane by simple shift-add operations. Besides offering a simple mechanism for computing
the magnitude and phase-angle of an input vector, they are popularly used to perform complex multiplications
and estimation of various functions. The conventional CORDIC algorithms are used to handle rotations only in
the range of [-99.70
,99.70
] . Moreover, they are serial in nature and require a ROM to store the look-up table
and hardware-expensive barrel shifters. Research on enhancements to the conventional CORDIC has proceeded
primarily intwo directions. One of these is to obtain a high speed solution while the other is on careful handling
of scale factors for high precision implementations. The authors in describe a virtually scaling-free CORDIC
rotator which requires a constant scale-factor. A solution that scales the vector after every iteration, reduces the
number of iterations and expands the range of rotation angles is presented in. A CORDIC architecture that
suggests a circuit for scale factor correction is presented in some efforts have also been made to implement the
CORDIC architectures on an FPGA.
The contributions of this paper are as follows: We present two highly area-efficient CORDIC
algorithms with an angular resolution of. Convergence of both the algorithms is established theoretically. The
algorithms cover the entire range of angles [-180 0
,180 0
]. Further, the FPGA implementations consume a
substantially lower percentage of device components than other implementations.
II. Cordic Technique
Given a complex value:C=IC+jQC
We will create a rotated value:C’=IC’+jQc
by multiplying by a rotation value:R=Ir+jQ
Fig.1 Rotation vector
Abstract: The modern communication systems and software radio based applications demands fully
digital receivers, consisting of only an antenna and a fully programmable circuit with digital modulators
and demodulators. A basic communication system’s transmitter modulates the amplitude, phase or
frequency proportional to the signal being transmitted. An efficient solution (that doesn’t require large
tables/memory) for realizing universal modulator is CORDIC (CO-ordinate Rotation Digital Computer)
algorithm. The CORDIC algorithm is used in the rotation mode, to convert the coordinates from polar
mode to rectangular mode. The radius vector(r) and angle (θ) of a CORDIC processor can be
programmed to generate the ASK, PSK and FSK signals. Modelsim simulator tool from mentor graphics
will be used for functional simulation and verification of the modulator. The Xilinx synthesis Tools (XST)
will be used to synthesize the complete modulator on Xilinx Spartan 3E family FPGA (XC3S500E). Xilinx
placement & routing tools will be used for backed, design optimization and I/O routing.
Keywords: CORDIC, ASK, PSK, FSK, FPGA.
FPGA implementation of universal modulator using CORDIC algorithm for communication
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 64|
How multiplier less:
1. Recall that when you multiply a pair of complex numbers, their phases (angles) add and their magnitudes
multiply. Similarly, when you multiply one complex number by the conjugate of the other, the phase of the
conjugated one is subtracted (though the magnitudes still multiply).
Therefore:
To add R’s phase to C: To subtract phase from C:
C' = C·R
Ic' = Ic·Ir-Qc·Qr
Qc' = Qc·Ir+Ic·Qr
2. To rotate by +90 degrees, multiply by R = 0 + j1. Similarly, to rotate by -90 degrees, multiply by R = 0 - j1.
If you go through the Algebra above, the net effect is:
To add 90 degrees Multiply by R=0+j1 To Subtract 90 degrees multiply by R=0-j1
3. To rotate by phases of less than 90 degrees, we will be multiplying by numbers of the form "R = 1 +/- jK". K
will be decreasing powers of two, starting with 2^0 = 1.0. Therefore, K = 1.0, 0.5, 0.25, etc. (We use the symbol
"L" to designate the power of two itself: 0, -1,-2,etc.) Since the phase of a complex number "I + jQ" isatan(Q/I),
the phase of "1 + jK" is atan(K). Likewise, the phase of "1 - jK" = atan(-K) = -atan(K).To add phases we use
"R = 1 + jK"; to subtract phases we use "R = 1 - jK". Since the real part of this, Ir, is equal to 1, we can simplify
our table of equations to add and subtract phases for the special case of CORDIC multiplications to:
To add a phaseMultiply by R=1+Jk To add a phaseMultiply by R=1+Jk
Table1 Table1. For an accumulator of 3 bits (j=3) controlled with an input of P = 3 and P =2
4. Each rotation has a magnitude greater than 1.0. That isn't desirable, but it's the price we pay for using
rotations of the form "1 + jK". The "CORDIC Gain" column in the table is simply a "cumulative magnitude"
calculated by multiplying the current magnitude by the previous magnitude. Notice that it converges to about
1.647; however, the actual CORDIC Gain depends on how many iterations we do. (It doesn't depend on whether
we add or subtract phases, because the magnitudes multiply either way).
C' = C·R*
Ic' = Ic·Ir+Qc·Qr
Qc' = Qc·Ir-Ic·Qr
IC’ = QC
QC’ =-IC (negate I, then swap)
IC’ = -QC
QC’ =IC (negate Q,then swap)
Ic'=Ic+K·Qc=Ic + (2^-L)·Qc
Qc'=Qc-K·Ic = Qc- (2^-L)·Ic
Ic' = Ic-K·Qc =Ic(2^L)·Qc
Qc'=Qc+K·Ic=Qc+(2^-L)·Ic
L K=2^-L R=1+jK Phase of R in
degrees=atan(k)
Magnitude of R CORDIC Gain
0 1.0 1 + j1.0 45.00000 1.41421356 1.414213562
1 0.5 1+j0.5 26.56505 1.11803399 1.581138830
2 0.25 1 + j0.25 14.03624 1.03077641 1.629800601
3 0.125 1 + j0.125 7.12502 1.00778222 1.642484066
4 0.625 1 + j0.0625 3.57633 1.00195122 1.645688916
5 0.03125 1 + j0.031250 1.78991 1.00048816 1.646492279
6 0.015625 1 + j0.015625 0.89517 1.00012206 1.646693254
7 0.007813 1 + j0.007813 0.44761 1.00003052 1.646743507
….. ………. ………….. ……………... ……………… ………………..
FPGA implementation of universal modulator using CORDIC algorithm for communication
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 65|
III. Cordic Basic Issues
 Since we're using powers of two for the K values, we can just shift and add our binary numbers. That's
why the CORDIC algorithm doesn't need any multiplies.
 The sum of the phases in the table up to L = 3 exceeds 92 degrees, so we can rotate a complex number by
+/- 90 degrees as long as we do four or more "R = 1 +/- jK" rotations. Put that together with the ability to
rotate +/-90 degrees using "R = 0 +/- j1", and you can rotate a full +/-180 degrees.
 You can see that starting with a phase of 45 degrees, the phase of each successive R multiplier is a little
over half of the phase of the previous R. That's the key to understanding CORDIC: we will be doing a
"binary search" on phase by adding or subtracting successively smaller phases to reach some "target"
phase.
 Each rotation has a magnitude greater than 1.0. That isn't desirable, but it's the price we pay for using
rotations of the form "1 + jK". The "CORDIC Gain" column in the table is simply a "cumulative
magnitude" calculated by multiplying the current magnitude by the previous magnitude. Notice that it
converges to about 1.647; however, the actual CORDIC Gain depends on how many iterations we do. (It
doesn't depend on whether we add or subtract phases, because the magnitudes multiply either way.)
Modes of operation:
Basic mode: I and Q carrier signals for a chosen freq value
Modulator mode: producing ASK, FSK and PSK signals.
11-bit Control word format
M M F F F F F F F K K
MM --- Mode of operation 00 – Basic mode 01 – Binary Modulator mode 10 – Mary modulator mode
FFFFFFF – 7-bit Freq word KK (in Binary modulation mode) 00 – Amplitude shift keying 01 –Phase shift
keying 10 – Freq shift keying KK(in M-ary modulation mode) 00 – 4 level QAM 01 – QPSK 10– OQPSK
11-8psk.
IV. Block Diagram of Cordic Based Universal Modulator Realization
Fig.2 block diagram of CORDIC
FPGA implementation of universal modulator using CORDIC algorithm for communication
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 66|
IV (i) Basic Blocks of Universal Modulator
All the blocks are connected with common clock and reset signals. The delta phase value decides the
phase increment for each clock pulse. Hence decides the resulting signal frequency. The Frequency modulating
instantaneous value is added to the delta phase value which causes instant-aneous change in frequency. Due to
the digital nature of the modulator only at each clock tick the modulating signal value shall affect the resulting
frequency.The outputs of the Look Up Tables are given to the input lines a 4 to 1 Multiplexer.This multiplexer
connects one of the inputs to the output depending on the select lines. The output of Multiplexer consists the 8
amplitude bits which is the final output in case required modulation schemes are FM or PM. In case of
Amplitude modulation, the output of multiplexer is multiplied with instaneous modulating signals. CORDIC
engine isused for phase to amplitude conversion required for the generation of cosine and sin functions.
In three modulation schemes if modulating signal is analog in nature then anappropriate Analog
toDigital converter is required to convert into 8 bitdigital output. From the figure the basic blocks in DDFS can
be identified as PIPO registers, adders, look Up Tables, CORDIC engine and other combinational circuits.
IV (ii) DDFS Basic Principle:
Direct Digital Frequency Synthesizer is a technique to produce desired output wave-forms with full
digital control. Direct digital synthesis (DDS) is becoming increasingly popular as a technique for fre-quency
synthesis, especially if high frequency resolution and fast switching between frequencies over a large bandwidth
are required.
The direct digital frequency synthesizer is shown in a simplified form in figure 4. The DDFS has the following
basic blocks:
(1) Frequency register
(2) adder and phase register
(3) phase to amplitude converter (conventionally a sine ROM)
(4) digital to analog converter and low pass filter
The phase value is generated using the modulo 2j
overflowing property of a j-bit phase accumulator. The rate
of the overflows is the output frequency
𝑓𝑜𝑢𝑡 =
∆𝑃 𝑓 𝑐𝑙𝑘
2 𝑗 ∀ 𝑓𝑐𝑙𝑘 ≤
𝑓 𝑐𝑙𝑘
2
-- (1.1)
Where ∆P is the phase increment word, j is the number of phase accumulator bits, fclkis the clock frequency and
foutis the output frequency. The constraint for maximum value of fout in the above equation comes from the
sampling theorem.
The phase increment word in (1.1) is an integer, therefore the frequency resolution is found by setting ∆P = 1.
∆ 𝑓 = (𝑓𝑐𝑙𝑘 )/2𝑗
--- (1.2)
Fig.3: block diagram of DDFS
In the ideal case with no phase and amplitude quantization, the output sequence of the table is given by
sin(2π
𝑃(𝑛)
2 𝑗 )--- --(1.3)
FPGA implementation of universal modulator using CORDIC algorithm for communication
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 67|
Where P(n) is a (the j-bit) phase register value (at the nth clock period). The numerical period of the phase
accumulator output sequence is defined as the minimum value of Pe for which P(n)=P(n+Pe) for all n. The
numerical period of the phase accumulator output sequence is
𝑝𝑒 =
2 𝑗
𝐺𝐶𝐷(∆𝑝,2 𝑗 )
----- (1.4)
Table 2.For an accumulator of 3 bits (j=3) controlled with an input of P = 3 and P =2
IV (iii) DFS Architecture for Modulation capability:
It is simple to add modulation capabilities to the DDS, because the DDS is a digital signal processing
device. In the DDS it is possible to modulate numerically all three wave form parameters.
S(n)=A(n)sin (2(∆P(n)+P(n))) ---(1.5)
Fig.4 DDS architecture with modulation capabilities
V. Modulation Command Processor Chipscope Results
The Modulation command processor implemented are for carrying out digital versions of frequency
modulation, phase modulation and amplitude modulation. For all these three modulations the digital 8 bit
modulating signal is expected. In case if the modulating signal is analog that needs to be converted in to 8 bit
digital by appropriate Analog to Digital Converter.
The frequency modulation is carried out by frequency modulation controller which is simply an adder
adding the phase increment value input for DDFS and instantaneous modulating signal value. Since the phase
increment value or delta phase value is proportional to instantaneous frequency of output signal of DDFS,
controlling that parameter leads to Frequency modulation. The phase modulation controller adds the output of
phase accumulator to the instantaneous value of phase modulating signal. The resulting sum is fed tothe LUTs
to produce amplitude bits corresponding to the input phase bits. The amplitude modulator planned in this project
is analogous to product modulator. The amplitudebits at the output of multiplexer are multiplied with
instantaneous amplitude of modulating signal.
To verify the modulation effects from these modulation controllers, these blocks should work in
complete DDFS module; hence the resulting outputs for three types of modulations are presented. The Chip
Scope Pro Analyzer tool interfaces directly to the ICON, ILA, IBA/OPB ,IBA/PLB, VIO, and ATC2 cores
(collectively called the Chip Scope Pro cores). You can configure your device, choose triggers, setup the
console, and view the results of the capture on the fly. The data views and triggers can be manipulated in many
ways, providing an easy and intuitive interface to determine the functionality of the design.
Accumulator
output ∆P=3
and j=3
Carry
output
Accumulator
output ∆p=2
and j=3
Carry
output
000 (0) 1 Cycle
begins
000 (0) 1 Cycle
begins
011 (3) 0 010(2) 0
110(6) 0 100(4) 0
001(1) 1 110(6) 0
100(4) 0 000 (0) 1
FPGA implementation of universal modulator using CORDIC algorithm for communication
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 68|
The waveforms obtained by the Chip Scope Pro Analyzer are shown in the figures
Put the slide switches in 0100 position (MM=01 and KK=00) to get ASK
Modulating signal (1 bit data) Fig: 5 ASK CHIPSCOPE RESULT
Put the slide switches in 0101 position (MM=01 and KK=01) to get PSK
Modulating signal (1 bit data) Fig: 6 PSK CHIPSCOPE RESULT
FPGA implementation of universal modulator using CORDIC algorithm for communication
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 69|
Put the slide switches in 0110 position (MM=01 and KK=10) to get FSK
Modulating signal (1 bit data ) Fig: 7 FSK CHIPSCOPE RESULT
Put the slide switches in 1001 position (MM=10 and KK=01) to get QPSK (change the samples size to 2048)
Modulating signal (1 bit data ) Fig: 8 QPSK CHIPSCOPE RESULT
VI. Applications
 Universal modulator is highly preferred option in instrumentation for signal generation and frequency
sweep etc.
 Universal modulator can be efficiently used in several digital modulation schemes suchas FSK, PSK,
ASK, QPSK, OPQPSK, PI/QPSK, QAM and 8-bitPSK.
 Universal modulator has been used in universal HAM radio/generator. Universal modulator is capable
of well controlled, rapid changes in frequency.
ADVANTAGE AND DISADVANTAGES
 High frequency resolution and accuracy.
 Fast switching between frequencies over a large bandwidth.
 Compared to LUT method, it takes less area.
 FPGA hardware can give high speed solution in comparison with software approach but not in
comparison with ASIC.
FPGA implementation of universal modulator using CORDIC algorithm for communication
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 70|
TOOLS AND HARD WARE
 Simulation software -Modelsim Xilinx Edition (MXE)
 Synthesis, P&R - Xilinx ISE
 On chip verification - Xilinx Chip scope
 Hardware– Xilinx Spartan 3 Family FPGA board
VII. FPGA Design and Programming
To define the behavior of the FPGA, the user provides a hardware description language (HDL) or
a schematic design. The HDL form is more suited to work with large structures because it's possible to just
specify them numerically rather than having to draw every piece by hand. However, schematic entry can allow
for easier visualization of a design.Once the design and validation process is complete, the binary file generated
(also using the FPGA company's proprietary software) is used to (re)configure the FPGA.
VIII. Conclusion
Our CORDIC Algorithm implementation has efficient area utilization as compared to LUT based
methods. But, it is slower than LUT based implementation.FPGA based DDFS is highly useful in semi-custom
VLSI chips, FPGA based VLSI solutions, signal processing cards, Instrumentation and Digital communications.
The present work shows basic DDFS implementation proving the design by synthesis on FPGA. The timing
analysis shows that high values of output frequencies can be achieved with FPGA based design. If higher end
FPGAs is used then very high bandwidth DDFS can be implemented efficiently. CORDIC Algorithm is
successfully implemented in VHDL, which helped to generate ASK, PSK, FSK&QAM signals. Utilizing
378flip flops/latches,432 four input LUTs,17 Bonded IOBs ,94 Shift registers ,17 Block RAMs,2 MUXS in
resource of XC3S500E320. Our project on CORDIC algorithm works with frequency 25.475MHz.it is
minimum input arrival time before clock 4.808ns, maximum output required time after clock 14.719ns and
maximum combinational path delay 1.975ns with minimum power dissipation of 87.66 mWatts.
.REFERENCES
[1.] J. Volder, The CORDIC trigonometric computing technique, IRE Transactions on
[2.] Electronic Computers, Vol. EC-8, 1959, pp. 330-334.
[3.] J.S. Walther, A unified algorithm for elementary functions, Proceedings of 38th Spring Joint Computer
Conference, 1971,pp. 379-385.
[4.] A Novel CRODIC Based Unified Architecture for DCT and IDCT international conference paper 2012.
[5.] A VLSI Implementation of Logarithmic and Exponential Functons Using a Novel Parabolic synthesis
methodology Compared To The CORDIC Algorithm Conference Paper 2011.
[6.] R. Andraka, A survey of CORDIC algorithms for FPGA-based computers, Proceedings of ACM/SIGDA Sixth
International Symposium on Field Programmable Gate Arrays, 1998, pp.191-200.
[7.] Efficient CORDIC Algorithms and Architectures for Low Area and High Throughput Implementation IEEE
paper2009.
[8.] A VLSI Implementation of Logarithmic and Exponential Functions Using a Novel Parboil Synthesis
Methodology Compared to the CORDIC Algorithms IEEE paper2011.
[9.] M.G.B. Sumumanasena, ”Ascale factor correction scheme for the CORDIC Algorithm,”IEEE paoer 2008.
[10.] A direct digital frequency synthesis system for Low Power Communications by Alistair Mcewen,sunay shah and
steve Collin, department of engineering science University Of Oxford Parks Road Oxford UK.
FPGA implementation of universal modulator using CORDIC algorithm for communication
| IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 71|
M.SATHEESH KUMAR S. NAGI REDDY, M. Tech
Dept of ECE, TKREC, Hyderabad Asst.Prof & in charge polytechnic
College, TKREC,Hyderabad.

Mais conteúdo relacionado

Mais procurados

High Speed Carryselect Adder
High Speed Carryselect AdderHigh Speed Carryselect Adder
High Speed Carryselect Adderijsrd.com
 
DESIGN AND IMPLEMENTATION OF LOW POWER ALU USING CLOCK GATING AND CARRY SELEC...
DESIGN AND IMPLEMENTATION OF LOW POWER ALU USING CLOCK GATING AND CARRY SELEC...DESIGN AND IMPLEMENTATION OF LOW POWER ALU USING CLOCK GATING AND CARRY SELEC...
DESIGN AND IMPLEMENTATION OF LOW POWER ALU USING CLOCK GATING AND CARRY SELEC...IAEME Publication
 
Design and Verification of Area Efficient Carry Select Adder
Design and Verification of Area Efficient Carry Select AdderDesign and Verification of Area Efficient Carry Select Adder
Design and Verification of Area Efficient Carry Select Adderijsrd.com
 
Small Signal Modelling and Controller Design of Boost Converter using MATLAB
Small Signal Modelling and Controller Design of Boost Converter using MATLABSmall Signal Modelling and Controller Design of Boost Converter using MATLAB
Small Signal Modelling and Controller Design of Boost Converter using MATLABPremier Publishers
 
Area Delay Power Efficient and Implementation of Modified Square-Root Carry S...
Area Delay Power Efficient and Implementation of Modified Square-Root Carry S...Area Delay Power Efficient and Implementation of Modified Square-Root Carry S...
Area Delay Power Efficient and Implementation of Modified Square-Root Carry S...IJTET Journal
 
Project report on design & implementation of high speed carry select adder
Project report on design & implementation of high speed carry select adderProject report on design & implementation of high speed carry select adder
Project report on design & implementation of high speed carry select adderssingh7603
 
CORDIC Algorithm for WLAN
CORDIC Algorithm for WLANCORDIC Algorithm for WLAN
CORDIC Algorithm for WLANIJERA Editor
 
Degradation of ICI in OFDM Communication System by Analyzing I/Q Imbalance an...
Degradation of ICI in OFDM Communication System by Analyzing I/Q Imbalance an...Degradation of ICI in OFDM Communication System by Analyzing I/Q Imbalance an...
Degradation of ICI in OFDM Communication System by Analyzing I/Q Imbalance an...IRJET Journal
 
Optimization MVSIS vs AIG Rewriting (ABC)
Optimization MVSIS vs AIG Rewriting (ABC)Optimization MVSIS vs AIG Rewriting (ABC)
Optimization MVSIS vs AIG Rewriting (ABC)IJEEE
 
Dsp U Lec02 Data Converters
Dsp U   Lec02 Data ConvertersDsp U   Lec02 Data Converters
Dsp U Lec02 Data Converterstaha25
 
Implementation of Low Power and Area Efficient Carry Select Adder
Implementation of Low Power and Area Efficient Carry Select AdderImplementation of Low Power and Area Efficient Carry Select Adder
Implementation of Low Power and Area Efficient Carry Select Adderinventionjournals
 
Closed loop Control of grid Integrated High Frequency Linked Active Bridge Co...
Closed loop Control of grid Integrated High Frequency Linked Active Bridge Co...Closed loop Control of grid Integrated High Frequency Linked Active Bridge Co...
Closed loop Control of grid Integrated High Frequency Linked Active Bridge Co...PERWEZ ALAM
 
Modeling of Self Excited Induction Generator
Modeling of Self Excited Induction GeneratorModeling of Self Excited Induction Generator
Modeling of Self Excited Induction GeneratorANURAG YADAV
 
(D/A) and (A/D)conversion
(D/A) and (A/D)conversion(D/A) and (A/D)conversion
(D/A) and (A/D)conversionPraveen Kumar
 
icml2004 tutorial on spectral clustering part II
icml2004 tutorial on spectral clustering part IIicml2004 tutorial on spectral clustering part II
icml2004 tutorial on spectral clustering part IIzukun
 
icml2004 tutorial on spectral clustering part I
icml2004 tutorial on spectral clustering part Iicml2004 tutorial on spectral clustering part I
icml2004 tutorial on spectral clustering part Izukun
 

Mais procurados (20)

High Speed Carryselect Adder
High Speed Carryselect AdderHigh Speed Carryselect Adder
High Speed Carryselect Adder
 
DESIGN AND IMPLEMENTATION OF LOW POWER ALU USING CLOCK GATING AND CARRY SELEC...
DESIGN AND IMPLEMENTATION OF LOW POWER ALU USING CLOCK GATING AND CARRY SELEC...DESIGN AND IMPLEMENTATION OF LOW POWER ALU USING CLOCK GATING AND CARRY SELEC...
DESIGN AND IMPLEMENTATION OF LOW POWER ALU USING CLOCK GATING AND CARRY SELEC...
 
Data convertors
Data convertorsData convertors
Data convertors
 
Design and Verification of Area Efficient Carry Select Adder
Design and Verification of Area Efficient Carry Select AdderDesign and Verification of Area Efficient Carry Select Adder
Design and Verification of Area Efficient Carry Select Adder
 
Small Signal Modelling and Controller Design of Boost Converter using MATLAB
Small Signal Modelling and Controller Design of Boost Converter using MATLABSmall Signal Modelling and Controller Design of Boost Converter using MATLAB
Small Signal Modelling and Controller Design of Boost Converter using MATLAB
 
Area Delay Power Efficient and Implementation of Modified Square-Root Carry S...
Area Delay Power Efficient and Implementation of Modified Square-Root Carry S...Area Delay Power Efficient and Implementation of Modified Square-Root Carry S...
Area Delay Power Efficient and Implementation of Modified Square-Root Carry S...
 
Project report on design & implementation of high speed carry select adder
Project report on design & implementation of high speed carry select adderProject report on design & implementation of high speed carry select adder
Project report on design & implementation of high speed carry select adder
 
CORDIC Algorithm for WLAN
CORDIC Algorithm for WLANCORDIC Algorithm for WLAN
CORDIC Algorithm for WLAN
 
carry select adder
carry select addercarry select adder
carry select adder
 
Degradation of ICI in OFDM Communication System by Analyzing I/Q Imbalance an...
Degradation of ICI in OFDM Communication System by Analyzing I/Q Imbalance an...Degradation of ICI in OFDM Communication System by Analyzing I/Q Imbalance an...
Degradation of ICI in OFDM Communication System by Analyzing I/Q Imbalance an...
 
Optimization MVSIS vs AIG Rewriting (ABC)
Optimization MVSIS vs AIG Rewriting (ABC)Optimization MVSIS vs AIG Rewriting (ABC)
Optimization MVSIS vs AIG Rewriting (ABC)
 
Dsp U Lec02 Data Converters
Dsp U   Lec02 Data ConvertersDsp U   Lec02 Data Converters
Dsp U Lec02 Data Converters
 
Dac
DacDac
Dac
 
Flight Control System
Flight Control SystemFlight Control System
Flight Control System
 
Implementation of Low Power and Area Efficient Carry Select Adder
Implementation of Low Power and Area Efficient Carry Select AdderImplementation of Low Power and Area Efficient Carry Select Adder
Implementation of Low Power and Area Efficient Carry Select Adder
 
Closed loop Control of grid Integrated High Frequency Linked Active Bridge Co...
Closed loop Control of grid Integrated High Frequency Linked Active Bridge Co...Closed loop Control of grid Integrated High Frequency Linked Active Bridge Co...
Closed loop Control of grid Integrated High Frequency Linked Active Bridge Co...
 
Modeling of Self Excited Induction Generator
Modeling of Self Excited Induction GeneratorModeling of Self Excited Induction Generator
Modeling of Self Excited Induction Generator
 
(D/A) and (A/D)conversion
(D/A) and (A/D)conversion(D/A) and (A/D)conversion
(D/A) and (A/D)conversion
 
icml2004 tutorial on spectral clustering part II
icml2004 tutorial on spectral clustering part IIicml2004 tutorial on spectral clustering part II
icml2004 tutorial on spectral clustering part II
 
icml2004 tutorial on spectral clustering part I
icml2004 tutorial on spectral clustering part Iicml2004 tutorial on spectral clustering part I
icml2004 tutorial on spectral clustering part I
 

Destaque

vlsi projects using verilog code 2014-2015
vlsi projects using verilog code 2014-2015vlsi projects using verilog code 2014-2015
vlsi projects using verilog code 2014-2015E2MATRIX
 
Cc32928938
Cc32928938Cc32928938
Cc32928938IJMER
 
Bài làm cuối cùng gửi athena
Bài làm cuối cùng gửi athenaBài làm cuối cùng gửi athena
Bài làm cuối cùng gửi athenaNguyen Manh Tuong
 
Dj31514517
Dj31514517Dj31514517
Dj31514517IJMER
 
Ijmer 46052329
Ijmer 46052329Ijmer 46052329
Ijmer 46052329IJMER
 
Ijmer 46064044
Ijmer 46064044Ijmer 46064044
Ijmer 46064044IJMER
 
Cp31396400
Cp31396400Cp31396400
Cp31396400IJMER
 
Investigation of Effects of impact loads on Framed Structures
Investigation of Effects of impact loads on Framed StructuresInvestigation of Effects of impact loads on Framed Structures
Investigation of Effects of impact loads on Framed StructuresIJMER
 
Pose and Illumination in Face Recognition Using Enhanced Gabor LBP & PCA
Pose and Illumination in Face Recognition Using Enhanced  Gabor LBP & PCA Pose and Illumination in Face Recognition Using Enhanced  Gabor LBP & PCA
Pose and Illumination in Face Recognition Using Enhanced Gabor LBP & PCA IJMER
 
Cj32980984
Cj32980984Cj32980984
Cj32980984IJMER
 
Bc31169171
Bc31169171Bc31169171
Bc31169171IJMER
 
Investigate the Route of Chaos Induced Instabilities in Power System Network
Investigate the Route of Chaos Induced Instabilities in Power  System NetworkInvestigate the Route of Chaos Induced Instabilities in Power  System Network
Investigate the Route of Chaos Induced Instabilities in Power System NetworkIJMER
 
Udk cutscene & export tutorial
Udk cutscene & export tutorialUdk cutscene & export tutorial
Udk cutscene & export tutorialMugetsu Tensho
 
Bu31284290
Bu31284290Bu31284290
Bu31284290IJMER
 
A Comparison Of Smart Routings In Mobile Ad Hoc Networks(MANETs)
A Comparison Of Smart Routings In Mobile Ad Hoc  Networks(MANETs) A Comparison Of Smart Routings In Mobile Ad Hoc  Networks(MANETs)
A Comparison Of Smart Routings In Mobile Ad Hoc Networks(MANETs) IJMER
 
Bz31311316
Bz31311316Bz31311316
Bz31311316IJMER
 
Iθάκη του Κ.Καβάφη.
Iθάκη του Κ.Καβάφη.Iθάκη του Κ.Καβάφη.
Iθάκη του Κ.Καβάφη.Popi Kaza
 
Du31580586
Du31580586Du31580586
Du31580586IJMER
 
Am318385
Am318385Am318385
Am318385IJMER
 

Destaque (20)

vlsi projects using verilog code 2014-2015
vlsi projects using verilog code 2014-2015vlsi projects using verilog code 2014-2015
vlsi projects using verilog code 2014-2015
 
Cc32928938
Cc32928938Cc32928938
Cc32928938
 
Bài làm cuối cùng gửi athena
Bài làm cuối cùng gửi athenaBài làm cuối cùng gửi athena
Bài làm cuối cùng gửi athena
 
Dj31514517
Dj31514517Dj31514517
Dj31514517
 
Ijmer 46052329
Ijmer 46052329Ijmer 46052329
Ijmer 46052329
 
Ijmer 46064044
Ijmer 46064044Ijmer 46064044
Ijmer 46064044
 
Cp31396400
Cp31396400Cp31396400
Cp31396400
 
Investigation of Effects of impact loads on Framed Structures
Investigation of Effects of impact loads on Framed StructuresInvestigation of Effects of impact loads on Framed Structures
Investigation of Effects of impact loads on Framed Structures
 
Pose and Illumination in Face Recognition Using Enhanced Gabor LBP & PCA
Pose and Illumination in Face Recognition Using Enhanced  Gabor LBP & PCA Pose and Illumination in Face Recognition Using Enhanced  Gabor LBP & PCA
Pose and Illumination in Face Recognition Using Enhanced Gabor LBP & PCA
 
Cj32980984
Cj32980984Cj32980984
Cj32980984
 
Bc31169171
Bc31169171Bc31169171
Bc31169171
 
Make my library
Make my libraryMake my library
Make my library
 
Investigate the Route of Chaos Induced Instabilities in Power System Network
Investigate the Route of Chaos Induced Instabilities in Power  System NetworkInvestigate the Route of Chaos Induced Instabilities in Power  System Network
Investigate the Route of Chaos Induced Instabilities in Power System Network
 
Udk cutscene & export tutorial
Udk cutscene & export tutorialUdk cutscene & export tutorial
Udk cutscene & export tutorial
 
Bu31284290
Bu31284290Bu31284290
Bu31284290
 
A Comparison Of Smart Routings In Mobile Ad Hoc Networks(MANETs)
A Comparison Of Smart Routings In Mobile Ad Hoc  Networks(MANETs) A Comparison Of Smart Routings In Mobile Ad Hoc  Networks(MANETs)
A Comparison Of Smart Routings In Mobile Ad Hoc Networks(MANETs)
 
Bz31311316
Bz31311316Bz31311316
Bz31311316
 
Iθάκη του Κ.Καβάφη.
Iθάκη του Κ.Καβάφη.Iθάκη του Κ.Καβάφη.
Iθάκη του Κ.Καβάφη.
 
Du31580586
Du31580586Du31580586
Du31580586
 
Am318385
Am318385Am318385
Am318385
 

Semelhante a FPGA implementation of universal modulator using CORDIC algorithm for communication applications

HARDWARE EFFICIENT SCALING FREE VECTORING AND ROTATIONAL CORDIC FOR DSP APPLI...
HARDWARE EFFICIENT SCALING FREE VECTORING AND ROTATIONAL CORDIC FOR DSP APPLI...HARDWARE EFFICIENT SCALING FREE VECTORING AND ROTATIONAL CORDIC FOR DSP APPLI...
HARDWARE EFFICIENT SCALING FREE VECTORING AND ROTATIONAL CORDIC FOR DSP APPLI...VLSICS Design
 
High speed cordic design for fixed angle of rotation
High speed cordic design for fixed angle of rotationHigh speed cordic design for fixed angle of rotation
High speed cordic design for fixed angle of rotationIAEME Publication
 
Implementation performance analysis of cordic
Implementation performance analysis of cordicImplementation performance analysis of cordic
Implementation performance analysis of cordiciaemedu
 
Design and implementation of qpsk modulator using digital subcarrier
Design and implementation of qpsk modulator using digital subcarrierDesign and implementation of qpsk modulator using digital subcarrier
Design and implementation of qpsk modulator using digital subcarrierGongadi Nagaraju
 
VLSI Implementation of CORDIC Based Robot Navigation Processor
VLSI Implementation of CORDIC Based Robot Navigation ProcessorVLSI Implementation of CORDIC Based Robot Navigation Processor
VLSI Implementation of CORDIC Based Robot Navigation ProcessorIRJET Journal
 
PWM Step-down Converter(NJM2309)
PWM Step-down Converter(NJM2309)PWM Step-down Converter(NJM2309)
PWM Step-down Converter(NJM2309)Tsuyoshi Horigome
 
A CORDIC based QR Decomposition Technique for MIMO Detection
A CORDIC based QR Decomposition Technique for MIMO Detection A CORDIC based QR Decomposition Technique for MIMO Detection
A CORDIC based QR Decomposition Technique for MIMO Detection IJECEIAES
 
Direct digital synthesis based cordic algorithm a novel approach towards digi...
Direct digital synthesis based cordic algorithm a novel approach towards digi...Direct digital synthesis based cordic algorithm a novel approach towards digi...
Direct digital synthesis based cordic algorithm a novel approach towards digi...eSAT Journals
 
FPGA Implementation of Pipelined CORDIC Sine Cosine Digital Wave Generator
FPGA Implementation of Pipelined CORDIC Sine Cosine Digital Wave Generator FPGA Implementation of Pipelined CORDIC Sine Cosine Digital Wave Generator
FPGA Implementation of Pipelined CORDIC Sine Cosine Digital Wave Generator cscpconf
 
Reconfigurable Design of Rectangular to Polar Converter using Linear Convergence
Reconfigurable Design of Rectangular to Polar Converter using Linear ConvergenceReconfigurable Design of Rectangular to Polar Converter using Linear Convergence
Reconfigurable Design of Rectangular to Polar Converter using Linear ConvergenceAnuragVijayAgrawal
 
Presentation FOPID Boost DC-DC Converter.pptx
Presentation FOPID Boost DC-DC Converter.pptxPresentation FOPID Boost DC-DC Converter.pptx
Presentation FOPID Boost DC-DC Converter.pptxSherAli260123
 
Digital Voltage Control of DC-DC Boost Converter
Digital Voltage Control of DC-DC Boost ConverterDigital Voltage Control of DC-DC Boost Converter
Digital Voltage Control of DC-DC Boost ConverterIJERA Editor
 

Semelhante a FPGA implementation of universal modulator using CORDIC algorithm for communication applications (20)

Cordic Code
Cordic CodeCordic Code
Cordic Code
 
HARDWARE EFFICIENT SCALING FREE VECTORING AND ROTATIONAL CORDIC FOR DSP APPLI...
HARDWARE EFFICIENT SCALING FREE VECTORING AND ROTATIONAL CORDIC FOR DSP APPLI...HARDWARE EFFICIENT SCALING FREE VECTORING AND ROTATIONAL CORDIC FOR DSP APPLI...
HARDWARE EFFICIENT SCALING FREE VECTORING AND ROTATIONAL CORDIC FOR DSP APPLI...
 
FPGA Implementation of CORDIC Algorithm Architecture
FPGA Implementation of CORDIC Algorithm ArchitectureFPGA Implementation of CORDIC Algorithm Architecture
FPGA Implementation of CORDIC Algorithm Architecture
 
High speed cordic design for fixed angle of rotation
High speed cordic design for fixed angle of rotationHigh speed cordic design for fixed angle of rotation
High speed cordic design for fixed angle of rotation
 
Fm33980983
Fm33980983Fm33980983
Fm33980983
 
Fm33980983
Fm33980983Fm33980983
Fm33980983
 
Ax03303120316
Ax03303120316Ax03303120316
Ax03303120316
 
Ax4103307314
Ax4103307314Ax4103307314
Ax4103307314
 
P0440499104
P0440499104P0440499104
P0440499104
 
Implementation performance analysis of cordic
Implementation performance analysis of cordicImplementation performance analysis of cordic
Implementation performance analysis of cordic
 
Design and implementation of qpsk modulator using digital subcarrier
Design and implementation of qpsk modulator using digital subcarrierDesign and implementation of qpsk modulator using digital subcarrier
Design and implementation of qpsk modulator using digital subcarrier
 
VLSI Implementation of CORDIC Based Robot Navigation Processor
VLSI Implementation of CORDIC Based Robot Navigation ProcessorVLSI Implementation of CORDIC Based Robot Navigation Processor
VLSI Implementation of CORDIC Based Robot Navigation Processor
 
Dk32696699
Dk32696699Dk32696699
Dk32696699
 
PWM Step-down Converter(NJM2309)
PWM Step-down Converter(NJM2309)PWM Step-down Converter(NJM2309)
PWM Step-down Converter(NJM2309)
 
A CORDIC based QR Decomposition Technique for MIMO Detection
A CORDIC based QR Decomposition Technique for MIMO Detection A CORDIC based QR Decomposition Technique for MIMO Detection
A CORDIC based QR Decomposition Technique for MIMO Detection
 
Direct digital synthesis based cordic algorithm a novel approach towards digi...
Direct digital synthesis based cordic algorithm a novel approach towards digi...Direct digital synthesis based cordic algorithm a novel approach towards digi...
Direct digital synthesis based cordic algorithm a novel approach towards digi...
 
FPGA Implementation of Pipelined CORDIC Sine Cosine Digital Wave Generator
FPGA Implementation of Pipelined CORDIC Sine Cosine Digital Wave Generator FPGA Implementation of Pipelined CORDIC Sine Cosine Digital Wave Generator
FPGA Implementation of Pipelined CORDIC Sine Cosine Digital Wave Generator
 
Reconfigurable Design of Rectangular to Polar Converter using Linear Convergence
Reconfigurable Design of Rectangular to Polar Converter using Linear ConvergenceReconfigurable Design of Rectangular to Polar Converter using Linear Convergence
Reconfigurable Design of Rectangular to Polar Converter using Linear Convergence
 
Presentation FOPID Boost DC-DC Converter.pptx
Presentation FOPID Boost DC-DC Converter.pptxPresentation FOPID Boost DC-DC Converter.pptx
Presentation FOPID Boost DC-DC Converter.pptx
 
Digital Voltage Control of DC-DC Boost Converter
Digital Voltage Control of DC-DC Boost ConverterDigital Voltage Control of DC-DC Boost Converter
Digital Voltage Control of DC-DC Boost Converter
 

Mais de IJMER

A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...IJMER
 
Developing Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed DelintingDeveloping Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed DelintingIJMER
 
Study & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja FibreStudy & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja FibreIJMER
 
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)IJMER
 
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...IJMER
 
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...IJMER
 
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...IJMER
 
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...IJMER
 
Static Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works SimulationStatic Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works SimulationIJMER
 
High Speed Effortless Bicycle
High Speed Effortless BicycleHigh Speed Effortless Bicycle
High Speed Effortless BicycleIJMER
 
Integration of Struts & Spring & Hibernate for Enterprise Applications
Integration of Struts & Spring & Hibernate for Enterprise ApplicationsIntegration of Struts & Spring & Hibernate for Enterprise Applications
Integration of Struts & Spring & Hibernate for Enterprise ApplicationsIJMER
 
Microcontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation SystemMicrocontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation SystemIJMER
 
On some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological SpacesOn some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological SpacesIJMER
 
Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...IJMER
 
Natural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine LearningNatural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine LearningIJMER
 
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcessEvolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcessIJMER
 
Material Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded CylindersMaterial Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded CylindersIJMER
 
Studies On Energy Conservation And Audit
Studies On Energy Conservation And AuditStudies On Energy Conservation And Audit
Studies On Energy Conservation And AuditIJMER
 
An Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDLAn Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDLIJMER
 
Discrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One PreyDiscrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One PreyIJMER
 

Mais de IJMER (20)

A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...A Study on Translucent Concrete Product and Its Properties by Using Optical F...
A Study on Translucent Concrete Product and Its Properties by Using Optical F...
 
Developing Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed DelintingDeveloping Cost Effective Automation for Cotton Seed Delinting
Developing Cost Effective Automation for Cotton Seed Delinting
 
Study & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja FibreStudy & Testing Of Bio-Composite Material Based On Munja Fibre
Study & Testing Of Bio-Composite Material Based On Munja Fibre
 
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
Hybrid Engine (Stirling Engine + IC Engine + Electric Motor)
 
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
Fabrication & Characterization of Bio Composite Materials Based On Sunnhemp F...
 
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
Geochemistry and Genesis of Kammatturu Iron Ores of Devagiri Formation, Sandu...
 
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
Experimental Investigation on Characteristic Study of the Carbon Steel C45 in...
 
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
Non linear analysis of Robot Gun Support Structure using Equivalent Dynamic A...
 
Static Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works SimulationStatic Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
Static Analysis of Go-Kart Chassis by Analytical and Solid Works Simulation
 
High Speed Effortless Bicycle
High Speed Effortless BicycleHigh Speed Effortless Bicycle
High Speed Effortless Bicycle
 
Integration of Struts & Spring & Hibernate for Enterprise Applications
Integration of Struts & Spring & Hibernate for Enterprise ApplicationsIntegration of Struts & Spring & Hibernate for Enterprise Applications
Integration of Struts & Spring & Hibernate for Enterprise Applications
 
Microcontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation SystemMicrocontroller Based Automatic Sprinkler Irrigation System
Microcontroller Based Automatic Sprinkler Irrigation System
 
On some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological SpacesOn some locally closed sets and spaces in Ideal Topological Spaces
On some locally closed sets and spaces in Ideal Topological Spaces
 
Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...Intrusion Detection and Forensics based on decision tree and Association rule...
Intrusion Detection and Forensics based on decision tree and Association rule...
 
Natural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine LearningNatural Language Ambiguity and its Effect on Machine Learning
Natural Language Ambiguity and its Effect on Machine Learning
 
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcessEvolvea Frameworkfor SelectingPrime Software DevelopmentProcess
Evolvea Frameworkfor SelectingPrime Software DevelopmentProcess
 
Material Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded CylindersMaterial Parameter and Effect of Thermal Load on Functionally Graded Cylinders
Material Parameter and Effect of Thermal Load on Functionally Graded Cylinders
 
Studies On Energy Conservation And Audit
Studies On Energy Conservation And AuditStudies On Energy Conservation And Audit
Studies On Energy Conservation And Audit
 
An Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDLAn Implementation of I2C Slave Interface using Verilog HDL
An Implementation of I2C Slave Interface using Verilog HDL
 
Discrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One PreyDiscrete Model of Two Predators competing for One Prey
Discrete Model of Two Predators competing for One Prey
 

Último

Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
Vishratwadi & Ghorpadi Bridge Tender documents
Vishratwadi & Ghorpadi Bridge Tender documentsVishratwadi & Ghorpadi Bridge Tender documents
Vishratwadi & Ghorpadi Bridge Tender documentsSachinPawar510423
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
welding defects observed during the welding
welding defects observed during the weldingwelding defects observed during the welding
welding defects observed during the weldingMuhammadUzairLiaqat
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfAsst.prof M.Gokilavani
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHC Sai Kiran
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvLewisJB
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
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
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)dollysharma2066
 

Último (20)

Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
young call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Serviceyoung call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Service
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
Vishratwadi & Ghorpadi Bridge Tender documents
Vishratwadi & Ghorpadi Bridge Tender documentsVishratwadi & Ghorpadi Bridge Tender documents
Vishratwadi & Ghorpadi Bridge Tender documents
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
welding defects observed during the welding
welding defects observed during the weldingwelding defects observed during the welding
welding defects observed during the welding
 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECH
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvv
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
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
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
 

FPGA implementation of universal modulator using CORDIC algorithm for communication applications

  • 1. International OPEN ACCESS Journal Of Modern Engineering Research (IJMER) | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 63| FPGA implementation of universal modulator using CORDIC algorithm for communication applications M. Satheesh Kumar1 , S. Nagi Reddy, M.Tech2 1 (ECE Department, TKREC, Hyderabad, India) 2 (ECE Department, Assistant Professor of TKREC, Hyderabad, India). I. Introduction Coordinate Rotation Digital Computer (CORDIC) algorithms provide an efficient approach for rotating vectors in a plane by simple shift-add operations. Besides offering a simple mechanism for computing the magnitude and phase-angle of an input vector, they are popularly used to perform complex multiplications and estimation of various functions. The conventional CORDIC algorithms are used to handle rotations only in the range of [-99.70 ,99.70 ] . Moreover, they are serial in nature and require a ROM to store the look-up table and hardware-expensive barrel shifters. Research on enhancements to the conventional CORDIC has proceeded primarily intwo directions. One of these is to obtain a high speed solution while the other is on careful handling of scale factors for high precision implementations. The authors in describe a virtually scaling-free CORDIC rotator which requires a constant scale-factor. A solution that scales the vector after every iteration, reduces the number of iterations and expands the range of rotation angles is presented in. A CORDIC architecture that suggests a circuit for scale factor correction is presented in some efforts have also been made to implement the CORDIC architectures on an FPGA. The contributions of this paper are as follows: We present two highly area-efficient CORDIC algorithms with an angular resolution of. Convergence of both the algorithms is established theoretically. The algorithms cover the entire range of angles [-180 0 ,180 0 ]. Further, the FPGA implementations consume a substantially lower percentage of device components than other implementations. II. Cordic Technique Given a complex value:C=IC+jQC We will create a rotated value:C’=IC’+jQc by multiplying by a rotation value:R=Ir+jQ Fig.1 Rotation vector Abstract: The modern communication systems and software radio based applications demands fully digital receivers, consisting of only an antenna and a fully programmable circuit with digital modulators and demodulators. A basic communication system’s transmitter modulates the amplitude, phase or frequency proportional to the signal being transmitted. An efficient solution (that doesn’t require large tables/memory) for realizing universal modulator is CORDIC (CO-ordinate Rotation Digital Computer) algorithm. The CORDIC algorithm is used in the rotation mode, to convert the coordinates from polar mode to rectangular mode. The radius vector(r) and angle (θ) of a CORDIC processor can be programmed to generate the ASK, PSK and FSK signals. Modelsim simulator tool from mentor graphics will be used for functional simulation and verification of the modulator. The Xilinx synthesis Tools (XST) will be used to synthesize the complete modulator on Xilinx Spartan 3E family FPGA (XC3S500E). Xilinx placement & routing tools will be used for backed, design optimization and I/O routing. Keywords: CORDIC, ASK, PSK, FSK, FPGA.
  • 2. FPGA implementation of universal modulator using CORDIC algorithm for communication | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 64| How multiplier less: 1. Recall that when you multiply a pair of complex numbers, their phases (angles) add and their magnitudes multiply. Similarly, when you multiply one complex number by the conjugate of the other, the phase of the conjugated one is subtracted (though the magnitudes still multiply). Therefore: To add R’s phase to C: To subtract phase from C: C' = C·R Ic' = Ic·Ir-Qc·Qr Qc' = Qc·Ir+Ic·Qr 2. To rotate by +90 degrees, multiply by R = 0 + j1. Similarly, to rotate by -90 degrees, multiply by R = 0 - j1. If you go through the Algebra above, the net effect is: To add 90 degrees Multiply by R=0+j1 To Subtract 90 degrees multiply by R=0-j1 3. To rotate by phases of less than 90 degrees, we will be multiplying by numbers of the form "R = 1 +/- jK". K will be decreasing powers of two, starting with 2^0 = 1.0. Therefore, K = 1.0, 0.5, 0.25, etc. (We use the symbol "L" to designate the power of two itself: 0, -1,-2,etc.) Since the phase of a complex number "I + jQ" isatan(Q/I), the phase of "1 + jK" is atan(K). Likewise, the phase of "1 - jK" = atan(-K) = -atan(K).To add phases we use "R = 1 + jK"; to subtract phases we use "R = 1 - jK". Since the real part of this, Ir, is equal to 1, we can simplify our table of equations to add and subtract phases for the special case of CORDIC multiplications to: To add a phaseMultiply by R=1+Jk To add a phaseMultiply by R=1+Jk Table1 Table1. For an accumulator of 3 bits (j=3) controlled with an input of P = 3 and P =2 4. Each rotation has a magnitude greater than 1.0. That isn't desirable, but it's the price we pay for using rotations of the form "1 + jK". The "CORDIC Gain" column in the table is simply a "cumulative magnitude" calculated by multiplying the current magnitude by the previous magnitude. Notice that it converges to about 1.647; however, the actual CORDIC Gain depends on how many iterations we do. (It doesn't depend on whether we add or subtract phases, because the magnitudes multiply either way). C' = C·R* Ic' = Ic·Ir+Qc·Qr Qc' = Qc·Ir-Ic·Qr IC’ = QC QC’ =-IC (negate I, then swap) IC’ = -QC QC’ =IC (negate Q,then swap) Ic'=Ic+K·Qc=Ic + (2^-L)·Qc Qc'=Qc-K·Ic = Qc- (2^-L)·Ic Ic' = Ic-K·Qc =Ic(2^L)·Qc Qc'=Qc+K·Ic=Qc+(2^-L)·Ic L K=2^-L R=1+jK Phase of R in degrees=atan(k) Magnitude of R CORDIC Gain 0 1.0 1 + j1.0 45.00000 1.41421356 1.414213562 1 0.5 1+j0.5 26.56505 1.11803399 1.581138830 2 0.25 1 + j0.25 14.03624 1.03077641 1.629800601 3 0.125 1 + j0.125 7.12502 1.00778222 1.642484066 4 0.625 1 + j0.0625 3.57633 1.00195122 1.645688916 5 0.03125 1 + j0.031250 1.78991 1.00048816 1.646492279 6 0.015625 1 + j0.015625 0.89517 1.00012206 1.646693254 7 0.007813 1 + j0.007813 0.44761 1.00003052 1.646743507 ….. ………. ………….. ……………... ……………… ………………..
  • 3. FPGA implementation of universal modulator using CORDIC algorithm for communication | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 65| III. Cordic Basic Issues  Since we're using powers of two for the K values, we can just shift and add our binary numbers. That's why the CORDIC algorithm doesn't need any multiplies.  The sum of the phases in the table up to L = 3 exceeds 92 degrees, so we can rotate a complex number by +/- 90 degrees as long as we do four or more "R = 1 +/- jK" rotations. Put that together with the ability to rotate +/-90 degrees using "R = 0 +/- j1", and you can rotate a full +/-180 degrees.  You can see that starting with a phase of 45 degrees, the phase of each successive R multiplier is a little over half of the phase of the previous R. That's the key to understanding CORDIC: we will be doing a "binary search" on phase by adding or subtracting successively smaller phases to reach some "target" phase.  Each rotation has a magnitude greater than 1.0. That isn't desirable, but it's the price we pay for using rotations of the form "1 + jK". The "CORDIC Gain" column in the table is simply a "cumulative magnitude" calculated by multiplying the current magnitude by the previous magnitude. Notice that it converges to about 1.647; however, the actual CORDIC Gain depends on how many iterations we do. (It doesn't depend on whether we add or subtract phases, because the magnitudes multiply either way.) Modes of operation: Basic mode: I and Q carrier signals for a chosen freq value Modulator mode: producing ASK, FSK and PSK signals. 11-bit Control word format M M F F F F F F F K K MM --- Mode of operation 00 – Basic mode 01 – Binary Modulator mode 10 – Mary modulator mode FFFFFFF – 7-bit Freq word KK (in Binary modulation mode) 00 – Amplitude shift keying 01 –Phase shift keying 10 – Freq shift keying KK(in M-ary modulation mode) 00 – 4 level QAM 01 – QPSK 10– OQPSK 11-8psk. IV. Block Diagram of Cordic Based Universal Modulator Realization Fig.2 block diagram of CORDIC
  • 4. FPGA implementation of universal modulator using CORDIC algorithm for communication | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 66| IV (i) Basic Blocks of Universal Modulator All the blocks are connected with common clock and reset signals. The delta phase value decides the phase increment for each clock pulse. Hence decides the resulting signal frequency. The Frequency modulating instantaneous value is added to the delta phase value which causes instant-aneous change in frequency. Due to the digital nature of the modulator only at each clock tick the modulating signal value shall affect the resulting frequency.The outputs of the Look Up Tables are given to the input lines a 4 to 1 Multiplexer.This multiplexer connects one of the inputs to the output depending on the select lines. The output of Multiplexer consists the 8 amplitude bits which is the final output in case required modulation schemes are FM or PM. In case of Amplitude modulation, the output of multiplexer is multiplied with instaneous modulating signals. CORDIC engine isused for phase to amplitude conversion required for the generation of cosine and sin functions. In three modulation schemes if modulating signal is analog in nature then anappropriate Analog toDigital converter is required to convert into 8 bitdigital output. From the figure the basic blocks in DDFS can be identified as PIPO registers, adders, look Up Tables, CORDIC engine and other combinational circuits. IV (ii) DDFS Basic Principle: Direct Digital Frequency Synthesizer is a technique to produce desired output wave-forms with full digital control. Direct digital synthesis (DDS) is becoming increasingly popular as a technique for fre-quency synthesis, especially if high frequency resolution and fast switching between frequencies over a large bandwidth are required. The direct digital frequency synthesizer is shown in a simplified form in figure 4. The DDFS has the following basic blocks: (1) Frequency register (2) adder and phase register (3) phase to amplitude converter (conventionally a sine ROM) (4) digital to analog converter and low pass filter The phase value is generated using the modulo 2j overflowing property of a j-bit phase accumulator. The rate of the overflows is the output frequency 𝑓𝑜𝑢𝑡 = ∆𝑃 𝑓 𝑐𝑙𝑘 2 𝑗 ∀ 𝑓𝑐𝑙𝑘 ≤ 𝑓 𝑐𝑙𝑘 2 -- (1.1) Where ∆P is the phase increment word, j is the number of phase accumulator bits, fclkis the clock frequency and foutis the output frequency. The constraint for maximum value of fout in the above equation comes from the sampling theorem. The phase increment word in (1.1) is an integer, therefore the frequency resolution is found by setting ∆P = 1. ∆ 𝑓 = (𝑓𝑐𝑙𝑘 )/2𝑗 --- (1.2) Fig.3: block diagram of DDFS In the ideal case with no phase and amplitude quantization, the output sequence of the table is given by sin(2π 𝑃(𝑛) 2 𝑗 )--- --(1.3)
  • 5. FPGA implementation of universal modulator using CORDIC algorithm for communication | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 67| Where P(n) is a (the j-bit) phase register value (at the nth clock period). The numerical period of the phase accumulator output sequence is defined as the minimum value of Pe for which P(n)=P(n+Pe) for all n. The numerical period of the phase accumulator output sequence is 𝑝𝑒 = 2 𝑗 𝐺𝐶𝐷(∆𝑝,2 𝑗 ) ----- (1.4) Table 2.For an accumulator of 3 bits (j=3) controlled with an input of P = 3 and P =2 IV (iii) DFS Architecture for Modulation capability: It is simple to add modulation capabilities to the DDS, because the DDS is a digital signal processing device. In the DDS it is possible to modulate numerically all three wave form parameters. S(n)=A(n)sin (2(∆P(n)+P(n))) ---(1.5) Fig.4 DDS architecture with modulation capabilities V. Modulation Command Processor Chipscope Results The Modulation command processor implemented are for carrying out digital versions of frequency modulation, phase modulation and amplitude modulation. For all these three modulations the digital 8 bit modulating signal is expected. In case if the modulating signal is analog that needs to be converted in to 8 bit digital by appropriate Analog to Digital Converter. The frequency modulation is carried out by frequency modulation controller which is simply an adder adding the phase increment value input for DDFS and instantaneous modulating signal value. Since the phase increment value or delta phase value is proportional to instantaneous frequency of output signal of DDFS, controlling that parameter leads to Frequency modulation. The phase modulation controller adds the output of phase accumulator to the instantaneous value of phase modulating signal. The resulting sum is fed tothe LUTs to produce amplitude bits corresponding to the input phase bits. The amplitude modulator planned in this project is analogous to product modulator. The amplitudebits at the output of multiplexer are multiplied with instantaneous amplitude of modulating signal. To verify the modulation effects from these modulation controllers, these blocks should work in complete DDFS module; hence the resulting outputs for three types of modulations are presented. The Chip Scope Pro Analyzer tool interfaces directly to the ICON, ILA, IBA/OPB ,IBA/PLB, VIO, and ATC2 cores (collectively called the Chip Scope Pro cores). You can configure your device, choose triggers, setup the console, and view the results of the capture on the fly. The data views and triggers can be manipulated in many ways, providing an easy and intuitive interface to determine the functionality of the design. Accumulator output ∆P=3 and j=3 Carry output Accumulator output ∆p=2 and j=3 Carry output 000 (0) 1 Cycle begins 000 (0) 1 Cycle begins 011 (3) 0 010(2) 0 110(6) 0 100(4) 0 001(1) 1 110(6) 0 100(4) 0 000 (0) 1
  • 6. FPGA implementation of universal modulator using CORDIC algorithm for communication | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 68| The waveforms obtained by the Chip Scope Pro Analyzer are shown in the figures Put the slide switches in 0100 position (MM=01 and KK=00) to get ASK Modulating signal (1 bit data) Fig: 5 ASK CHIPSCOPE RESULT Put the slide switches in 0101 position (MM=01 and KK=01) to get PSK Modulating signal (1 bit data) Fig: 6 PSK CHIPSCOPE RESULT
  • 7. FPGA implementation of universal modulator using CORDIC algorithm for communication | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 69| Put the slide switches in 0110 position (MM=01 and KK=10) to get FSK Modulating signal (1 bit data ) Fig: 7 FSK CHIPSCOPE RESULT Put the slide switches in 1001 position (MM=10 and KK=01) to get QPSK (change the samples size to 2048) Modulating signal (1 bit data ) Fig: 8 QPSK CHIPSCOPE RESULT VI. Applications  Universal modulator is highly preferred option in instrumentation for signal generation and frequency sweep etc.  Universal modulator can be efficiently used in several digital modulation schemes suchas FSK, PSK, ASK, QPSK, OPQPSK, PI/QPSK, QAM and 8-bitPSK.  Universal modulator has been used in universal HAM radio/generator. Universal modulator is capable of well controlled, rapid changes in frequency. ADVANTAGE AND DISADVANTAGES  High frequency resolution and accuracy.  Fast switching between frequencies over a large bandwidth.  Compared to LUT method, it takes less area.  FPGA hardware can give high speed solution in comparison with software approach but not in comparison with ASIC.
  • 8. FPGA implementation of universal modulator using CORDIC algorithm for communication | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 70| TOOLS AND HARD WARE  Simulation software -Modelsim Xilinx Edition (MXE)  Synthesis, P&R - Xilinx ISE  On chip verification - Xilinx Chip scope  Hardware– Xilinx Spartan 3 Family FPGA board VII. FPGA Design and Programming To define the behavior of the FPGA, the user provides a hardware description language (HDL) or a schematic design. The HDL form is more suited to work with large structures because it's possible to just specify them numerically rather than having to draw every piece by hand. However, schematic entry can allow for easier visualization of a design.Once the design and validation process is complete, the binary file generated (also using the FPGA company's proprietary software) is used to (re)configure the FPGA. VIII. Conclusion Our CORDIC Algorithm implementation has efficient area utilization as compared to LUT based methods. But, it is slower than LUT based implementation.FPGA based DDFS is highly useful in semi-custom VLSI chips, FPGA based VLSI solutions, signal processing cards, Instrumentation and Digital communications. The present work shows basic DDFS implementation proving the design by synthesis on FPGA. The timing analysis shows that high values of output frequencies can be achieved with FPGA based design. If higher end FPGAs is used then very high bandwidth DDFS can be implemented efficiently. CORDIC Algorithm is successfully implemented in VHDL, which helped to generate ASK, PSK, FSK&QAM signals. Utilizing 378flip flops/latches,432 four input LUTs,17 Bonded IOBs ,94 Shift registers ,17 Block RAMs,2 MUXS in resource of XC3S500E320. Our project on CORDIC algorithm works with frequency 25.475MHz.it is minimum input arrival time before clock 4.808ns, maximum output required time after clock 14.719ns and maximum combinational path delay 1.975ns with minimum power dissipation of 87.66 mWatts. .REFERENCES [1.] J. Volder, The CORDIC trigonometric computing technique, IRE Transactions on [2.] Electronic Computers, Vol. EC-8, 1959, pp. 330-334. [3.] J.S. Walther, A unified algorithm for elementary functions, Proceedings of 38th Spring Joint Computer Conference, 1971,pp. 379-385. [4.] A Novel CRODIC Based Unified Architecture for DCT and IDCT international conference paper 2012. [5.] A VLSI Implementation of Logarithmic and Exponential Functons Using a Novel Parabolic synthesis methodology Compared To The CORDIC Algorithm Conference Paper 2011. [6.] R. Andraka, A survey of CORDIC algorithms for FPGA-based computers, Proceedings of ACM/SIGDA Sixth International Symposium on Field Programmable Gate Arrays, 1998, pp.191-200. [7.] Efficient CORDIC Algorithms and Architectures for Low Area and High Throughput Implementation IEEE paper2009. [8.] A VLSI Implementation of Logarithmic and Exponential Functions Using a Novel Parboil Synthesis Methodology Compared to the CORDIC Algorithms IEEE paper2011. [9.] M.G.B. Sumumanasena, ”Ascale factor correction scheme for the CORDIC Algorithm,”IEEE paoer 2008. [10.] A direct digital frequency synthesis system for Low Power Communications by Alistair Mcewen,sunay shah and steve Collin, department of engineering science University Of Oxford Parks Road Oxford UK.
  • 9. FPGA implementation of universal modulator using CORDIC algorithm for communication | IJMER | ISSN: 2249–6645 | www.ijmer.com | Vol. 4 | Iss. 6| June. 2014 | 71| M.SATHEESH KUMAR S. NAGI REDDY, M. Tech Dept of ECE, TKREC, Hyderabad Asst.Prof & in charge polytechnic College, TKREC,Hyderabad.