Performance Evaluation on FFT Software Implementation

Size: px
Start display at page:

Download "Performance Evaluation on FFT Software Implementation"

Transcription

1 Proceedings of the International MultiConference of Engineers and Coputer Scientists 9 Vol II IMECS 9, March 8 -, 9, Hong Kong Perforance Evaluation on FFT Software Ipleentation Xiangyang Liu, Xiaoyu Song, and Yuke ang Abstract It is known that FFT algoriths have coplexity of O(nlog n), where n is the input size. Many new algoriths clai certain theoretical advantage; however, their real perforance in application is questionable. The paper presents a systeatic perforance evaluation on different FFT software ipleentations. Different code techniques such as recursive, iterative, TFBBGM, TFRM with further expansion are used for real application sizes fro 5 to 8 points. Contrary to the coon belief that recursive progras are slower, we find that recursive progras are not necessarily slower for coonly used FFT. Our coparative study constitutes the first attept to evaluate the real perforance of different FFT approaches. Index Ters FFT, DFT. I. ITRODUCTIO In digital signal processing, the discrete Fourier transfor (DFT) plays an iportant role in the analysis, design and ipleentation of discrete-tie signal-processing algoriths and systes [, ]. The fast Fourier transfors (FFT) are efficient algoriths to copute DFT. FFT is used widely in digital signal processing fields. Its perforance is critical for any real-tie applications. The FFT algoriths are based on the principle of decoposing the coputation of DFT into sequences of saller DFTs. The first FFT algorith was discovered by Guass in the 8th century and rediscovered by Cooley and Tukey [3] in 96s. Significant advances include higher radix FFT algoriths [], ixed-radix FFT algoriths [5], split-radix FFT algoriths [6][7], recursive FFT algorith [8], and the deciation-in-tie (DIT) and the deciation-in-frequency (DIF) FFT algoriths [9]. Most of these algoriths illustrate FFT with siilar FFT diagras, which are evolved fro the nature of the FFT algoriths and constructed by basic butterfly structures, such as the 8-point radix- FFT diagra shown in Figure. FFT algoriths can be ipleented on ultiple platfors. For exaple, FFT algoriths have been ipleented on application specific integrated circuits (ASIC) as FFT processors [] for high-speed or low power hardware design. However, FFT algoriths designed in hardware processor are often tailored to specific application, hence is not flexible. FFT has also been ipleented in software on general- Xiangyang Liu is with the Departent of Coputer Science, University of Texas at Dallas, Richardson TX, 758, USA (e-ail: xxl63@ utdallas.edu). Xiaoyu Song, is with Departent of Electrical and Coputer Engineering, Portland State University, P.O.Box 75 Portland, OR , USA (e-ail: song@ee.pdx.edu). Yuke ang is with the Departent of Coputer Science, University of Texas at Dallas, Richardson, TX, 758, USA (e-ail: yuke@utdallas.edu). Figure. The 8-pt radix- DIT FFT diagra. purpose processors as building block of siulation data processing systes []. Software-based ipleentations of FFT on general processors are less cost and flexible, but they are typically slower than hardware on coparable technologies. Digital signal processors (DSPs) are specific processors optiized for various signal-processing applications such as FIR, IIR filters and FFT. Software ipleentations of FFTs on DSPs are getting popular for their excellent tradeoff aong cost, perforance, flexibility, and ipleentation coplexity. It is known that FFT algoriths have coplexity of O(nlog n), where n is the input size. Many new algoriths clai soe advantage in ters of a constant iproveent; however, their real perforances are unknown. The paper presents a systeatic and synergic study on the efficiency of different ipleentations of FFT prograing. In particular, we propose different ways to progra FFT. Different code techniques such as recursive, iterative, TFBBGM [], TFRM [3] with further expansion are explored. An extensive experient is conducted for input size fro 5 to 8 points. Soe iportant findings are obtained on FFT codes on existing ajor DSP architectures. Further anual tuning optiizations are possible. Contrary to the coon belief that recursive progra is slower, we find that recursive progras are not necessarily slower for coonly used FFT. Instead its perforances are deterined by any other factors. Our coparative study constitutes the first attept to understand the real perforance evaluation of different approaches. The paper is organized as follows. In Section II, we give the preliinaries of DIF/DIT FFT algoriths and code techniques such as TFRM, TFBBGM, etc. Section III describes the ipleentations of twenty FFT codes. Experient results are shown in Section IV. Section V concludes the paper. II. PRELIMIARIES e first present the basic ideas of DIT FFT and DIF FFT. Then we describe two code structures: iterative and recursive codes. Two ethods of TFRM and TFBBGM are introduced to reduce the nuber of eory references due to twiddle factor. ISB: IMECS 9

2 Proceedings of the International MultiConference of Engineers and Coputer Scientists 9 Vol II IMECS 9, March 8 -, 9, Hong Kong A. DIT and DIF FFT The DFT of discrete signal can be directly coputed = nk X [ k ] = x[ n] as n, k =,,..., () where nk j( π / ) nk = e, and X[k] are sequences of coplex nubers, and j = -. The basic ideas of DIT and DIF FFT algoriths are to decopose the input sequence and output sequence X[n] of () into saller sequences. E.g. the radix- DIT and DIF FFT algoriths are obtained by splitting the input sequence and output sequence X[n] into odd and even indexed eleents. Figures (b) and (b) show the coputation diagras of the DIT and DIF algoriths, respectively. Figure. The 8-pt radix- DIF FFT diagra The butterflies are coputed according to the index order of the stages and groups by partitioning the radix- DIT and DIF FFT diagras. ithin the sae group, the butterflies are coputed fro top to botto. Figure 3(a) shows the iterative C code ipleentation of n-points radix- DIF FFT algorith taken fro TI s DSP library [], where n is given as an input paraeter to the C code. Figure 3(b) shows the corresponding iterative C code ipleentation of n-points radix- DIT FFT algorith. Figure 3. The C code of radix- DIF FFT and radix- DIT FFT. The C code in Figure 3 shows a three-loop iterative structure: ) the outerost loop, the k-loop, counts the stages, loops for log ties; ) the second loop, the j-loop, counts the groups within each stage and decides which twiddle factor to load; 3) the innerost loop, the i-loop counts the nuber of butterflies within each group. Variables k and j indicate the stages and group nuber, respectively. Variables i and l indicate the upper and lower input indexes of the butterfly coputed by the innerost loop, respectively. Variable ia indicates the index of the twiddle factor to be loaded. B. Recursive and Iterative Code Structures Recursion plays an elegant role in solving probles in design and analysis of coputer algoriths and coplexity theory [5]. A coplex proble can be decoposed into saller probles of the sae structure. Figure (a) shows the recursive code of factorial function. It is only the ultiplication process that deterines the code coplexity. Hence, the coplexity of the original proble can be decreased. Figure. Exaple of recursive code and iterative code. As Figure (a) illustrates, the recursive code structure involves function call inside the sae function, thus it needs eory stack operation to fulfill this task. Due to the expensiveness of eory operation in clock cycles, the recursive code structure also increases the nuber of clock cycles to soe extent. Iterative code structure is the coon structure in which the sae phase of code is executed ultiple ties. Figure (b) shows the iterative code of factorial function. It will not incur eory stack operation due to function call within the sae function, hence it requires fewer clock cycles than recursive code. However, the iterative structure is ore coplex than recursive structure in code size, which also akes it require ore clock cycles to soe extent. e explore the overall perforance of these two code structures by perforing thorough experient on various iterative and recursive FFT codes. C. TFBBGM The TFBBGM (twiddle-factor-based butterfly grouping ethod) groups the butterflies in the radix- FFT diagra according to the twiddle factor. Each twiddle factor is loaded only once in the coputation order, thus the nuber of redundant eory references due to twiddle factor in conventional radix- DIF FFT algorith can be reduced. Since there are log twiddle factors for a -points radix- DIF FFT algorith, the coputation requires only log steps. Fro Figure (b), we have soe iportant observations. There are / different twiddle factors in the first stage of radix- -points DIF FFT diagra, expressed as, where =,,, 3,, /-. The twiddle factors of odd aong / twiddle factors in the first stage do not occur in later stages. At any stage s, the twiddle factor for any butterfly s n od s s nod s is, so it is clear that will not be odd when s is greater than. Thus, butterflies of twiddle factor with =, 3, 5,, /- can be grouped and thus / butterflies are coputed in the first stage of the TFBBGM. In the s-th stage, except those butterflies coputed in the first stage, butterflies with twiddle factors that do not occur after Stage s of radix- -points DIF FFT diagra as in Figure (b) will be coputed. There are / butterflies in Stage s, /8 butterflies in Stage s-, /6 butterflies in Stage s-,, and / s+ butterflies in Stage. Twiddle factors of the corresponding butterflies are, where = s-, 3 s-, 5 s-,, (/ s- ) s-. Particularly, when s is, / butterflies in Stage and /8 butterflies in Stage of radix- DIF FFT diagra in Figure ISB: IMECS 9

3 Proceedings of the International MultiConference of Engineers and Coputer Scientists 9 Vol II IMECS 9, March 8 -, 9, Hong Kong (b) will be coputed in stage of the new ethod. Twiddle factors of these butterflies are where =, 6,,, (/)-. The last stage coputes totally - butterflies with twiddle factor, together in the radix- -point DIF FFT diagra. By using these new stages, the new ethod loads each twiddle factor only once in the coputation. e redraw the coputation diagra of radix- DIF FFT as shown in Figure (b) into Figure 5. Fro the new diagra, it is easy to see that totally - butterflies with twiddle factor = will be coputed without ultiplication, which is conducive to reduce the nuber of clock cycles. Figure 5. The radix- DIF FFT diagra with TFBBGM. Siilarly, TFBBGM can also be applied to radix- DIT FFT with TFBBGM. But due to the difference between radix- DIT FFT and radix- DIF FFT, butterflies with twiddle factor 6 need to be grouped and coputed before butterflies with other twiddle factors are grouped and coputed. In the later step s, TFBBGM groups and coputes butterflies with twiddle factor, where = / s, 3 / s, 5 / s,, ( s- -) / s. Figure 6 shows the radix- DIT FFT diagra redrawn by grouping the butterflies with identical twiddle factors. Figure 6. The 8-pts radix- DIT FFT diagra with TFBBGM. D. TFRM Based on the coplex properties of the twiddle factor, TFRM (Twiddle factor Reduce Method) can reduce the 3 8 nuber of twiddle factor to be referenced. For exaple, can be replaced by j 8 in Figure and Figure by using the property of the coplex nuber, here is the derivation procedure: 3 j (π / 8) 3 j (π / 8) j (π / 8) 8 = e = e e = j 8 The siilar derivation can be applied to 8. Hence, only 8 and 8 are actually required in the coputation of 8 points radix- DIF and DIT FFT. By using the property of coplex nuber, the twiddle factor has the following property: [, ) = j [, ) = = [,3 ) = j [3, ) Also, as observed fro radix- DIF FFT diagra in Figure (b), we know any single butterfly in the Stage s of radix- -point DIF FFT can be illustrated in the diagra forat as in Figure 7. x[n+/ s ] n od s s Figure 7. Single butterfly in Stage s of -pt radix- DIF FFT. The butterfly with as the upper input and x[n+/s] as the s nod s lower input uses as twiddle factor. For exaple, in the stage of Figure, the butterfly with the upper input x[] and x[+8/], naely x[6] as lower input 8 od 8 uses twiddle factor = 8. Hence, we have the following property for the radix- DIF FFT diagra: Two butterflies in stage s as illustrated in Figure 8(a) can be coputed by loading one twiddle factor, where s = ( n od ) s as illustrated in Figure 8(b). x[n+/ s+ ] x[n+/ s ] x[n+3/ s+ ] +/ x[n+/ s+ ] x[n+/ s ] x[n+3/ s+ ] -j (a) (b) Figure 8. Two butterflies coputation using one twiddle factor in DIF FFT diagra. Likewise, after applying TFRM to DIT FFT diagra, we have the siilar property for radix- DIT FFT diagra: Two butterflies in stage s as illustrated in Figure 9(a) can be coputed by loading one twiddle factor, where = (n od s ) s- as illustrated in Figure 9(b). x[n+/ s ] x[n+/ s+ ] x[n+3/ s+ ] +/ (a) x[n+/ s ] x[n+/ s+ ] x[n+3/ s+ ] -j Figure 9. Two butterflies coputation using one twiddle factor in DIT FFT diagra. III. FFT IMPLEMETATIOS TFRM and TFBBGM can reduce the nuber of eory references due to twiddle factors, thus decreasing the nuber of clock cycles. However, they also increase the code coplexity to soe extent, thus increasing the nuber of clock cycles. In this section, these ethods are ipleented (b) ISB: IMECS 9

4 Proceedings of the International MultiConference of Engineers and Coputer Scientists 9 Vol II IMECS 9, March 8 -, 9, Hong Kong with iterative and recursive codes respectively. To perfor thorough study on different FFT code perforance, we further expand those iterative codes applied with TFBBGM to ake the in different iterative structures which require fewer loops but take ore code space. A. DIF/DIT FFT with TFBBGM and TFRM TFRM reduces the eory references due to twiddle factor by half in each stage of coputation, and coputes the butterflies in last two stages without twiddle factors [3], so the nuber of eory references due to twiddle factors is reduced to (log -) /. TFBBGM reduces the nuberof eory references due to twiddle factor by grouping the butterflies with identical twiddle factor and the butterflies with twiddle factor do not need twiddle factor to coplete ultiplication, so the nuber of eory references due to twiddle factor is /-. After applying TFRM and TFBBGM together, the nuber of eory references due to twiddle factor in the new radix- -points DIF FFT code will be reduced to /-. Figure shows the coputation diagra of a 8-points radix- DIF-FFT with TFRM and TFBBGM. Since the butterflies coputed in the last step do not need twiddle factor due to the fact that =, only twiddle factors are required. Figure. Radix- DIF FFT diagra with TFBBGM and TFRM. e also apply TFBBGM and TFRM to radix- DIT FFT. Like radix- DIF FFT with TFBBGM and TFRM, the nuber of eory references due to twiddle factor will be greatly reduced. However, due to the difference of DIF and DIT FFT, the input of radix- DIT FFT should be in bit-reversed order before TFBBGM and TFRM are applied together to radix- DIT FFT. Figure shows the coputation diagra of 8-points radix- DIT FFT with TFBBGM and TFRM. Figure. Radix- DIT FFT diagra with TFBBGM and TFRM. Fro the diagra, it is easy to see that only twiddle factor are used during coputation. Since =, twiddle factor will not be loaded in Stage. Hence, only twiddle factors are loaded during the coputation. B. Recursive DIF and DIT FFT ipleentation -point radix- DIF and DIT FFT can be prograed in recursive structures which will decrease the code coplexity to soe extent. Like iterative code structure, TFBBGM and TFRM can still be applied to the recursive code ipleentation of -point radix- DIF and DIT FFT. Recursive C code ipleentation is also based on the FFT diagra, but the way butterflies are grouped is different fro Iterative C code. Figure shows the coputation and the partitioning of the 8-points radix- DIF and DIT FFT diagra. Figure. Partitioning of DIF and DIT FFT diagra according to overlapping twiddle factors. The diagra is also partitioned into stages and the butterflies in the sae stage are grouped according to their positions, not according to the sae twiddle factor. Thus, butterflies which overlap with each other are grouped. The butterflies in Stage s of -point radix- DIF and DIT FFT are divided into s- groups. All butterflies are coputed according to the group order. E.g. butterflies in group 3 are coputed after butterflies in group are coputed, and butterflies in the sae group are coputed fro top to botto. In Figure (a), twiddle factors are increased by value s- for butterflies in the sae group in Stage s. e apply TFRM, TFBBGM on recursive DIF FFT and recursive DIT FFT respectively, thus we have recursive DIF FFT with TFRM, recursive DIF FFT with TFBBGM, recursive DIT FFT with TFRM and recursive DIT FFT with TFBBGM. Since TFBBGM and TFRM can be applied together, we apply both of the to get recursive DIF FFT with TFBBGM & TFRM and recursive DIT FFT with TFBBGM & TFRM. Experients of these codes with different input sizes are perfored to get the clock cycle data in the following Section. C. DIF and DIT FFT with expansion In order to copletely study how the code techniques reflect the perforance, we further expand the iterative DIF and DIT FFT applied with TFBBGM (as illustrated in coputation diagra in Figure 5 and 6) into 3 steps: For iterative DIF FFT with TFBBGM in Figure 5, the first step coputes butterflies with twiddle factor as, where is odd nuber; the second step groups the butterflies with identical twiddle factors and copute the in only two loops, the third step coputes the butterflies with twiddle factor =, naely coputes butterflies without ultiplication. For iterative DIT FFT with TFBBGM in Figure 6, the first step coputes butterflies without ultiplication like third step in iterative DIF FFT with TFBBGM, the second step is siilar to the second step as iterative DIF FFT with TFBBGM with only the order changed, and the third step is the siilar to step in DIF, with order changed. Thus we get another two codes: iterative DIF FFT with TFBBGM in 3 steps and iterative DIT FFT with TFBBGM in 3 steps. ISB: IMECS 9

5 Proceedings of the International MultiConference of Engineers and Coputer Scientists 9 Vol II IMECS 9, March 8 -, 9, Hong Kong e also apply the sae further expansion to iterative DIF FFT with TFBBGM & TFRM and iterative DIT FFT with TFBBGM & TFRM to get iterative DIF FFT with TFBBGM & TFRM in 3 steps and iterative DIT FFT with TFBBGM & TFRM in 3 steps. VI. PERFORMACE EVALUATIO e have ade total different FFT codes based on different integrations of iterative, recursive, TFBBGM, TFRM with further expansion. Due to the space liitation, FFT codes are identified using shortcut. Code : Iterative DIF FFT, Code : Iterative DIF FFT with TFBBGM, Code 3: Iterative DIF FFT with TFBBGM in 3 steps, Code : Iterative DIF FFT with TFRM, Code 5: Iterative DIF FFT with TFBBGM and TFRM, Code 6: Iterative DIF FFT with TFBBGM and TFRM in 3 Steps, Code 7: Recursive DIF FFT, Code 8: Recursive DIF FFT with TFBBGM, Code 9: Recursive DIF FFT with TFRM, Code : Recursive DIF FFT with TFBBGM and TFRM, Code : Iterative DIT FFT, Code : Iterative DIT FFT with TFBBGM, Code 3: Iterative DIT FFT with TFBBGM in 3 steps, Code : Iterative DIT FFT with TFRM, Code 5: Iterative DIT FFT with TFBBGM and TFRM, Code 6: Iterative DIT FFT with TFBBGM and TFRM in 3 Steps, Code 7: Recursive DIT FFT, Code 8: Recursive DIT FFT with TFBBGM, Code 9: Recursive DIT FFT with TFRM and Code : Recursive DIT FFT with TFBBGM and TFRM. These codes are tested on ajor DSP processors in the industry: TI TMS3C6xx, ARM ARM7TDMI processor, ADSP-TS TigerSHARC processor, and freescale SC3 StarCore DSP. After testing each FFT code on DSP processors at different input sizes of 5, and 8, we sort the FFT codes for each DSP processor in ters of clock cycle. As illustrated in Figure 3, we find that the recursive codes always interleave between iterative codes. This is contrary to the belief that recursive code is always slower than iterative code. Due to space liitation, we use digit to to identify code to code in Figure 3. e also copare the slowest code and the fastest code within recursive FFT and iterative FFT codes. But for the space liitation, we could not list the table to copare their speed, here the fastest code is copared with slowest code through Figure 3 only. For instance, we copare the nuber of clock cycle of the fastest recursive code with the slowest recursive code when platfor is freescale SC3 StarCore DSP and the input is 8-pts, we find the fastest one is. faster than slowest one, and siilar result applies to the rest cases. Such as FFT codes tested on the platfor TI TMS3C6xx processor at input size of 5, the fastest iterative code is.8 ties faster than the slowest itetative code. Hence, it is clear that he code techniques presented in this paper can increase the FFT code execution speed around ties within iterative codes or recursive codes. ISB: IMECS 9

6 Proceedings of the International MultiConference of Engineers and Coputer Scientists 9 Vol II IMECS 9, March 8 -, 9, Hong Kong Figure 3. FFT codes Clock cycles on DSP architectures at input of 5, and 8 pts. V. COCLUSIO e presented a systeatic and synergic study on the efficiency of different FFT software ipleentations. Different code techniques such as recursive, iterative, TFBBGM, TFRM with further expansion were explored. An extensive experient was conducted for input fro 5 to 8 points. e ipleented FFT codes on different DSP processors. Contrary to the coon belief that recursive progras are slower than iterative progras, we find that recursive progras are not necessarily slower for coonly used FFT. Instead its perforances are deterined by any factors. Also we find the code techniques presented in this paper can increase FFT code execution speed ties for both iterative codes and recursive codes. REFERECES [] C.S. Burrus and T.. Parks, DFT/FFT and Convolution Algoriths and Ipleentation, Y John iley & Sons, 985. [] A. V. Oppenhei and C. M. Rader, nd ed., Discrete-Tie Signal Processing. Upper Saddle River, J: Prentice-Hall, 989. [3] J.. Cooley and J.. Tukey, An algorith for the achine calculation of coplex Fourier series, Math. Copu., vol. 9, pp. 97-3, 965. [] G.D. Bergland, A Radix-Eight Fast-Fourier Transfor Subroutine for Real-Valued Series, IEEE Trans. Electroacoust., vol. 7, no., pp. 38-, June 969. [5] R.C. Singleton, An Algorith for Coputing the Mixed Radix Fast Fourier Transfor, IEEE Trans. Audio Electroacoust., vol., no., pp. 93-3, June 969. [6] P. Duhael, and H. Hollann, Split Radix FFT Algorith, Electronics Letters, vol., pp. -6, Jan. 5, 98. [7] D. Takahashi, An Extended Split-Radix FFT Algorith, IEEE Signal Processing Letters, vol. 8, no. 5, pp. 5-7, May. [8] A. R. Varkonyi-Koczy, A Recursive Fast Fourier Transfor Algorith, IEEE Trans. Circuits and Systes, II, vol., pp. 6-66, Sep [9] A. Saidi, Deciation-in-Tie-Frequency FFT Algorith, Proc. ICAPSS, pp. III:53-56, April 99. [] B.M. Baas, A low-power, high-perforance, -point FFT processor IEEE J.Solid-State Circuits, vol. 3, issue 3, pp March 999. [] Mathwork Inc., Matlab function reference FFT, l?bb= [] Y. Jiang, Y. Tang, and Y. ang, Twiddle-factor-based FFT algorith with reduced eory access, Proc. IDPDS, pp ,. [3] Y. Tang, L. Qian, Y. ang, and Y. Jiang, Twiddle Factor Based Meory Reduction Method for FFT Ipleentation on DSP. to be published [] Texas Instruent, TMS3C6x DSP Library Prograer's Reference (Rev. B), SPRU565A, Oct. 3, 3. [5] Tanner.R. A recursive approach to low coplexity codes IEEE Transactions on Inforation Theory. ISB: IMECS 9

Research Article Reconfigurable and Reusable Mutual Module Based Parameterization Approach for DWT and FFT Algorithm

Research Article Reconfigurable and Reusable Mutual Module Based Parameterization Approach for DWT and FFT Algorithm Research Journal of Applied Sciences, Engineering and Technology 7(22): 4706-4713, 2014 DOI:10.19026/rjaset.7.855 ISSN: 2040-7459; e-issn: 2040-7467 2014 Maxwell Scientific Publication Corp. Subitted:

More information

Advanced Digital Signal Processing Part 4: DFT and FFT

Advanced Digital Signal Processing Part 4: DFT and FFT Advanced Digital Signal Processing Part 4: DFT and FFT Gerhard Schmidt Christian-Albrechts-Universität zu Kiel Faculty of Engineering Institute of Electrical and Information Engineering Digital Signal

More information

Design and Implementation of Pipelined Floating Point Fast Fourier Transform Processor

Design and Implementation of Pipelined Floating Point Fast Fourier Transform Processor IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 11 April 2015 ISSN (online): 2349-6010 Design and Implementation of Pipelined Floating Point Fast Fourier Transform

More information

International Journal of Engineering Research-Online A Peer Reviewed International Journal

International Journal of Engineering Research-Online A Peer Reviewed International Journal RESEARCH ARTICLE ISSN: 2321-7758 FPGA IMPLEMENTATION OF FFT PROCESSOR USING DIFFERENT ALGORITHMS YOJANA A. JADHAV 1, Prof. A. P. HATKAR 2 1 Student, Dept. of E & TC, SVIT COE, Nasik, India 2 Prof, Dept.

More information

A Novel VLSI Based Pipelined Radix-4 Single-Path Delay Commutator (R4SDC) FFT

A Novel VLSI Based Pipelined Radix-4 Single-Path Delay Commutator (R4SDC) FFT I J C T A, 9(6), 2016, pp. 2767-2775 International Science Press ISSN: 0974-5572 A Novel VLSI Based Pipelined Radix-4 Single-Path Delay Commutator (R4SDC) FFT Manimaran A.* and S.K. Sudeer** ABSTRACT Fast

More information

An Area Efficient 2D Fourier Transform Architecture for FPGA Implementation

An Area Efficient 2D Fourier Transform Architecture for FPGA Implementation 2 Features An Area Efficient 2D Fourier Transform Architecture for FPGA Implementation Atin Mukherjee 1 and Debesh Choudhury 2 1 Department of Electronics and Communication Engineering, Dr. B.C Roy Polytechnic,

More information

International Journal of Advanced Research in Electronics and Communication Engineering (IJARECE) Volume 6, Issue 6, June 2017

International Journal of Advanced Research in Electronics and Communication Engineering (IJARECE) Volume 6, Issue 6, June 2017 AN EFFICIENT VLSI IMPLEMENTATION OF MULTIPLIER LESS FFT DESIGN Mrs.N.Madhubala and Dr.A.Kavitha,Associate Professor Abstract The proposed system is to implement a novel approach to implement multiplier

More information

Extension of a Virtual Refrigerant Charge Sensor

Extension of a Virtual Refrigerant Charge Sensor Purdue University Purdue e-pubs International Refrigeration and Air Conditioning Conference School of Mechanical Engineering 2012 Extension of a Virtual Refrigerant Charge Sensor Woohyun i ki644@purdue.edu

More information

Scheduling Smart Home Appliances Using Mixed Integer Linear Programming

Scheduling Smart Home Appliances Using Mixed Integer Linear Programming 211 5th IEEE Conference on Decision and Control and European Control Conference (CDC-ECC) Orlando, FL, USA, Deceber 12-15, 211 Scheduling Sart Hoe Appliances Using Mixed Integer Linear Prograing Kin Cheong

More information

Implementation of High Throughput Radix-16 FFT Processor

Implementation of High Throughput Radix-16 FFT Processor International OPEN ACCESS Journal Of Modern Engineering Research (IJMER) Implementation of High Throughput Radix-16 FFT Processor K Swetha sree 1, Mr. T. Lakshmi Narayana 2 1, 2 Department of ECE, Andhra

More information

High Speed Reconfigurable FFT Processor Using Urdhava Thriyambakam

High Speed Reconfigurable FFT Processor Using Urdhava Thriyambakam High Speed Reconfigurable FFT Processor Using Urdhava Thriyambakam P. Mounica M.Tech (VLSI Design), Dept of ECE, B. Rekha Assistant Professor, Dept of ECE, Dr.P.Ram Mohan Rao FIE, CE(I), MISTE,MISH, MISCEE,

More information

Low Complexity FFT/IFFT Processor Applied for OFDM Transmission System in Wireless Broadband Communication

Low Complexity FFT/IFFT Processor Applied for OFDM Transmission System in Wireless Broadband Communication International Journal of Computer Electrical Engineering, Vol. 6, o., April 14 Low Complexity FFT/IFFT Processor Applied for OFDM Transmission System in Wireless Broadb Communication M. Arioua, Member,

More information

Drying Dynamics of Ulva Prolifera with the Heat Pump Microwave Method

Drying Dynamics of Ulva Prolifera with the Heat Pump Microwave Method Drying Dynaics of Ulva Prolifera with the Heat Pup Microwave Method Dan Su, Shujun Li *, Fengin Zhao, Youfu Cao Chinese Acadey of Agricultural Mechanization Sciences Beijing, China Abstract The drying

More information

EFFICIENT ARCHITECTURE FOR PROCESSING OF TWO INDEPENDENT DATA STREAMS USING RADIX-2 FFT

EFFICIENT ARCHITECTURE FOR PROCESSING OF TWO INDEPENDENT DATA STREAMS USING RADIX-2 FFT EFFICIENT ARCHITECTURE FOR PROCESSING OF TWO INDEPENDENT DATA STREAMS USING RADIX-2 FFT Artham Lasya 1 Dr.Shailendra Mishra lasya116@gmail.com 1 mishra22feb@rediffmail.com 2 1 PG Scholar, VLSI,Bharath

More information

CHAPTER 4 EXPERIMENTAL STUDIES

CHAPTER 4 EXPERIMENTAL STUDIES 113 CHAPTER 4 EXPERIMENTAL STUDIES 41 INTRODUCTION Based on the results of the theoretical studies on the air-cooled GAX based vapour absorption refrigeration syste that were carried out, the design and

More information

Technical Description

Technical Description Overview are differentiated depending on applied edia. Light, one of the edia, is also utilized for a which is called a photoelectric. It is a non-contact type which is applicable to sensing presence,

More information

Technical Description

Technical Description Overview are differentiated depending on applied edia. Light, one of the edia, is also utilized for a which is called a photoelectric. It is a non-contact type which is applicable to sensing presence,

More information

SIMULATION STUDY ON HEAT TRANSFER RATE ON AIR CONDITIONING CONDENSER BY VARYING MATERIAL PROPERTIES AND ORIENTATION

SIMULATION STUDY ON HEAT TRANSFER RATE ON AIR CONDITIONING CONDENSER BY VARYING MATERIAL PROPERTIES AND ORIENTATION SIMULATION STUDY ON HEAT TRANSFER RATE ON AIR CONDITIONING CONDENSER BY VARYING MATERIAL PROPERTIES AND ORIENTATION MUNIGONDA VIJAY KUMER M.TECH (theral engineering) MLR Institute of Technology, Hyderabad.

More information

Technical Description

Technical Description overview Sensors are differentiated depending on applied edia. Light, one of the edia, is also utilized for a which is called a photoelectric. It is a non-contact type which is applicable to sensing presence,

More information

A Comparative Study of Different FFT Architectures for Software Defined Radio

A Comparative Study of Different FFT Architectures for Software Defined Radio A Comparative Study of Different FFT Architectures for Software Defined Radio Shashank Mittal, Md. Zafar Ali Khan, and M.B. Srinivas Center for VLSI and Embedded System Technologies International Institute

More information

AN10943 Decoding DTMF tones using M3 DSP library FFT function

AN10943 Decoding DTMF tones using M3 DSP library FFT function Rev. 1 17 June 2010 Application note Document information Info Content Keywords M3, LPC1300, LPC1700, DSP, DFT, FFT, DTMF Abstract This application note and associated source code example demonstrates

More information

THE combination of the multiple-input multiple-output

THE combination of the multiple-input multiple-output IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS I: REGULAR PAPERS, VOL. 54, NO. 4, APRIL 2007 807 Design of an FFT/IFFT Processor for MIMO OFDM Systems Yu-Wei Lin and Chen-Yi Lee, Member, IEEE Abstract In this

More information

Implementing Efficient Split-Radix FFTs in FPGAs

Implementing Efficient Split-Radix FFTs in FPGAs Implementing Efficient Split-Radix FFTs in FPGAs Radix-2 and Radix-4 FFTs are common Many applications benefit from other lengths OFDM Transceiver, Digital Video Broadcasts, and software defined radios

More information

PRODUCT INFORMATION VICOTEC320 AIR QUALITY TUNNEL SENSORS TO CONTROL VENTILATION IN ROAD TUNNELS. Tunnel sensors

PRODUCT INFORMATION VICOTEC320 AIR QUALITY TUNNEL SENSORS TO CONTROL VENTILATION IN ROAD TUNNELS. Tunnel sensors PRODUCT INFORMATION VICOTEC320 AIR QUALITY TUNNEL SENSORS TO CONTROL VENTILATION IN ROAD TUNNELS Tunnel sensors RELIABLE AIR QUALITY MEASUREMENT IN ROAD TUNNELS Continuously onitoring air quality and visibility

More information

Floating Point Fast Fourier Transform v2.1. User manual

Floating Point Fast Fourier Transform v2.1. User manual User manual Introduction The Fast Fourier Transform (FFT) is an efficient algorithm for computing the Discrete Fourier Transform (DFT). This Intellectual Property (IP) core was designed to offer very fast

More information

PRODUCT PORTFOLIO OVERVIEW SENSOR SOLUTIONS: FOR MORE EFFICIENT AUTOMATION. Sensors, systems, and services

PRODUCT PORTFOLIO OVERVIEW SENSOR SOLUTIONS: FOR MORE EFFICIENT AUTOMATION. Sensors, systems, and services PRODUCT PORTFOLIO OVERVIEW SENSOR SOLUTIONS: FOR MORE EFFICIENT AUTOMATION Sensors, systes, and services SEAMLESSLY NETWORKED INDUSTRIAL COMMUNICATION AND SENSOR INTEGRATION Networked production and control

More information

We are IntechOpen, the first native scientific publisher of Open Access books. International authors and editors. Our authors are among the TOP 1%

We are IntechOpen, the first native scientific publisher of Open Access books. International authors and editors. Our authors are among the TOP 1% We are IntechOpen, the first native scientific publisher of Open Access books 3,350 108,000 1.7 M Open access books available International authors and editors Downloads Our authors are among the 151 Countries

More information

A 128-Point FFT/IFFT Processor for MIMO-OFDM Transceivers a Broader Survey

A 128-Point FFT/IFFT Processor for MIMO-OFDM Transceivers a Broader Survey A 128-Point FFT/IFFT Processor for MIMO-OFDM Transceivers a Broader Survey N. Devi Vasumathy #1, T. Vigneswaran *2 # Research Scholar, School of Electronics Engineering, VIT University, Vandalur Kelambakkam

More information

CHAPTER 7 APPLICATION OF 128 POINT FFT PROCESSOR FOR MIMO OFDM SYSTEMS. Table of Contents

CHAPTER 7 APPLICATION OF 128 POINT FFT PROCESSOR FOR MIMO OFDM SYSTEMS. Table of Contents 88 CHAPTER 7 APPLICATION OF 128 POINT FFT PROCESSOR FOR MIMO OFDM SYSTEMS Table of Contents Page No. 7.0 APPLICATION OF 128 POINT FFT PROCESSOR FOR MIMO OFDM SYSTEMS 89 7.1 Introduction 89 7.2 Types of

More information

IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 03, 2015 ISSN (online):

IJSRD - International Journal for Scientific Research & Development Vol. 3, Issue 03, 2015 ISSN (online): IJSRD - International Journal for Scientific Research & Developent Vol. 3, Issue 3, 215 ISSN (online): 2321-613 Theral Perforance of Waste Heat Recovery by using TPCT Heat Exchanger Charged with Nanofluid

More information

A Novel Architecture for Radix-4 Pipelined FFT Processor using Vedic Mathematics Algorithm

A Novel Architecture for Radix-4 Pipelined FFT Processor using Vedic Mathematics Algorithm IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 9, Issue 6, Ver. II (Nov - Dec. 2014), PP 23-31 A Novel Architecture for Radix-4 Pipelined

More information

Laboratory Exercise #6

Laboratory Exercise #6 ECEN4002/5002 Spring 2004 Digital Signal Processing Laboratory Laboratory Exercise #6 Using a Fast Fourier Transform Algorithm Introduction The symmetry and periodicity properties of the discrete Fourier

More information

REPRINT ZKG PROCESS PROCESS

REPRINT ZKG PROCESS PROCESS 4 Planning detail for integration of the into the existing plant peripherals a rotary feeder, the otor for 180 t/h of raw eal, for exaple, has a rating of 5.5 and during operation it uses less than 1.

More information

exsilentia Integrated Safety Lifecycle Tool

exsilentia Integrated Safety Lifecycle Tool Integrated Safety Lifecycle Tool Is it Tie to Upgrade Your Process Safety Tools to exsilentia Version 3? Design, operation and aintenance of Safety Instruented Systes (SIS) just got easier exsilentia Version

More information

Application Note 35. Fast Fourier Transforms Using the FFT Instruction. Introduction

Application Note 35. Fast Fourier Transforms Using the FFT Instruction. Introduction Application Note Fast Fourier Transforms Using the FFT Instruction The Fast Fourier Transform (FFT) is used in a variety of digital signal processing applications. This application note describes how to

More information

ENGINEERING STANDARD FOR FIRE-FIGHTING SPRINKLER SYSTEMS ORIGINAL EDITION. Nov. 1993

ENGINEERING STANDARD FOR FIRE-FIGHTING SPRINKLER SYSTEMS ORIGINAL EDITION. Nov. 1993 ENGINEERING STANDARD FOR FIRE-FIGHTING SPRINKLER SYSTEMS ORIGINAL EDITION Nov. 1993 This standard specification is reviewed and updated by the relevant technical coittee on Jan. 2000. The approved odifications

More information

COST REDUCTION OF SECTION CHANNEL BY VALUE ENGINEERING

COST REDUCTION OF SECTION CHANNEL BY VALUE ENGINEERING COST REDUCTION OF SECTION CHANNEL BY VALUE ENGINEERING 1 Mandar Joshi, 2 K A Rade, 1 Research scholar, Mechanical Engineering Department Bharti Vidyapeeth Deemed University College of Engineering,Pune-43,

More information

Eagle PIR-018 / PIR-045 / PIR-100 Outdoor Passive Infrared Detectors

Eagle PIR-018 / PIR-045 / PIR-100 Outdoor Passive Infrared Detectors Eagle PIR-018 / PIR-045 / PIR-100 Outdoor Passive Infrared Detectors Description The Eagle Series of PIR-018, PIR-045 and PIR-100 Outdoor Passive Infrared Detectors are designed for detection of intruders

More information

Easter Lily Leaf Unfolding Technique Royal Heins, Department of Horticulture, Michigan State University

Easter Lily Leaf Unfolding Technique Royal Heins, Department of Horticulture, Michigan State University 1 5+ years of Service UM I MNLA Minnesota Coercial Growers Bulletin Noveber 22 - Page 15 Easter Lily Leaf Unfolding Technique Royal Heins, Departent of Horticulture, Michigan State University Leaf counting

More information

PLANNING REPORT PROPOSED RESIDENTIAL PLAN OF SUBDIVISION

PLANNING REPORT PROPOSED RESIDENTIAL PLAN OF SUBDIVISION PLANNING REPORT PROPOSED RESIDENTIAL PLAN OF SUBDIVISION Part Lot 51, Lake Range Geographic County of Bruce Owner: Mystic Cove Developents Inc. Prepared by: Ron Davidson Land Use Planning Consultant Inc.

More information

Ministry of Agriculture and natural resources Natural Resource Management Directorate. A Field Guideline on Bench Terrace Design and Construction

Ministry of Agriculture and natural resources Natural Resource Management Directorate. A Field Guideline on Bench Terrace Design and Construction Ministry of Agriculture and natural resources Natural Resource Manageent Directorate A Field Guideline on Bench Terrace Design and Construction By Aklilu Mesfin October 2016 Contents 1. Introduction and

More information

PROCEEDINGS SOLAR 95

PROCEEDINGS SOLAR 95 PROCEEDINGS OF GOlDEN, C0kOf?~W0 8&i#%V3 SOLAR 95 THE 1995 AMERICAN SOLAR ENERGY SOCIETY ANNUAL CONFERENCE Minneapolis, Minnesota July 1520,1995 Editors: R. Capbell-Howe B. Wilkins-Crowder Aerican Solar

More information

Precision Air Conditioners

Precision Air Conditioners MCAC-- Coercial Air Conditioner Business Units Midea Air Conditioning and Refrigeration Sector Add: est region of Midea coercial air conditioner departent, Industry Avenue, Beijiao, Shunde, Foshan, Guangdong,

More information

Numerical Study on the Performance Characteristics of a Rotary Regenerator according to Design Parameters

Numerical Study on the Performance Characteristics of a Rotary Regenerator according to Design Parameters Nuerical Study on the Perforance Characteristics of a Rotary Regenerator according to Design Paraeters HYUN JOON CHUNG 1, DOWON CHA 1, HOON KANG 2, YONGCHAN KIM 2 1 School of Mechanical Engineering Korea

More information

Indoor Dimensions units Ducted Type LG Electronics 6.2 Outdoor units Ducted Type CALOR SRL LG Electronics

Indoor Dimensions units Ducted Type LG Electronics 6.2 Outdoor units Ducted Type CALOR SRL LG Electronics Multi Split LG Multi Split syste is an advanced air conditioning syste of superior quality that has the ability to operate at different teperatures and fan speeds in individual roos. The ulti split syste

More information

MHI Centrifugal Chiller

MHI Centrifugal Chiller MHI Centrifugal Chiller Constant speed Variable speed HFC-134a GART GART-I & series 1934kW(RT) ~18986kW(4RT) MHI Centrifugal Chiller Constant speed Variable speed HFC-134a GART & GART-I series GART-H GART-HI

More information

Advanced Hardware and Software Technologies for Ultra-long FFT s

Advanced Hardware and Software Technologies for Ultra-long FFT s Advanced Hardware and Software Technologies for Ultra-long FFT s Hahn Kim, Jeremy Kepner, M. Michael Vai, Crystal Kahn HPEC 2005 21 September 2005 HPEC 2005-1 This work is sponsored by the Department of

More information

Performance Comparison of Ejector Expansion Refrigeration Cycle with Throttled Expansion Cycle Using R-170 as Refrigerant

Performance Comparison of Ejector Expansion Refrigeration Cycle with Throttled Expansion Cycle Using R-170 as Refrigerant International Journal of Scientific and Research Publications, Volume 4, Issue 7, July 2014 1 Performance Comparison of Ejector Expansion Refrigeration Cycle with Throttled Expansion Cycle Using R-170

More information

ANALYSIS OF A BUBBLE PUMP DRIVEN ABSORPTION REFRIGERATION SYSTEM (EINSTEIN-SZILARD REFRIGERATOR VARIANT)

ANALYSIS OF A BUBBLE PUMP DRIVEN ABSORPTION REFRIGERATION SYSTEM (EINSTEIN-SZILARD REFRIGERATOR VARIANT) International Journal of Mechanical Engineering and Technology (IJMET) Volue 7, Issue 6, Noveber Deceber 2016, pp.435 442, Article ID: IJMET_07_06_042 Available online at http://www.iaee.co/ijet/issues.asp?jtype=ijmet&vtype=7&itype=6

More information

Design and Implementation of Real-Time 16-bit Fast Fourier Transform using Numerically Controlled Oscillator and Radix-4 DITFFT Algorithm in VHDL

Design and Implementation of Real-Time 16-bit Fast Fourier Transform using Numerically Controlled Oscillator and Radix-4 DITFFT Algorithm in VHDL International Research Journal of Engineering and Technology (IRJET) e-iss: 2395-0056 Volume: 03 Issue: 05 ay-2016 www.irjet.net p-iss: 2395-0072 Design and Implementation of Real-Time 16-bit Fast Fourier

More information

Effect Of Special Organic Fertilizer For Phyllostachys Praecox On Soil Basic Properties Under Intensive Cultivation Management

Effect Of Special Organic Fertilizer For Phyllostachys Praecox On Soil Basic Properties Under Intensive Cultivation Management Effect Of Special Organic Fertilizer For Phyllostachys Praecox On Soil Basic Properties Under Intensive Cultivation Manageent Wei ZHANG 1,Jian-ping WU 2, Jin-zhong XIE 1* (1.Research Institute of Subtropical

More information

IN THE MATTER of the Resource Management Act AND applications for resource consent under Part 6

IN THE MATTER of the Resource Management Act AND applications for resource consent under Part 6 BEFORE THE PORIRUA CITY COUNCIL AND GREATER WELLINGTON REGIONAL COUNCIL IN THE MATTER of the Resource Manageent Act 1991 AND applications for resource consent under Part 6 BETWEEN WELLINGTON REGIONAL COUNCIL

More information

DUAL TECHNOLOGY OCCUPANCY/VACANCY SENSOR SWITCH (WS XX DT XX/WS OS DTDR XX)

DUAL TECHNOLOGY OCCUPANCY/VACANCY SENSOR SWITCH (WS XX DT XX/WS OS DTDR XX) OVERVIEW The Dual Technology Occupancy/Vacancy Sensor Switch applies Lutron s exclusive XCT Technology to the ultrasonic as well as the passive infrared technology in this sensor to create a product that

More information

EXPERIMENTAL ANALYSIS OF SOLAR AIR DRYER FOR AGRICULTURAL PRODUCTS

EXPERIMENTAL ANALYSIS OF SOLAR AIR DRYER FOR AGRICULTURAL PRODUCTS EXPERIMENTAL ANALYSIS OF SOLAR AIR DRYER FOR AGRICULTURAL PRODUCTS Sushrut S. Halewadiath 1, Prajwal Subbhapurath 2, Naveen Havaldar 3, Karthik Hunashikatti 4, Siddharth Gokhale 5 1 Assistant Professor,

More information

A Novel Coefficient Ordering based Low Power Pipelined Radix-4 FFT Processor for Wireless LAN Applications

A Novel Coefficient Ordering based Low Power Pipelined Radix-4 FFT Processor for Wireless LAN Applications 128 IEEE Transactions on Consumer Electronics, Vol. 4, No. 1, FEBRUARY 2003 A Novel Coefficient Ordering based Low Power Pipelined Radix-4 FFT Processor for Wireless LAN Applications M. Hasan, T. Arslan

More information

A Continuous-Flow Mixed-Radix Dynamically-Configurable FFT Processor

A Continuous-Flow Mixed-Radix Dynamically-Configurable FFT Processor A Continuous-Flow Mixed-Radix Dynamically-Configurable FFT Processor By ANTHONY T. JACOBSON B.S. (University of Idaho) December, 2004 THESIS Submitted in partial satisfaction of the requirements for the

More information

Easily Testable and Fault-Tolerant FFT Butterfly Networks

Easily Testable and Fault-Tolerant FFT Butterfly Networks IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS II: ANALOG AND DIGITAL SIGNAL PROCESSING, VOL. 47, NO. 9, SEPTEMBER 2000 919 Easily Testable and Fault-Tolerant FFT Butterfly Networks Jin-Fu Li, Shyue-Kung Lu,

More information

VLSI implementation of high speed and high resolution FFT algorithm based on radix 2 for DSP application

VLSI implementation of high speed and high resolution FFT algorithm based on radix 2 for DSP application Neonode Inc From the Selectedors of Dr. Rozita Teymourzadeh, CEng. 2007 VLSI implementation of high speed and high resolution FFT algorithm based on radix 2 for DSP application Nooshin Mahdavi Rozita Teymourzadeh

More information

Improving Control of Dual-Duct Single-Fan Variable Air Volume Systems

Improving Control of Dual-Duct Single-Fan Variable Air Volume Systems Improving Control of Dual-Duct Single-Fan Variable Air Volume Systems Guanghua Wei, P.E. Joe Martinez Tom Minihan Assistant Research Engineer Research Engineering Associate Graduate Student Tim Brundidge

More information

10TH ANNUAL GREENSBORO RUN/WALK FOR AUTISM SATURDAY, SEPTEMBER 29, 2018 GREENSBORO JAYCEE PARK 9 AM

10TH ANNUAL GREENSBORO RUN/WALK FOR AUTISM SATURDAY, SEPTEMBER 29, 2018 GREENSBORO JAYCEE PARK 9 AM ptai n H andbook Tea Ca 10TH ANNUAL GREENSBORO RUN/WALK FOR AUTISM SATURDAY, SEPTEMBER 29, 2018 GREENSBORO JAYCEE PARK 9 AM 10TH ANNUAL GREENSBORO RUN/WALK FOR AUTISM SATURDAY, SEPT. 29 GreensboroRunWalkforAutis.org

More information

Infrared sensor, Pyroelectric coefficient, electrical conductivity, Percolation threshold.

Infrared sensor, Pyroelectric coefficient, electrical conductivity, Percolation threshold. Military Technical College Kobry El-Kobbah, Cairo, Egypt 10 th International Conference on Electrical Engineering ICEENG 2016 yroelectric araeters Measureent of Infrared Sensor Based on ANI- CSAVDFBaTiO

More information

City of Tamarac Parks, Recreation, and Social Services Master Plan

City of Tamarac Parks, Recreation, and Social Services Master Plan City of Taarac Parks, Recreation, and Social Services Master Plan Executive Suary Deceber 2014 Purpose Initially planned as a retireent counity by developer Kenneth E. Behring, the City of Taarac has always

More information

THE INTELLIGENT CHOICE IN COMFORT SINGLE & MULTI TYPE AIR CONDITIONERS

THE INTELLIGENT CHOICE IN COMFORT SINGLE & MULTI TYPE AIR CONDITIONERS THE INTELLIGENT CHOICE IN COMFORT SINGLE & MULTI TYPE AIR CONDITIONERS Fujitsu General air conditioners are selected and loved by people around the world. P4 P6 ASHB09/12/18LD P9 Today, the full line of

More information

Warning. Specifications, designs and other content appearing in this brochure are current as of May 2013 but subject to change without notice.

Warning. Specifications, designs and other content appearing in this brochure are current as of May 2013 but subject to change without notice. arning sk a qualified installer or contractor to install this product. Do not try to install the product yourself. Iproper installation can result in water or refrigerant leakage, electrical shock, fire

More information

RECONSTRUCTION PLAN OF OTSUCHI TOWN, KAMIHEI COUNTY, IWATE PREFECTURE

RECONSTRUCTION PLAN OF OTSUCHI TOWN, KAMIHEI COUNTY, IWATE PREFECTURE Journal of JSCE, Vol. 1, 242-250, 2013 Special Topic - 2011 Great East Japan Earthquake (Invited Paper) RECONSTRUCTION PLAN OF OTSUCHI TOWN, KAMIHEI COUNTY, IWATE PREFECTURE Yu NAKAI 1 1 Meber of JSCE,

More information

A tool for professionals.

A tool for professionals. 070097 A tool for professionals RU EN www.protongroup.org FR ABOUT COMPANY Air heating and ventilation equipent PROTON GROUP is a Ukrainian producer of the equipent for air heating and ventilation. As

More information

R10 IV B.Tech I Semester Supplementary Examinations, Feb/Mar REFRIGERATION & AIR CONDITIONING (Mechanical Engineering)

R10 IV B.Tech I Semester Supplementary Examinations, Feb/Mar REFRIGERATION & AIR CONDITIONING (Mechanical Engineering) Set No. 1 IV B.Tech I Seester Suppleentary Exainations, Feb/Mar - 2015 REFRIGERATION & AIR CONDITIONING (Mechanical Eineeri) Tie: 3 hours Max. Marks: 75 Anser any FIVE Questions All Questions carry equal

More information

high performance great savings

high performance great savings high perforance great savings bringing solar to every Honeywell solar water heating syste With cost and energy savings like never before, Honeywell solar water heating systes address heating requireents

More information

City Hall 455 North Rexford Drive 4th Floor Conference Room B Beverly Hills, CA Tuesday, December11, :15 PM AGENDA

City Hall 455 North Rexford Drive 4th Floor Conference Room B Beverly Hills, CA Tuesday, December11, :15 PM AGENDA Beverly Hills City Council LiaisonlRecreation and Parks Coission Coittee will conduct a Special Meeting, at the following tie and place, and will address the agenda listed below: City Hall 455 North Rexford

More information

SAFETY CONSIDERATIONS

SAFETY CONSIDERATIONS Installation Instructions NOTE: Read and becoe fanfiliar with these instructions before beginning installation. SAFETY CONSIDERATIONS 1' T_ansparent Suction Discharge Tubing Condensate Assebly Pup Iproper

More information

HB0267 CoreFFT v7.0 Handbook

HB0267 CoreFFT v7.0 Handbook HB0267 CoreFFT v7.0 Handbook 12 2016 Microsemi makes no warranty, representation, or guarantee regarding the information contained herein or the suitability of its products and services for any particular

More information

A High-Throughput Radix-16 FFT Processor With Parallel and Normal Input/Output Ordering for IEEE c Systems

A High-Throughput Radix-16 FFT Processor With Parallel and Normal Input/Output Ordering for IEEE c Systems 1752 IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS I: REGULAR PAPERS, VOL. 59, NO. 8, AUGUST 2012 A High-Throughput Radix-16 FFT Processor With Parallel and Normal Input/Output Ordering for IEEE 802.15.3c

More information

Pneumatic Seed Drill DL. The Inventors of Pneumatic Seeding Technology

Pneumatic Seed Drill DL. The Inventors of Pneumatic Seeding Technology Pneuatic Seed Drill DL The Inventors of Pneuatic Seeding Technology Kverneland Mounted Pneuatic Seed Drill DL 12 The greatest challenge facing agricultural producers today is how to produce food in constant

More information

Dry. The vacuum kiln. V-Basic V-Comfort V-Premium. energy saving efficient

Dry. The vacuum kiln. V-Basic V-Comfort V-Premium. energy saving efficient drying systes DRY The vacuu kiln energy saving efficient Actively pursuing a cliateneutral industry - because wood is our passion Vacuu kilns for sawn and construction tiber ranging fro 1.5 ³ to 100 ³

More information

P4490 Kill A Watt Edge Operation Manual

P4490 Kill A Watt Edge Operation Manual P4490 Kill A att Edge Operation Manual Feature Locations : ON / OFF Key Tank you for purcasing te P4490 Kill A att Edge. Tis operating anual will provide an overview of te product, safety instructions,

More information

Do you want a versatile solution to make significant savings? AIR-TO-WATER HEAT PUMP

Do you want a versatile solution to make significant savings? AIR-TO-WATER HEAT PUMP Do you want a versatile solution to ake significant savings? AIR-TO-WATER EAT PUMP ESTIA TO MAKE SIGNIFICANT SAVINGS Toshiba ESTIA air-to-water heat pups are the ideal copact solution for delivering the

More information

A compression algorithm for field programmable gate arrays in the space environment

A compression algorithm for field programmable gate arrays in the space environment Calhoun: The NPS Institutional Archive Theses and Dissertations Thesis Collection 2011-12 A compression algorithm for field programmable gate arrays in the space environment Humberd, Caleb J. Monterey,

More information

Reconfigurable FPGA-Based FFT Processor for Cognitive Radio Applications

Reconfigurable FPGA-Based FFT Processor for Cognitive Radio Applications Reconfigurable FPGA-Based FFT Processor for Cognitive Radio Applications Mário Lopes Ferreira (B), Amin Barahimi, and João Canas Ferreira INESC TEC and Faculty of Engineering, University of Porto, Rua

More information

Efficient FFT Network Testing and Diagnosis Schemes

Efficient FFT Network Testing and Diagnosis Schemes IEEE TRANSACTIONS ON VERY LARGE-SCALE INTEGRATION (VLSI) SYSTEMS, VOL. 10, NO. 3, JUNE 2002 267 Efficient FFT Network Testing and Diagnosis Schemes Jin-Fu Li and Cheng-Wen Wu, Senior Member, IEEE Abstract

More information

THE GREAT BRITISH BOILER. Visit Call Get advice, latest prices and help on choosing the right boiler for you.

THE GREAT BRITISH BOILER. Visit   Call Get advice, latest prices and help on choosing the right boiler for you. Flue Options The standard flue is suitable only for horizontal terination applications. Maxiu perissible equivalent flue lengths are: Horizontal Concentric / etres Vertical Centric / etres Vertical Twin

More information

PROCEEDINGS OF THE CORNELIUS LANCZOS INTERNATIONAL CENTENARY CONFERENCE

PROCEEDINGS OF THE CORNELIUS LANCZOS INTERNATIONAL CENTENARY CONFERENCE PROCEEDINGS OF THE CORNELIUS LANCZOS INTERNATIONAL CENTENARY CONFERENCE CORNELIUS LANCZOS Edited by J. Dovld Brown MoodylChu Donold C. Ellison Robert J. Plemmons DEVELOPMENT OF THE FFT Organizer: Janies

More information

RECYCLING\CONTAINER SITE ATTENDANT MANUAL

RECYCLING\CONTAINER SITE ATTENDANT MANUAL RECYCLNG\CONTANER STE ATTENDANT MANUAL PT' COUNTY, NORTH CAROLNA PT COUNTY RECYCLNG & SOLD WASTE 1717 WEST FTFlX -ET GREENVLLE,NC 27- (919) 830-4131 or 830-6354 Printed on Recycled Paper TABLE OF CONTENTS

More information

Product overview 2-3. Technology of Inverter 4-5. Inverter Wall Mounted 6-7. Inverter Ceiling Cassette E Series 8-9

Product overview 2-3. Technology of Inverter 4-5. Inverter Wall Mounted 6-7. Inverter Ceiling Cassette E Series 8-9 Y Series Product overview 2-3 Technology of 4-5 all Mounted 6-7 Ceiling Cassette E Series 8-9 Ceiling Cassette C Series 10-11 Ceiling Concealed 12-13 Ceiling Convertible 14- Multi-Splits 16-19 Indoor Product

More information

2017 TRIANGLE RUN/WALK AUTISM FOR SATURDAY, OCTOBER 14, 2017 DOWNTOWN RALEIGH HALIFAX MALL 9 AM

2017 TRIANGLE RUN/WALK AUTISM FOR SATURDAY, OCTOBER 14, 2017 DOWNTOWN RALEIGH HALIFAX MALL 9 AM Tea Captain Handbook 2017 TRIANGLE RUN/WALK FOR AUTISM SATURDAY, OCTOBER 14, 2017 DOWNTOWN RALEIGH HALIFAX MALL 9 AM SATURDAY, OCT. 14 18TH ANNUAL TRIANGLE RUN/WALK FOR AUTISM TriangleRunWalkforAutis.org

More information

Heyam Daod. Keywords Fine-grained soils, liquid limit, microwave drying, moisture content

Heyam Daod. Keywords Fine-grained soils, liquid limit, microwave drying, moisture content Determination of Moisture Content and Liquid Limit of Foundations Soils, using Microwave Radiation, in the Different Locations of Sulaimani Governorate, Kurdistan Region-Iraq Heyam Daod Abstract Soils

More information

PCSHK1549. Cooling only -50Hz- Heat pump -50Hz-

PCSHK1549. Cooling only -50Hz- Heat pump -50Hz- PCSHK9 Warning Ask a qualified installer or contractor to install this product. Do not try to install the product by yourself. Iproper installation can result in water or refrigerant leakage, electrical

More information

SERVICE MANUAL. Commercial Air Conditioning. MULTI upgrade series

SERVICE MANUAL. Commercial Air Conditioning. MULTI upgrade series Coercial Air Conditioning SERVICE MANUAL MULTI upgrade series Models Indoor: AB09CS1ERA AB12CS1ERA AB18CS1ERA AB24ES1ERA AC12CS1ERA AC18CS1ERA AC24CS1ERA AD09LS1ERA AD12LS1ERA AD18LS1ERA AD24LS1ERA Outdoor:

More information

M.A.M.I. Silentron. Outdoor Wireless Dual Technology Intrusion Detector

M.A.M.I. Silentron. Outdoor Wireless Dual Technology Intrusion Detector 55 Dual Tech long range outdoor detector 55 Dual Tech wide angle outdoor detector Outdoor Wireless Dual Technology Intrusion Detector Silentron the 55 55 55 55 M.A.M.I. anufacturing and inor inventions

More information

The Use of Fuzzy Spaces in Signal Detection

The Use of Fuzzy Spaces in Signal Detection The Use of Fuzzy Spaces in Signal Detection S. W. Leung and James W. Minett Department of Electronic Engineering, City University of Hong Kong Correspondence to: Dr. Peter S. W. Leung Department of Electronic

More information

Dynamic Simulation of Double Pipe Heat Exchanger using MATLAB simulink

Dynamic Simulation of Double Pipe Heat Exchanger using MATLAB simulink Dynamic Simulation of Double Pipe Heat Exchanger using MATLAB simulink 1 Asoka R.G, 2 Aishwarya N, 3 Rajasekar S and 4 Meyyappan N 1234 Department of Chemical Engineering Sri Venkateswara College of Engineering,

More information

HEATINGSERIES POWERFUL SELECTION ZUBADAN SERIES MSZ-FD VABH SERIES

HEATINGSERIES POWERFUL SELECTION ZUBADAN SERIES MSZ-FD VABH SERIES POWERFUL SELECTION Lineup consists of two series. Choose the series that best atches the building layout. ZUDN SERIES The lineup includes outdoor unit odels 5 and three types of indoor units. 4way cassette

More information

Brief review of dust explosion test methodologies peaks and pi8alls

Brief review of dust explosion test methodologies peaks and pi8alls Brief review of dust explosion test ethodologies peaks and pi8alls Ashok Ghose Dastidar, PhD MBA Vice President, Dust & Flaability Testing and Consulting Services Fauske & Associates, LLC. Dr. Ashok Ghose

More information

The Mode of Urban Renewal Base on the Smart City Theory under the Background of New Urbanization

The Mode of Urban Renewal Base on the Smart City Theory under the Background of New Urbanization Frontiers of Engineering Management DOI 10.15302/J-FEM-2015035 ENGINEERING MANAGEMENT THEORIES AND METHODOLOGIES Yi-hua Mao, Hong-yu Li, Qin-rui Xu The Mode of Urban Renewal Base on the Smart City Theory

More information

Development of a Compact Vacuum Freeze Drying for Jelly Fish (Schypomedusae)

Development of a Compact Vacuum Freeze Drying for Jelly Fish (Schypomedusae) Jurnal Teknologi Full paper Developent of a Copact Vacuu Freeze Drying for Jelly Fish (Schypoedusae). Idrus Alhaid *,. Yulianto, Nasruddin, Engkos A. Kosasih a Refrigeration and Air-Conditioning Laboratory,

More information

THERE is significant research activity to minimize energy

THERE is significant research activity to minimize energy 310 IEEE JOURNAL OF SOLID-STATE CIRCUITS, VOL. 40, NO. 1, JANUARY 2005 A 180-mV Subthreshold FFT Processor Using a Minimum Energy Design Methodology Alice Wang, Member, IEEE, and Anantha Chandrakasan,

More information

Fin-Fan Control System

Fin-Fan Control System IJSRD - International Journal for Scientific Research & Development Vol. 2, Issue 02, 2014 ISSN (online): 2321-0613 Fin-Fan Control System Pankaj Shah 1 Jignesh Vaghela 2 1, 2 Student 1, 2 Instrumentation

More information

Presenting The Fundamentals Parts One - Five

Presenting The Fundamentals Parts One - Five Subwoofers Presenting The Fundaentals Parts One - Five R I C H A R D H A R D E S T Y Following nuerous requests, we present the excellent technical essay by Richard Hardesty, a forer Widescreen Review

More information

TEST REPORT #68. Chiao M. Lee Paul Laurentius. Hussmann Corporation St. Charles Rock Road Bridgeton, MO United States of America

TEST REPORT #68. Chiao M. Lee Paul Laurentius. Hussmann Corporation St. Charles Rock Road Bridgeton, MO United States of America Air-Conditioning, Heating, and Refrigeration Institute (AHRI) Low-GWP Alternative Refrigerants Evaluation Progra (Low-GWP AREP) TEST REPORT #68 Syste Drop-in Test of (R-448a) in a R04A Low and Mediu Teperature

More information

Installation Manual. Power Plus Box THERMAL MODULES CONDENSING. Installation Manual

Installation Manual. Power Plus Box THERMAL MODULES CONDENSING. Installation Manual Installation Manual Power Plus Box THERMAL MODULES CONDENSING EN Installation Manual RANGE MODEL CODE POWER PLUS BOX 0 007998 POWER PLUS BOX 00 007999 ACCESSORIES For a coplete list of accessories and

More information

Daikin air conditioners for small rooms in multi application

Daikin air conditioners for small rooms in multi application Daikin air conditioners for sall roos in ulti application CONCEALED CE ILING UN IT www.daikineurope.co FDBQ-B Concealed ceiling units are ideal for use in sall roos such as hotel bedroos. They are built

More information