Time-Frequency Analysis

Size: px
Start display at page:

Download "Time-Frequency Analysis"

Transcription

1 Time-Frequency Analysis FFT with MATLAB Philippe B. Laval KSU Fall 2015 Philippe B. Laval (KSU) MATLAB FFT Fall / 32

2 Introduction We look at MATLAB s implementation of the Fourier transform. To better understand it, we quickly review the relationship between frequency and period. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

3 MATLAB and the FFT MATLAB implements the Fourier transform with the following functions: fft, ifft, fftshift, ifftshift, fft2, ifft2. We describe them briefly and them illustrate them with examples. 1 fft. This is the one-dimensional Fourier transform. Assuming a signal is saved as an array in the variable X, then fft(x) return the Fourier transform of X as a vector of the same size as X. Recall that the values returned by fft(x) are frequencies. 2 ifft. This is the one-dimensional inverse Fourier transform. Given a vector or frequencies Y, ifft(y) will return the signal X corresponding to these frequencies. In theory, if Y=fft(X) then ifft(y)=x. 3 fft2 and ifft2 are the two dimensional versions of fft and ifft. 4 fftshift rearranges the output of fft, fft2 so the zero-frequency component of the array is at the center. This can be useful to visualize the result of a Fourier transform. 5 ifftshift is the inverse of fftshift. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

4 MATLAB and the FFT We give more explanations about how fft works. Using it is not completely straightforward. As we saw above, the DFT is evaluated for the fundamental frequency of a signal and its multiples. Let us see what that really is. Recall that the fundamental period of a function f is the smallest positive real number T 0 such that f (t + T 0 ) = f (t). For example, if a function is periodic over an interval [a, b] then its period will be b a (the length of the interval over which the function repeats itself. If this is the smallest interval over which the function repeats itself, then b a is the fundamental period, which we often call the period. The frequency of a signal is the number of periods per second. So, if T is the period of a signal, then its frequency f is: f = 1, it is T expressed in Hz (Hertz). So, the fundamental frequency f 0 is f 0 = 1 T 0 where T 0 is the fundamental period. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

5 MATLAB and the FFT Sometimes, when talking about frequency, we also mean the angular frequency: ω defined by ω = 2πf where f is the frequency. So, the fundamental angular frequency, ω 0 is defined to be ω 0 = 2πf 0 = 2π T 0. It is expressed in rad/s. In what follows, when we say frequency, we really mean angular frequency. From the above, it follows that the fundamental frequency of a periodic function over an interval [a, b] is ω = 2π rad/s (or b a 1 b a Hz). Hence, the multiples, denoted ω n, are ω n = 2πn b a. Over an interval [ L, L] as it is the case in the examples below, we see that ω n = 2πn 2L. The integer values n are called the wavenumbers. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

6 MATLAB and the FFT To compute the DFT, we sample a signal into a finite number of points, we call N. The DFT, in turn, gives the contribution of the first N multiples of the fundamental frequency to the signal. These fundamental frequencies will also be over an interval centered at 0. So, to summarize, the wavenumbers n will run from N 2 to N 2 1. However, the output of MATLAB s fft corresponds to wavenumbers ordered as {0, 1, 2,..., N2 }, N2 + 1,..., 2, 1. This should explain line 8 of the next two examples. For example, in the next two examples, with numpt = 2 9 = 512, L = 30, then x (the time) will run from 30 to 30, the wavenumber n will run from 255 to 256 hence the frequencies 2πn 60 = πn will run 30 from ( 255) (π) 30 = to (256) (π) 30 = Philippe B. Laval (KSU) MATLAB FFT Fall / 32

7 MATLAB and the FFT For example, in the next two examples, with numpt = 2 9 = 512, L = 5, then x (the time) will run from 5 to 5, the wavenumber n will run from 256 to 255 hence the frequencies 2πn 10 = πn will run 5 ( 255) (π) (256) (π) from = to = A last remark. As noted above, the FFT assumes that the function is periodic over the interval of study. If it is not, the FFT will contain an error at the extremities of the interval of study. This can be seen when starting with a signal, using fft on it, then recovering it with ifft. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

8 Example 1 This first example simply illustrates how the Fourier transform find the various frequencies which make up a signal. See the code for this example. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

9 Example 1 Philippe B. Laval (KSU) MATLAB FFT Fall / 32

10 Example 2 This next example defines a signal, adds noise to it, takes the Fourier transform of the noisy signal, removes the frequencies with little significance, recovers the signals from these altered frequencies and compares the two signals. See the code for this example. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

11 Example 2 Philippe B. Laval (KSU) MATLAB FFT Fall / 32

12 Example 2 Philippe B. Laval (KSU) MATLAB FFT Fall / 32

13 2D FFT The 1-dimensional DFT and FFT can be generalized to higher dimensions. We will focus on dimension 2 here, and apply the FFT to images. In this section, we just do a very brief overview of the main features of the 2-dimensional DFT and FFT with MATLAB. We could spend a whole semester studying the various techniques which can be developed with the FFT to clean images, enhance images, and many other activities on images. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

14 2D FFT - Images Review Gray images are saved as a 2-dimensional array, that is a matrix. If the image has m n pixels, then the matrix will be m n. Each entry in the matrix corresponds to a pixel. The value in that entry is the color (gray) intensity. For 8-bit images, it is an integer between 0 and 255. Color images are saved as a 3-dimensional array. The third dimension indicates how many base colors are used. For example, an m n image saved in the RGB color scheme will be saved as an m n 3 matrix which is in fact 3 m n matrices, one for each color. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

15 2D FFT An image is 2-dimensional signal. It can be also represented as a sum of sine and cosine waves. But we have sine and cosine waves in each dimension. Assuming we have an image f (x, y) of size M N, it can be represented in the frequency domain by its two-dimensional DFT which is Df (m, n) = M 1 k=0 N 1 l=0 mk f (k, l) e i2π( M + nl N ) (1) You will note that the exponential is in fact a product of two mk nl i2π i2π exponentials, e M e N, one sine and cosine wave for each dimension. As before, Df (m, n) represents the contribution the sine and cosine i2π( mk M + nl waves of frequency e N ) make to the image. Since for images frequency represents color, we can determine which color (or combination of colors) each pixel has. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

16 2D FFT The inverse Fourier transform is f (k, l) = 1 MN M 1 N 1 m=0 n=0 mk Df (m, n) e i2π( M + nl N ) It allows to recover the image from the frequencies which make it. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

17 2D FFT and MATLAB Many image manipulations happen in the frequency domain, so the outline to perform these manipulations is as follows: Start with an original image (a signal in the time or spatial domain). Take its Fourier transform, fft2, we are now in the frequency domain. Manipulate the image in the frequency domain. This is often referred to as apply a filter. There are filters for pretty much everything one wants to do such as enhancement, blurring, removing noise, detect edges,... Take the inverse Fourier transform, ifft2, of the modified image in the previous step. We now have our modified image back in spatial domain. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

18 2D FFT and MATLAB In the following example, we will: load an image, add noise to it, take the Fourier transform of the noisy image only keep the frequencies with high contribution, thus eliminating most of the noise. take the inverse Fourier transform of the filtered image, this will give us a cleaned image. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

19 2D FFT and MATLAB We will discuss each section of the code. In the process, we will learn the following MATLAB functions (we assume our images are m n pixels): imread. Reads an image from its file. The format is img=imread(filename); where filename is a string containing the filename of the image, img is the matrix containing the image. Note that if the image is grayscale, img will be an m n matrix, if the image is a color image (RGB), img will be an m n 3 matrix. Both matrices will have integer entries. We can convert it to a grayscale matrix with the next command. rgb2gray. Converts a color image to a grayscale image. The format is newimg=rgb2gray(img); where img is a color image to convert and newimg is the converted image, an m n matrix with integer entries. double. Converts integers to doubles (real numbers). The format is mat2=double(mat1); where mat1 is a matrix with integer entries, mat2 is a matrix with real entries. Real entries are needed for the FFT. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

20 2D FFT and MATLAB imshow. Displays an image. The format is imshow(img,[ ]); where img is a matrix containing the image. fft2. Computes the 2D Fourier transform. The format is fimg=fft2(img) where img is a matrix containing the image and fimg is a matrix containing the Fourier transform. fftshift. Shift the zero-frequency component to the center of the spectrum. This makes visualizing the Fourier Transform easier. The format is img1=fftshift(img) where img is a matrix and img1 is the shifted matrix. ifft2. Computes the inverse of the 2D Fourier transform. The format is img=fft2(fimg) where img is a matrix containing the image and fimg is a matrix containing the Fourier transform. The next slides show the MATLAB code for this example as well as the resulting images. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

21 2D FFT and MATLAB %Load the image A=imread( head.png ); % Convert to grayscale Abw=rgb2gray(A); % Convert to double Abw=double(Abw); % Display the original image (see figure 1) figure(1),imshow(abw, [ ]); Philippe B. Laval (KSU) MATLAB FFT Fall / 32

22 2D FFT and MATLAB Philippe B. Laval (KSU) MATLAB FFT Fall / 32

23 2D FFT and MATLAB % Adding noise % Define the noise a=0; % lower bound of the noise value b=100; % upper bound of the noise value noise=a + (b-a).*rand(nx,ny); % define the noise Abwn=Abw+double(noise); %add noise to the image % Display the image with noise figure(2),imshow(abwn, [ ]); Note: This code is actually not executed on this image since it already had noise. It is just provided to illustrate how to add noise. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

24 2D FFT and MATLAB % Take the Fourier Transform ffta=fft2(abwn); % Display the Fourier transform (see figure 2) figure(3),imshow(abs(ffta), [ ]); Philippe B. Laval (KSU) MATLAB FFT Fall / 32

25 2D FFT and MATLAB Philippe B. Laval (KSU) MATLAB FFT Fall / 32

26 2D FFT and MATLAB %Try again. In the FFT, high peaks can be so high that they hide the %details. We can reduce the scale with the log function (see figure 3). figure(4),imshow(log(1+abs(ffta)), [ ]); Philippe B. Laval (KSU) MATLAB FFT Fall / 32

27 2D FFT and MATLAB Philippe B. Laval (KSU) MATLAB FFT Fall / 32

28 2D FFT and MATLAB %Try again. We use fftshift to put the coeffi cients with 0 frequency at the center (see figure 4). figure(5),imshow(log(1+abs(fftshift(ffta))), [ ]); Philippe B. Laval (KSU) MATLAB FFT Fall / 32

29 2D FFT and MATLAB Philippe B. Laval (KSU) MATLAB FFT Fall / 32

30 2D FFT and MATLAB %remove the noise with a high pass filter Threshold=median(2*median(abs(fftA))); % define what to keep cffa=(abs(ffta)>threshold).*ffta; % Keep frequencies with contribution > Threshold % Recover the cleaned image using the inverse Fourier transform iffta=ifft2(cffa); % recover the cleaned image % Display the cleaned image (see figure ) figure(6),imshow(iffta, [ ]); Philippe B. Laval (KSU) MATLAB FFT Fall / 32

31 2D FFT and MATLAB Philippe B. Laval (KSU) MATLAB FFT Fall / 32

32 Exercises See the problems at the end of the notes on the FFT and MATLAB. Philippe B. Laval (KSU) MATLAB FFT Fall / 32

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

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

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

Frequency (cycles/earthyear)

Frequency (cycles/earthyear) DFT Workshop Math Methods - Solutions 1. ET Phone Home: a. Guessing maybe 3 or seems reasonable. There s a clear dominant oscillation. But we also see little hitches and also some secondary dominant structure

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

Equipment Required. WaveRunner Zi series Oscilloscope 10:1 High impedance passive probe. 3. Turn off channel 2.

Equipment Required. WaveRunner Zi series Oscilloscope 10:1 High impedance passive probe. 3. Turn off channel 2. FFT Analysis TEN MINUTE TUTORIAL February 27, 2012 Summary Fast Fourier Transform analysis is common on most digital oscilloscopes. It is used to view signals in the frequency as well as the time domain.

More information

PHYS 3152 Methods of Experimental Physics I E5. Frequency Analysis of Electronic Signals

PHYS 3152 Methods of Experimental Physics I E5. Frequency Analysis of Electronic Signals Purpose PHYS 3152 Methods of Experimental Physics I E5. Frequency Analysis of Electronic Signals This experiment will introduce you to the basic principles of frequency domain analysis of electronic signals.

More information

The Discrete Fourier Transform Illusion Copyright 1999 Dennis Meyers

The Discrete Fourier Transform Illusion Copyright 1999 Dennis Meyers The Discrete Fourier Transform Illusion Copyright 1999 Dennis Meyers The Fourier Transform is a mathematical technique named after the famed French mathematician Jean Baptiste Joseph Fourier 1768-1830.

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

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

Third-Party Research & Development Technical Discourse. Application of cirqed RA for FFT Analysis Part I Identifying Real And Aliased FFT Components

Third-Party Research & Development Technical Discourse. Application of cirqed RA for FFT Analysis Part I Identifying Real And Aliased FFT Components Third-Party Research & Development Technical Discourse Application of cirqed RA for FFT Analysis Part I Identifying Real And Aliased FFT Components John R. Potts, Senior Scientist/Engineering Manager BRIEF

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

Assignment 5: Fourier Analysis Assignment due 9 April 2012, 11:59 pm

Assignment 5: Fourier Analysis Assignment due 9 April 2012, 11:59 pm COS/MUS 314 Assignment 5: Fourier Analysis Assignment due 9 April 2012, 11:59 pm This assignment is done with your partner. Reading & Resources ChucK complex and polar data types: http://chuck.cs.princeton.edu/doc/language/type.html#complex

More information

Measuring Sound Pressure Level with APx

Measuring Sound Pressure Level with APx T E C H N O T E Application and Technical Support for Audio Precision Users TN113 Measuring Sound Pressure Level with APx By Joe Begin Introduction The level of acoustic noise or sound in the environment

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

HAMMING AND GOLAY CODES

HAMMING AND GOLAY CODES HAMMING AND GOLAY CODES Satish Kumar Buddha November 7, 2011 Satish Kumar Buddha () HAMMING AND GOLAY CODES November 7, 2011 1 / 29 Error correcting codes In Information theory and coding theory, error

More information

by Ray Escoffier September 28, 1987

by Ray Escoffier September 28, 1987 V L B A correlator Mpni/i TvT~ cfn~ (870929) Correlator Operational Cycles Including the Integration Cycle and Self Test by Ray Escoffier September 28, 1987 I) Introduction This memo will describe the

More information

Human Position/Height Detection Using Analog Type Pyroelectric Sensors

Human Position/Height Detection Using Analog Type Pyroelectric Sensors Human Position/Height Detection Using Analog Type Pyroelectric Sensors Shinya Okuda, Shigeo Kaneda, and Hirohide Haga Graduate School of Engineering, Doshisha University, 1-3 Tatara-Miyakodani, Kyotanabe

More information

A 0.75 Million Point Fourier Transform Chip for Frequency Sparse Signals

A 0.75 Million Point Fourier Transform Chip for Frequency Sparse Signals A 0.75 Million Point Fourier Transform Chip for Frequency Sparse Signals Ezz El Din Hamed Omid Abari, Haitham Hassanieh, Abhinav Agarwal, Dina Katabi, Anantha Chandrakasan, Vladimir Stojanović International

More information

presentations the week of the final exams. Anyone who misses the appointment will receive a grade of zero.

presentations the week of the final exams. Anyone who misses the appointment will receive a grade of zero. CS 116 Section 4 PROJECT Spring 2016 Grade: Up to 12 points. Rules: To be worked on individually. Must be presented to the instructor in person in order to be graded. Similar projects will both receive

More information

e+/e- Vertical Beam Dynamics during CHESS Operation-Part II

e+/e- Vertical Beam Dynamics during CHESS Operation-Part II e+/e- Vertical Beam Dynamics during CHESS Operation-Part II I. Introduction II. e+ turn-by-turn vertical dynamics III. e- turn-by-turn vertical dynamics IV. Summary R. Holtzapple, J. Kern, and E.Tanke

More information

Fire Detection System using Matlab

Fire Detection System using Matlab Fire Detection System using Matlab Chandrakant Shrimantrao 1, Mahesh S K 2, Vivekanand M Bonal 3 1 Fourth Sem M.Tech, 2 Asst. Professor, Appa Institute of Engineering and Technology Karnataka, 3 Head,

More information

mach 5 100kHz Digital Joulemeter: M5-SJ, M5-IJ and M5-PJ Joulemeter Probes

mach 5 100kHz Digital Joulemeter: M5-SJ, M5-IJ and M5-PJ Joulemeter Probes mach 5 100kHz Digital Joulemeter: M5-SJ, M5-IJ and M5-PJ Joulemeter Probes Measure every pulse at pps! Our new mach 5 Digital Joulemeter is designed to measure laser pulse energy up to 130,000 pps with

More information

Table of Contents PART I: The History and Current Status of the Industrial HMI PART II: Fundamentals of HMI Design and Best Practices

Table of Contents PART I: The History and Current Status of the Industrial HMI PART II: Fundamentals of HMI Design and Best Practices Table of Contents PART I: The History and Current Status of the Industrial HMI We begin with the origin and evolution of the industrial HMI. The positive and negative issues posed by the introduction of

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

Nardalert S3 TM Non-Ionizing Radiation Monitor

Nardalert S3 TM Non-Ionizing Radiation Monitor Patent Pending Nardalert S3 TM Non-Ionizing Radiation Monitor Field Replaceable Sensor Modules Color LCD Display Multi-Color Alarm LED s USB Interface for Data and Charging Comprehensive Software Included

More information

2 A e ( I ( ω t k r)

2 A e ( I ( ω t k r) Introduction : Baffle Step Response Calculations Over the past few years, I have become very aware of the baffle step response phenomenon associated with drivers mounted in rectangular baffles. My first

More information

Faster GPS via the Sparse Fourier Transform. Haitham Hassanieh Fadel Adib Dina Katabi Piotr Indyk

Faster GPS via the Sparse Fourier Transform. Haitham Hassanieh Fadel Adib Dina Katabi Piotr Indyk Faster GPS via the Sparse Fourier Transform Haitham Hassanieh Fadel Adib Dina Katabi Piotr Indyk GPS Is Widely Used Faster GPS benefits many applications How Do We Improve GPS? Need to Improve GPS Synchronization

More information

CT398 Heaterstat TM Temperature Controller. Technical User Guide

CT398 Heaterstat TM Temperature Controller. Technical User Guide CT398 Heaterstat TM Temperature Controller Technical User Guide CT398 HeaterStat Controller Contents CT398 HeaterStat Controller... 2 Contents... 2 Document Overview... 2 For More Information... 2 Introduction...

More information

FlameGard 5 UV/IR HART

FlameGard 5 UV/IR HART FlameGard 5 UV/IR HART HART Communication Manual The information and technical data disclosed in this document may be used and disseminated only for the purposes and to the extent specifically authorized

More information

Faster GPS via the Sparse Fourier Transform. Haitham Hassanieh Fadel Adib Dina Katabi Piotr Indyk

Faster GPS via the Sparse Fourier Transform. Haitham Hassanieh Fadel Adib Dina Katabi Piotr Indyk Faster GPS via the Sparse Fourier Transform Haitham Hassanieh Fadel Adib Dina Katabi Piotr Indyk GPS Is Widely Used Faster GPS benefits many applications How Do We Improve GPS? Need to Improve GPS Synchronization

More information

FLIR Optical Gas Imaging Camera Helps Improve Environment And Safety At Borealis Stenungsund

FLIR Optical Gas Imaging Camera Helps Improve Environment And Safety At Borealis Stenungsund FLIR Optical Gas Imaging Camera Helps Improve Environment And Safety At Borealis Stenungsund Many petrochemical plants handle invisible gaseous hydrocarbons. Most of these gases pose some sort of safety

More information

A New Construction of 16-QAM Golay Complementary Sequences

A New Construction of 16-QAM Golay Complementary Sequences IEEE TRANSACTIONS ON INFORMATION THEORY, VOL. 49, NO. 11, NOVEMBER 2003 2953 A New Construction of 16-QAM Golay Complementary Sequences Chan Vee Chong, Raman Venkataramani, Member, IEEE, Vahid Tarokh,

More information

power-saving period in summer, in which one of the indoor units was forced to change from a cooling mode to a fan mode, was introduced, and the effect

power-saving period in summer, in which one of the indoor units was forced to change from a cooling mode to a fan mode, was introduced, and the effect A Numerical Investigation on the Effect of Operation Control of a Multi-Split Air-Conditioning System on Indoor Thermal Environment H. Matsunaga 1,*, S. Iizuka 1, M. Okumiya 1, G. Yoon 2, and H. Niwa 3

More information

Package fftwtools. March 25, 2017

Package fftwtools. March 25, 2017 Version 0.9-8 Package fftwtools March 25, 2017 Title Wrapper for 'FFTW3' Includes: One-Dimensional Univariate, One-Dimensional Multivariate, and Two-Dimensional Transform Author Karim Rahim

More information

Interferometric optical time-domain reflectometry for distributed optical-fiber sensing

Interferometric optical time-domain reflectometry for distributed optical-fiber sensing Interferometric optical time-domain reflectometry for distributed optical-fiber sensing Sergey V. Shatalin, Vladimir N. Treschikov, and Alan J. Rogers The technique of optical time-domain reflectometry

More information

How does the Goodnight level work with C-Bus, and how do I use the Goodnight level?

How does the Goodnight level work with C-Bus, and how do I use the Goodnight level? How does the Goodnight level work with C-Bus, and how do I use the Goodnight level? Overview. One of the most popular C-Bus home automation benefits from Clever Home involves allowing home owners to limit

More information

ArchestrA Direct Connect

ArchestrA Direct Connect Table of Contents ArchestrA Direct Connect... 1 Introduction... 1 ArchestrA Direct Connection... 1 ArchestrA Data Source Definition... 2 Data Source Definition... 2 Importing Alarms from ArchestrA... 6

More information

Study and Design of Diaphragm Pump Vibration Detection Fault Diagnosis System Based on FFT

Study and Design of Diaphragm Pump Vibration Detection Fault Diagnosis System Based on FFT Research Journal of Applied Sciences, Engineering and Technology 5(4): 1238-1244, 2013 ISSN: 2040-7459; e-issn: 2040-7467 Maxwell Scientific Organization, 2013 Submitted: June 23, 2012 Accepted: August

More information

Microgrid Fault Protection Based on Symmetrical and Differential Current Components

Microgrid Fault Protection Based on Symmetrical and Differential Current Components Microgrid Fault Protection Based on Symmetrical and Differential Current Components Prepared for Public Interest Energy Research California Energy Commission Prepared by Hassan Nikkhajoei and Robert H.

More information

Design II CRAFTS SUPPLEMENT

Design II CRAFTS SUPPLEMENT Design II CRAFTS SUPPLEMENT 4-H MOTTO Learn to do by doing. 4-H PLEDGE I pledge My HEAD to clearer thinking, My HEART to greater loyalty, My HANDS to larger service, My HEALTH to better living, For my

More information

THERMOSYS 4.3. Getting Started Guide

THERMOSYS 4.3. Getting Started Guide THERMOSYS 4.3 Getting Started Guide February 2016 Table of Contents 1 Installation and File Organization... 3 2 THERMOSYS by Example... 4 2.1 THERMOSYS Component Descriptions... 5 2.1.1 Compressor... 6

More information

Speech parameterization using the Mel scale Part II. T. Thrasyvoulou and S. Benton

Speech parameterization using the Mel scale Part II. T. Thrasyvoulou and S. Benton Speech parameterization using the scale Part II T. Thrasyvoulou and S. Benton Speech Cepstrum procedure Speech Pre-emphasis Framing Windowing For FFT based Cepstrum FFT Cepstrum OR LPC LPC For LPC based

More information

DEVELOPMENT OF THE INFRARED INSTRUMENT FOR GAS DETECTION

DEVELOPMENT OF THE INFRARED INSTRUMENT FOR GAS DETECTION DEVELOPMENT OF THE INFRARED INSTRUMENT FOR GAS DETECTION Ching-Wei Chen 1, Chia-Ray Chen 1 1 National Space Organization, National Applied Research Laboratories ABSTRACT MWIR (Mid-Wave Infrared) spectroscopy

More information

scale analysis to micro scale imaging-ftir. State of the art and future perspectives.

scale analysis to micro scale imaging-ftir. State of the art and future perspectives. MP analysis by FTIR spectroscopy. From From macro macro scale analysis to micro scale imaging-ftir. State of the art and future perspectives. Alvise Vianello Vianello, Jes Vollertsen Aalborg University,

More information

RS485 Integrators Guide

RS485 Integrators Guide 11-19- 2018 RS485 Integrators Guide VTB-SENSOR MODBUS DEFINITIONS MAHINE SAVER IN 9788 larewood Dr. STE 302 Houston, TX 77036 Page 1 Table of ontents Vocabulary... 3 ommunicating with the VTB Sensor...

More information

Simplex Panel Interface Guide

Simplex Panel Interface Guide Simplex Panel Interface Guide February 2016 SATEON Software Integrations Simplex Panel Interface Guide Issue 1.0, released February 2016 Disclaimer Copyright 2016, Grosvenor Technology. All rights reserved.

More information

Section 9. Comparing Energy Consumption: More for Your Money. What Do You See? What Do You Think? Investigate. Learning Outcomes

Section 9. Comparing Energy Consumption: More for Your Money. What Do You See? What Do You Think? Investigate. Learning Outcomes Section 9 Comparing Energy Consumption: More for Your Money Section 9 Comparing Energy Consumption: More for Your Money What Do You See? Learning Outcomes In this section, you will Measure and compare

More information

DeltaV Analyze. Introduction. Benefits. Continuous automated DeltaV System alarm system performance monitoring

DeltaV Analyze. Introduction. Benefits. Continuous automated DeltaV System alarm system performance monitoring DeltaV Distributed Control System Product Data Sheet December 2016 DeltaV Analyze Continuous automated DeltaV System alarm system performance monitoring Trends of alarms, events, and user actions Identification

More information

VEEDER-ROOT CURRENT DATA STORAGE INTERFACE MANUAL. for. TLS-300 and TLS-350 UST Monitoring Systems. and

VEEDER-ROOT CURRENT DATA STORAGE INTERFACE MANUAL. for. TLS-300 and TLS-350 UST Monitoring Systems. and VEEDER-ROOT CURRENT DATA STORAGE INTERFACE MANUAL for TLS-300 and TLS-350 UST Monitoring Systems and TLS-350R Environmental & Inventory Management System through Software Versions 15/115 Manual Number

More information

The Rise of Tier 2 Testing

The Rise of Tier 2 Testing The Rise of Tier 2 Testing Why enterprises today demand better visibility into their fiber infrastructure Unprecedented demand for more bandwidth, faster network speeds, lower latency, and improved data

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

Landscape Architecture (LARC)

Landscape Architecture (LARC) Landscape Architecture (LARC) 1 Landscape Architecture (LARC) Courses LARC 0841. Sustainable Design. 3 Credit Hours. What's the big deal about global warming and how should we respond to it? Explore the

More information

ASHRAE Guideline 36 Advanced HVAC Control Sequences

ASHRAE Guideline 36 Advanced HVAC Control Sequences ASHRAE Guideline 36 Advanced HVAC Control Sequences Rick Stehmeyer - Senior Engineer Matt Napolitan, P.E., CCP, CPMP, LEED AP BD+C - Principal Image Source: http://worldatdistance.com/2013/10/07/the-complete-noobs-guide-to-making-a-website//

More information

Technical Specification and Operating Procedure PILATUS 300K

Technical Specification and Operating Procedure PILATUS 300K Technical Specification and Operating Procedure PILATUS 300K Version 1.1 Table of Contents 1 Document History...3 1.1 Changes...3 2 How to use this technical specification...4 2.1 Address and support...4

More information

Modbus TCP Register List GreenManager for GreenMaster C-F Valid for firmware version 2.0 or later

Modbus TCP Register List GreenManager for GreenMaster C-F Valid for firmware version 2.0 or later Modbus TCP Register List GreenManager for GreenMaster C-F Valid for firmware version 2.0 or later Overview Modbus can access single adresses or multiple addresses simultaneously; either reading or writing

More information

Alarm Client. Installation and User Guide. NEC NEC Corporation. May 2009 NDA-30364, Revision 9

Alarm Client. Installation and User Guide. NEC NEC Corporation. May 2009 NDA-30364, Revision 9 Alarm Client Installation and User Guide NEC NEC Corporation May 2009 NDA-30364, Revision 9 Liability Disclaimer NEC Corporation reserves the right to change the specifications, functions, or features,

More information

OPTICAL TIME-DOMAIN REFLECTOMETER

OPTICAL TIME-DOMAIN REFLECTOMETER Tallinn University of Technology Laboratory exercise 1 of Fiber Optical Communication course OPTICAL TIME-DOMAIN REFLECTOMETER Tallinn 2016 Aim of the laboratory exercise: The aim of this laboratory exercise

More information

VIBRA-series: VIBRA, VIBRA +

VIBRA-series: VIBRA, VIBRA + DATASHEET VIBRA-series (VIB.00100/..120/..130) VIBRA-series: VIBRA, VIBRA + Profound VIBRA-series Vibrations from pile driving, construction, road or rail traffic, demolition work and blasting can create

More information

Standard VistaNET GCC Software: 803V029-(VER)(REV)

Standard VistaNET GCC Software: 803V029-(VER)(REV) This summarizes the software release notes for the standard VistaNET-enabled GCC software using the 8086 SBC. This document will be updated as additional releases are made. Please see similar 803V0xx-

More information

Application of Wireless Monitoring System for the Ambient Vibration Study of the WuYuan Steel Arch Bridge

Application of Wireless Monitoring System for the Ambient Vibration Study of the WuYuan Steel Arch Bridge Application of Wireless Monitoring System for the Ambient Vibration Study of the WuYuan Steel Arch Bridge Y. Lei, W.A. Shen and Y. Song Department of Civil Engineering, Xiamen University, China J. P. Lynch

More information

Lab 1b Cooling Tower Performance and Sensors for Thermal-Fluid Systems

Lab 1b Cooling Tower Performance and Sensors for Thermal-Fluid Systems Lab 1b Cooling Tower Performance and Sensors for Thermal-Fluid Systems OBJECTIVES Warning: though the experiment has educational objectives (to learn about boiling heat transfer, etc.), these should not

More information

Lesson Objectives. Core Content Objectives. Language Arts Objectives

Lesson Objectives. Core Content Objectives. Language Arts Objectives The Life Cycle of a Plant 3 Lesson Objectives Core Content Objectives Students will: Explain that seeds are the beginning of new plants Explain the basic life cycle of plants Language Arts Objectives The

More information

Meindert s HPD315 project

Meindert s HPD315 project Meindert s HPD315 project History Thirty years ago I bought a pair of HPD 315 speaker and build them into the Devon cabinet, one of the enclosures in the construction guide of Tannoy. Ten years later I

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

A Method for Predicting the Matric Suction of Unsaturated Soils with Soil Color Recognition

A Method for Predicting the Matric Suction of Unsaturated Soils with Soil Color Recognition 2017 2 nd International Conference on Architectural Engineering and New Materials (ICAENM 2017) ISBN: 978-1-60595-436-3 A Method for Predicting the Matric Suction of Unsaturated Soils with Soil Color Recognition

More information

Dell DR Series Appliance Cleaner Best Practices

Dell DR Series Appliance Cleaner Best Practices Dell DR Series Appliance Cleaner Best Practices Dell Engineering June 2016 A Dell Best Practices Document Revisions Date July 2016 Description Initial release THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES

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

POWERING SURROUND SPEAKERS

POWERING SURROUND SPEAKERS POWERING SURROUND SPEAKERS by JOHN F ALLEN It s a common practice in this industry to under power the surround channel. Several rules of thumb have evolved. One approach has been to use a single amplifier

More information

Milestone XProtect Alarm Matrix Integration 1.0

Milestone XProtect Alarm Matrix Integration 1.0 Milestone XProtect Alarm Matrix Integration 1.0 Milestone XProtect Alarm Matrix Integration 1.0 Target Audience This document is aimed at system users and provides descriptions on how to install, configure

More information

An FPGA Spectrum Sensing Accelerator for Cognitive Radio

An FPGA Spectrum Sensing Accelerator for Cognitive Radio An FPGA Spectrum Sensing Accelerator for Cognitive Radio George Eichinger Miriam Leeser Kaushik Chowdhury NEWSDR 11 01 October 2011 This work is sponsored by the Department of the Air Force under Air Force

More information

Online Detection of Fire in Video

Online Detection of Fire in Video Online Detection of Fire in Video B. Uǧur Töreyin, A. Enis Çetin Bilkent University 06800 Ankara Turkey {ugur,cetin}@ee.bilkent.edu.tr Abstract This paper describes an online learning based method to detect

More information

Module Features are-configurable, no module jumpers to set

Module Features are-configurable, no module jumpers to set December 2011 PACSystems* RX3i Isolated Thermocouple Input Module, 6 Channels, IC695ALG306 Isolated Thermocouple Input Module, 12 Channels, IC695ALG312 Isolated Thermocouple Input module IC695ALG306 provides

More information

FREQUENCY ENHANCEMENT OF DUAL-JUNCTION THERMOCOUPLE PROBES

FREQUENCY ENHANCEMENT OF DUAL-JUNCTION THERMOCOUPLE PROBES XXIII Biannual Symposium on Measuring Techniques in Turbomachinery Transonic and Supersonic Flow in FREQUENCY ENHANCEMENT OF DUAL-JUNCTION THERMOCOUPLE PROBES James Braun Purdue University Indiana, United

More information

Developing Early Design Simulation Tools For Persons with Vision Impairments

Developing Early Design Simulation Tools For Persons with Vision Impairments Developing Early Design Simulation Tools For Persons with Vision Impairments James R. Jones, Ph.D. Professor Center for High Performance Environments, Virginia Tech Vidya Gowda College of Architecture

More information

RAMAN SCATTERING AND OTDR BASED DISTRIBUTED SENSOR FOR TEMPERATURE MONITORING APPLICATIONS

RAMAN SCATTERING AND OTDR BASED DISTRIBUTED SENSOR FOR TEMPERATURE MONITORING APPLICATIONS RAMAN SCATTERING AND OTDR BASED DISTRIBUTED SENSOR FOR TEMPERATURE MONITORING APPLICATIONS Sait Eser KARLIK Uludağ University Faculty of Engineering and Architecture Department of Electronics Engineering

More information

Gas Temperature Measurements with High Temporal Resolution

Gas Temperature Measurements with High Temporal Resolution THE GERG ACADEMIC NETWORK EVENT 2010 3 & 4 June 2010 Brussels Gas Temperature Measurements with High Temporal Resolution Supervisor: PhD Student: Dr. Alexander Fateev Vadim Evseev DENMARK Introduction

More information

AnthropologischeGesellschaftWien. Model Building. Gabriel Wurzer, Vienna University of Technology

AnthropologischeGesellschaftWien. Model Building. Gabriel Wurzer, Vienna University of Technology AnthropologischeGesellschaftWien Model Building Gabriel Wurzer, Vienna University of Technology www.iemar.tuwien.ac.at PREFACE or: filling the academical quarter When things go wrong, or: HOW TO DEBUG

More information

FlameGard 5 MSIR HART

FlameGard 5 MSIR HART FlameGard 5 MSIR HART Multi-Spectral Infrared Flame Detector HART Communication with the FlameGard 5 Multi-spectral Infrared Detector The information and technical data disclosed in this document may be

More information

AIRCRAFT ELECTRICAL POWER SYSTEM HOLDUP REQUIREMENTS

AIRCRAFT ELECTRICAL POWER SYSTEM HOLDUP REQUIREMENTS ABOUT ATRENNE INTEGRATED SOLUTIONS Atrenne Integrated Solutions is a vertically-integrated, component and system provider serving aerospace, defense, computing, communications, and other technology-driven

More information

Integrated optical fiber shape senor modules based on twisted multicore fiber grating arrays

Integrated optical fiber shape senor modules based on twisted multicore fiber grating arrays Integrated optical fiber shape senor modules based on twisted multicore fiber grating arrays P. S. Westbrook, K.S. Feder, T. Kremp, T. F. Taunay, E. Monberg, J. Kelliher*, R. Ortiz, K. Bradley +, K. S.

More information

CARRIER edesign SUITE NEWS. Interpreting High (Low) Peak Design Airflow Sizing Results for HVAC. Equipment Selection.

CARRIER edesign SUITE NEWS. Interpreting High (Low) Peak Design Airflow Sizing Results for HVAC. Equipment Selection. Volume 5, Issue 1 CARRIER edesign SUITE NEWS Interpreting High (Low) Peak Design Airflow Sizing Results for HVAC Equipment Selection A design challenge sometimes occurs when computing design loads using

More information

S TAR-ORION S OUTH D IAMOND P ROJECT E NVIRONMENTAL I MPACT S TATEMENT APPENDIX A FUNDAMENTALS OF ACOUSTICS

S TAR-ORION S OUTH D IAMOND P ROJECT E NVIRONMENTAL I MPACT S TATEMENT APPENDIX A FUNDAMENTALS OF ACOUSTICS APPENDIX 5.2.5-A FUNDAMENTALS OF ACOUSTICS Definition of Acoustical Terms Acoustics is the study of sound and noise is defined as unwanted sound. Airborne sound is a rapid fluctuation or oscillation of

More information

COCB_ Circuit Breaker (2 state inputs/ 2 control inputs)

COCB_ Circuit Breaker (2 state inputs/ 2 control inputs) MRS752348-MUM Issued: 0/997 Version: F/23.6.2005 Data subject to change without notice COCB_ Circuit Breaker (2 state inputs/ 2 control inputs) Contents. Introduction... 3. Features... 3.2 Application...

More information

Luna Technologies Webinar Series. New Rayleigh-Based Technique for Very High Resolution Distributed Temperature and Strain Sensing

Luna Technologies Webinar Series. New Rayleigh-Based Technique for Very High Resolution Distributed Temperature and Strain Sensing Luna Technologies Webinar Series New Rayleigh-Based Technique for Very High Resolution Distributed Temperature and Strain Sensing Dr. Dawn Gifford Senior Optical Engineer Mr. Ed Valigursky VP of Sales

More information

Adaptive CyCLO Technical and HMI User Guide. CyCLO User Guide. Version th December 2017 REV

Adaptive CyCLO Technical and HMI User Guide. CyCLO User Guide. Version th December 2017 REV CyCLO User Guide Version 2.00 19 th December 2017 REV 2.00 1 Contents 1. Hardware... 3 1.1. Introduction... 3 1.2. Electrical Specification... 3 1.3. Board Overview... 4 1.4. Electrical Installation...

More information

Radar Signal Processing

Radar Signal Processing Ambiguity Function and Waveform Design Golay Complementary Sequences (Golay Pairs) Golay Pairs for Radar: Zero Doppler Radar Problem Transmit a waveform s(t) and analyze the radar return r(t): r(t) = hs(t

More information

Documentation on NORTHSTAR. Jeremy Ma PhD Candidate California Institute of Technology May 17th, 2006

Documentation on NORTHSTAR. Jeremy Ma PhD Candidate California Institute of Technology May 17th, 2006 Documentation on NORTHSTAR Jeremy Ma PhD Candidate California Institute of Technology jerma@caltech.edu May 17th, 2006 1 Introduction The Northstar Detector-Projector Bundle Kit comes with a detector and

More information

PC474 Lab Manual 1. Terry Sturtevanta and Hasan Shodiev 2. Winter 2012

PC474 Lab Manual 1. Terry Sturtevanta and Hasan Shodiev 2. Winter 2012 PC474 Lab Manual 1 Terry Sturtevanta and Hasan Shodiev 2 Winter 2012 1 Much of this information is taken from OptoSci documentation 2 with much original material by Adam Prescott Contents 1 OTDR (Optical

More information

Effect of Foundation Embedment of PWR Structures in SSI Analysis considering Spatial Incoherence of Ground Motions

Effect of Foundation Embedment of PWR Structures in SSI Analysis considering Spatial Incoherence of Ground Motions The th World Conference on Earthquake Engineering October -7,, Beijing, China Effect of Foundation Embedment of PWR Structures in SSI Analysis considering Spatial of Ground Motions Joo-Hyung Kang and Sang-Hoon

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

Horizontal Well Downhole Dynamometer Data Acquisition

Horizontal Well Downhole Dynamometer Data Acquisition 11 th Annual Sucker Rod Pumping Workshop Renaissance Hotel Oklahoma City, Oklahoma September 15-18, 2015 Horizontal Well Downhole Dynamometer Data Acquisition Project sponsored by ALRDC Chair: Victoria

More information

Methodology of Implementing the Pulse code techniques for Distributed Optical Fiber Sensors by using FPGA: Cyclic Simplex Coding

Methodology of Implementing the Pulse code techniques for Distributed Optical Fiber Sensors by using FPGA: Cyclic Simplex Coding Methodology of Implementing the Pulse code techniques for Distributed Optical Fiber Sensors by using FPGA: Cyclic Simplex Coding Yelkal Mulualem Lecturer, Department of Information Technology, College

More information

OpenCL for FPGAs/HPC Case Study in 3D FFT

OpenCL for FPGAs/HPC Case Study in 3D FFT OpenCL for FPGAs/HPC Case Study in 3D FFT Ahmed Sanaullah Martin Herbordt Vipin Sachdeva Boston University Silicon Therapeutics OpenCL for FPGAs/HPC: Case Study in 3D FFT 11/15/2017 What gives FPGAs high

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

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

GOLAY COMPLEMENTARY CODES, DOUBLE PULSE REPETITION FREQUENCY TRANSMISSION I. TROTS, A. NOWICKI, M. LEWANDOWSKI J. LITNIEWSKI, W.

GOLAY COMPLEMENTARY CODES, DOUBLE PULSE REPETITION FREQUENCY TRANSMISSION I. TROTS, A. NOWICKI, M. LEWANDOWSKI J. LITNIEWSKI, W. ARCHIVES OF ACOUSTICS 31, 4 (Supplement), 35 40 (2006) GOLAY COMPLEMENTARY CODES, DOUBLE PULSE REPETITION FREQUENCY TRANSMISSION I. TROTS, A. NOWICKI, M. LEWANDOWSKI J. LITNIEWSKI, W. SECOMSKI Institute

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

Fire Detection Using Image Processing

Fire Detection Using Image Processing Fire Detection Using Image Processing Ku. R.A.Agrawal ME Student Department of CSE Babasaheb Naik college of Engineering Pusad, India rachanaagrawal90@gmail.com Prof. S.T.Khandare Associate professor Department

More information

Alarm description DECS Contents

Alarm description DECS Contents Alarm description DECS 2.0 1.0 Contents 1.0 Contents...1 2.0 Alarm menu...2 2.1 List of alarms...2 2.2 Selecting Priority...2 2.3 Selecting Status...2 2.4 Specifying Event Text...3 2.5 Selecting Source...3

More information