SlideShare uma empresa Scribd logo
1 de 14
Data acquisition is the process of sampling
signals that measure real world physical
conditions and converting the resulting
samples into digital numeric values that can
be manipulated by a computer. Data
acquisition systems (abbreviated with the
acronym DAQ) typically convert analog
waveforms into digital values for processing.
 Sense physical variables (use of
transducers)
 Condition the electrical signal to make it
readable by an A/D board
 Convert the signal into a digital format
acceptable by a computer
 Process, analyze, store, and display the
acquired data with the help of software
 Physical system:
This term refers to the all physical phenomena that are to be
measured. Temperature, pressure, light, force, displacement, and level
all these can be included as the physical quantity that we measure
directly with the help of sensors and transducers.
 Transducer and actuators:
This is the section which converts sensed physical quantity to its
equivalent electrical signal. A transducer converts temperature,
pressure, level, length, position, etc. into voltage, current, frequency,
pulses or other signals.
An actuator is a device that activates process control equipment by
using pneumatic, hydraulic or electrical power. For example, a valve
actuator opens and closes a valve to control fluid rate.
 Signal conditioning:
Electrical signals are conditioned so they can be used
by an analog input board. Signal conditioning circuits
improve the quality of signals generated by
transducers before they are converted into digital
signals by the PC's data-acquisition hardware. The
following features may be available:
› Amplification
› Isolation
› Filtering
› Linearization
Amplification
One of the most common signal conditioning functions is amplification. For maximum resolution, the
voltage range of the input signals should be approximately equal to the maximum input range of the
A/D converter. Amplification expands the range of the transducer signals so that they match the input
range of the A/D converter. For example, a x10 amplifier maps transducer signals which range from 0
to 1 V into the range 0 to 10 V before they go into the A/D converter. Amplifiers increase voltage level
to better match the analog-to-digital converter (ADC) range, thus increasing the measurement
resolution and sensitivity. In addition, using external signal conditioners located closer to the signal
source, or transducer, improves the measurement signal-to-noise ratio by magnifying the voltage level
before it is affected by environmental noise.
Isolation
Isolated signal conditioning devices pass the signal from its source to the measurement device
without a physical connection by using transformer, optical, or capacitive coupling techniques. In
addition to breaking ground loops, isolation blocks high-voltage surges and rejects high common-
mode voltage and thus protects both the operators and expensive measurement equipment.
Filtering
Filters reject unwanted noise within a certain frequency range. Oftentimes, low pass filters are used to
block out high-frequency noise in electrical measurements, such as 60 Hz power. Another common
use for filtering is to prevent aliasing from high-frequency signals. This can be done by using an
antialiasing filter to attenuate signals above the Nyquist frequency.
Linearization
Linearization is necessary when sensors produce voltage signals that are not linearly related to the
physical measurement. Linearization is the process of interpreting the signal from the sensor and can
be done either with signal conditioning or through software. Thermocouples are the classic example
of a sensor that requires linearization.
 Analog to digital converter:
Analog to digital (A/D) conversion changes analog
voltage or current levels into digital information. The
conversion is necessary to enable the computer to
process or store the signals.
The resolution of the converter indicates the number of
discrete values it can produce over the range of analog
values. The values are usually stored electronically in
binary form, so the resolution is usually expressed in bits.
In consequence, the number of discrete values available,
or "levels", is a power of two. For example, an ADC with a
resolution of 8 bits can encode an analog input to one in
256 different levels, since 28 = 256. The values can
represent the ranges from 0 to 255 (i.e. unsigned integer)
or from −128 to 127 (i.e. signed integer), depending on
the application.
Resolution can also be defined electrically, and expressed
in volts. The minimum change in voltage required to
guarantee a change in the output code level is called
the least significant bit (LSB) voltage.
Resolution
Sampling
In signal processing, sampling is the reduction of a continuous signal to a discrete
signal. A common example is the conversion of a sound wave (a continuous signal) to a
sequence of samples (a discrete-time signal).A sample refers to a value or set of values
at a point in time and/or space. A sampler is a subsystem or operation that extracts
samples from a continuous signal. A theoretical ideal sampler produces samples
equivalent to the instantaneous value of the continuous signal at the desired points.
The analog signal is continuous in time and it is necessary to convert this to a flow of
digital values. It is therefore required to define the rate at which new digital values are
sampled from the analog signal. The rate of new values is called the sampling rate or
sampling frequency of the converter.
A continuously varying band limited signal can be sampled (that is the signal values at
intervals of time T, the sampling time, are measured and stored) and then the original
signal can be exactly reproduced from the discrete-time values by
an interpolation formula. The accuracy is limited by quantization error. However, this
faithful reproduction is only possible if the sampling rate is higher than twice the
highest frequency of the signal.
Aliasing
If the digital values produced by the ADC are, at some later stage in the system,
converted back to analog values by a digital to analog converter or DAC, it is desirable
that the output of the DAC be a faithful representation of the original signal. If the
input signal is changing much faster than the sample rate, then this will not be the
case, and spurious signals called aliases will be produced at the output of the DAC. The
frequency of the aliased signal is the difference between the signal frequency and the
sampling rate. For example, a 2 kHz sine wave being sampled at 1.5 kHz would be
reconstructed as a 500 Hz sine wave. This problem is called aliasing.
To avoid aliasing, the input to an ADC must be low-pass filtered to remove frequencies
above half the sampling rate. This filter is called an anti aliasing filter, and is essential
for a practical ADC system that is applied to analog signals with higher frequency
content.
 Computer:
This is the final or ultimate section that actually
produces the output in digital format. In A/D converter
section the signal already gets transformed into
digitized form that can be understood by the computer.
Now we can access the output through some
hardware and soft wares.
DAQ Hardware
DAQ hardware is what usually interfaces between the signal and a PC. It could be in
the form of modules that can be connected to the computer's ports
(parallel, serial, USB, etc.) or cards connected to slots (S-100 Bus, Apple Bus,
ISA, MCA, PCI, PCI-E, etc.) in the motherboard. DAQ cards often contain multiple
components (multiplexer, ADC, DAC, TTL-IO, high speed timers, RAM). These are
accessible via a bus by a microcontroller, which can run small programs. A controller
is more flexible than a hard wired logic, yet cheaper than a CPU so that it is
permissible to block it with simple polling loops. For example: Waiting for a trigger,
starting the ADC, looking up the time, waiting for the ADC to finish, move value to
RAM, switch multiplexer, get TTL input, let DAC proceed with voltage ramp. Many
times reconfigurable logic is used to achieve high speed for specific tasks and digital
signal processors are used after the data has been acquired to obtain some results.
The fixed connection with the PC allows for comfortable compilation and debugging.
Using an external housing a modular design with slots in a bus can grow with the
needs of the user. Not all DAQ hardware has to run permanently connected to a PC,
for example intelligent stand-alone loggers and oscilloscopes, which can be operated
from a PC, yet they can operate completely independent of the PC.
DAQ Software
DAQ software is needed in order for the DAQ hardware to
work with a PC. It generates a complete DAQ, analysis, and
display system. Data acquisition applications are controlled by
software programs developed using various general purpose
programming languages such as BASIC,C, Fortran, Java, Lisp,
Pascal. Specialized software tools used for building large-scale
data acquisition systems include EPICS. Graphical
programming environments include ladder logic, Visual
C++, Visual Basic, and LabVIEW. It does not require
programming.

Mais conteúdo relacionado

Mais procurados

Lectute instrumentation and process control data acquisition
Lectute instrumentation and process control data acquisitionLectute instrumentation and process control data acquisition
Lectute instrumentation and process control data acquisition
rama52
 
Aeav 311 lecture 25 26- inst.amp+noise
Aeav 311 lecture 25 26- inst.amp+noiseAeav 311 lecture 25 26- inst.amp+noise
Aeav 311 lecture 25 26- inst.amp+noise
0mehdi
 
odometer and some terms in instrumentation
odometer and some terms in instrumentationodometer and some terms in instrumentation
odometer and some terms in instrumentation
Bagja Tirta
 

Mais procurados (20)

Data acquisition system
Data acquisition systemData acquisition system
Data acquisition system
 
sensors and transducers Module 3
sensors and transducers Module 3sensors and transducers Module 3
sensors and transducers Module 3
 
Data acquisition system
Data acquisition systemData acquisition system
Data acquisition system
 
Lectute instrumentation and process control data acquisition
Lectute instrumentation and process control data acquisitionLectute instrumentation and process control data acquisition
Lectute instrumentation and process control data acquisition
 
Aeav 311 lecture 25 26- inst.amp+noise
Aeav 311 lecture 25 26- inst.amp+noiseAeav 311 lecture 25 26- inst.amp+noise
Aeav 311 lecture 25 26- inst.amp+noise
 
measurments
measurmentsmeasurments
measurments
 
Sensor Characteristics and Selection
Sensor Characteristics and Selection Sensor Characteristics and Selection
Sensor Characteristics and Selection
 
Smart Transmitters
Smart TransmittersSmart Transmitters
Smart Transmitters
 
Chap 1 review of instrumentation
Chap 1 review of instrumentationChap 1 review of instrumentation
Chap 1 review of instrumentation
 
Measurements lecture 1
Measurements lecture 1Measurements lecture 1
Measurements lecture 1
 
Lab 1 data acquisition fundamentals
Lab 1   data acquisition fundamentalsLab 1   data acquisition fundamentals
Lab 1 data acquisition fundamentals
 
Introduction to Instrumentation
Introduction to InstrumentationIntroduction to Instrumentation
Introduction to Instrumentation
 
Emi
EmiEmi
Emi
 
Introduction, advantages of electronic instrumentation, instrument classifica...
Introduction, advantages of electronic instrumentation, instrument classifica...Introduction, advantages of electronic instrumentation, instrument classifica...
Introduction, advantages of electronic instrumentation, instrument classifica...
 
Introduction to instrumentation system
Introduction to instrumentation systemIntroduction to instrumentation system
Introduction to instrumentation system
 
odometer and some terms in instrumentation
odometer and some terms in instrumentationodometer and some terms in instrumentation
odometer and some terms in instrumentation
 
Data acquisition & system control basic information
Data acquisition & system control basic information Data acquisition & system control basic information
Data acquisition & system control basic information
 
Voltmeter Calibration
Voltmeter CalibrationVoltmeter Calibration
Voltmeter Calibration
 
Sensors and transducers: module 4
Sensors  and transducers:  module 4Sensors  and transducers:  module 4
Sensors and transducers: module 4
 
Instrumentation
InstrumentationInstrumentation
Instrumentation
 

Semelhante a 86919253 data-acquisition-system-ppt

Data Acquisition System, a side for Electrical Engg.
Data Acquisition System, a side for Electrical Engg.Data Acquisition System, a side for Electrical Engg.
Data Acquisition System, a side for Electrical Engg.
AdnanZafar83
 
Interfacing to the analog world
Interfacing to the analog worldInterfacing to the analog world
Interfacing to the analog world
Islam Samir
 

Semelhante a 86919253 data-acquisition-system-ppt (20)

data-acquisition-system-ppt
data-acquisition-system-pptdata-acquisition-system-ppt
data-acquisition-system-ppt
 
Architecture of Smart Sensors.ppt
Architecture of Smart Sensors.pptArchitecture of Smart Sensors.ppt
Architecture of Smart Sensors.ppt
 
MODULE-2_SIGNAL_CONDITIONING.pptx
MODULE-2_SIGNAL_CONDITIONING.pptxMODULE-2_SIGNAL_CONDITIONING.pptx
MODULE-2_SIGNAL_CONDITIONING.pptx
 
Data Acquisition System, a side for Electrical Engg.
Data Acquisition System, a side for Electrical Engg.Data Acquisition System, a side for Electrical Engg.
Data Acquisition System, a side for Electrical Engg.
 
ADC & DAC
ADC & DACADC & DAC
ADC & DAC
 
Introduction to digital signal processing 2
Introduction to digital signal processing 2Introduction to digital signal processing 2
Introduction to digital signal processing 2
 
Interfacing to the analog world
Interfacing to the analog worldInterfacing to the analog world
Interfacing to the analog world
 
Data acquisition system
Data acquisition systemData acquisition system
Data acquisition system
 
Digital Control Systems
Digital  Control   Systems Digital  Control   Systems
Digital Control Systems
 
Design of Speed Optimized Analog to Digital Converter using VHDL
Design of Speed Optimized Analog to Digital Converter using VHDLDesign of Speed Optimized Analog to Digital Converter using VHDL
Design of Speed Optimized Analog to Digital Converter using VHDL
 
Data Acquisition System
Data Acquisition SystemData Acquisition System
Data Acquisition System
 
Ad and da convertor
Ad and da convertorAd and da convertor
Ad and da convertor
 
Ekeeda - Instrumentation Engineering
Ekeeda - Instrumentation EngineeringEkeeda - Instrumentation Engineering
Ekeeda - Instrumentation Engineering
 
Adc &dac ppt
Adc &dac pptAdc &dac ppt
Adc &dac ppt
 
Signal conditioning
Signal conditioningSignal conditioning
Signal conditioning
 
Ad and da convertor
Ad and da convertorAd and da convertor
Ad and da convertor
 
Analog to Digital Converters
Analog to Digital ConvertersAnalog to Digital Converters
Analog to Digital Converters
 
DAC , Digital to analog Converter
DAC , Digital to analog ConverterDAC , Digital to analog Converter
DAC , Digital to analog Converter
 
Analog to Digital Conversion
Analog to Digital ConversionAnalog to Digital Conversion
Analog to Digital Conversion
 
The iot academy_embeddedsystems_training_basicselectronicspart2
The iot academy_embeddedsystems_training_basicselectronicspart2The iot academy_embeddedsystems_training_basicselectronicspart2
The iot academy_embeddedsystems_training_basicselectronicspart2
 

Último

CRISIS COMMUNICATION presentation=-Rishabh(11195)-group ppt (4).pptx
CRISIS COMMUNICATION presentation=-Rishabh(11195)-group ppt (4).pptxCRISIS COMMUNICATION presentation=-Rishabh(11195)-group ppt (4).pptx
CRISIS COMMUNICATION presentation=-Rishabh(11195)-group ppt (4).pptx
Rishabh332761
 
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
tufbav
 
怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证
怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证
怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证
ehyxf
 
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
uodye
 
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
ehyxf
 
一比一定(购)UNITEC理工学院毕业证(UNITEC毕业证)成绩单学位证
一比一定(购)UNITEC理工学院毕业证(UNITEC毕业证)成绩单学位证一比一定(购)UNITEC理工学院毕业证(UNITEC毕业证)成绩单学位证
一比一定(购)UNITEC理工学院毕业证(UNITEC毕业证)成绩单学位证
wpkuukw
 
一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理
一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理
一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理
uodye
 
Top profile Call Girls In Ratlam [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Ratlam [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Ratlam [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Ratlam [ 7014168258 ] Call Me For Genuine Models We...
nirzagarg
 
Jual Obat Aborsi Samarinda ( No.1 ) 088980685493 Obat Penggugur Kandungan Cy...
Jual Obat Aborsi Samarinda (  No.1 ) 088980685493 Obat Penggugur Kandungan Cy...Jual Obat Aborsi Samarinda (  No.1 ) 088980685493 Obat Penggugur Kandungan Cy...
Jual Obat Aborsi Samarinda ( No.1 ) 088980685493 Obat Penggugur Kandungan Cy...
Obat Aborsi 088980685493 Jual Obat Aborsi
 
一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证
一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证
一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证
wpkuukw
 
一比一定(购)坎特伯雷大学毕业证(UC毕业证)成绩单学位证
一比一定(购)坎特伯雷大学毕业证(UC毕业证)成绩单学位证一比一定(购)坎特伯雷大学毕业证(UC毕业证)成绩单学位证
一比一定(购)坎特伯雷大学毕业证(UC毕业证)成绩单学位证
wpkuukw
 
在线办理(scu毕业证)南十字星大学毕业证电子版学位证书注册证明信
在线办理(scu毕业证)南十字星大学毕业证电子版学位证书注册证明信在线办理(scu毕业证)南十字星大学毕业证电子版学位证书注册证明信
在线办理(scu毕业证)南十字星大学毕业证电子版学位证书注册证明信
oopacde
 
在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一
在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一
在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一
ougvy
 
一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证
一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证
一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证
wpkuukw
 

Último (20)

CRISIS COMMUNICATION presentation=-Rishabh(11195)-group ppt (4).pptx
CRISIS COMMUNICATION presentation=-Rishabh(11195)-group ppt (4).pptxCRISIS COMMUNICATION presentation=-Rishabh(11195)-group ppt (4).pptx
CRISIS COMMUNICATION presentation=-Rishabh(11195)-group ppt (4).pptx
 
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
 
怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证
怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证
怎样办理阿德莱德大学毕业证(Adelaide毕业证书)成绩单留信认证
 
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
一比一原版(Otago毕业证书)奥塔哥理工学院毕业证成绩单学位证靠谱定制
 
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
 
Call Girls Amethi 9332606886 HOT & SEXY Models beautiful and charming call g...
Call Girls Amethi  9332606886 HOT & SEXY Models beautiful and charming call g...Call Girls Amethi  9332606886 HOT & SEXY Models beautiful and charming call g...
Call Girls Amethi 9332606886 HOT & SEXY Models beautiful and charming call g...
 
Guwahati Escorts Service Girl ^ 9332606886, WhatsApp Anytime Guwahati
Guwahati Escorts Service Girl ^ 9332606886, WhatsApp Anytime GuwahatiGuwahati Escorts Service Girl ^ 9332606886, WhatsApp Anytime Guwahati
Guwahati Escorts Service Girl ^ 9332606886, WhatsApp Anytime Guwahati
 
Hilti's Latest Battery - Hire Depot.pptx
Hilti's Latest Battery - Hire Depot.pptxHilti's Latest Battery - Hire Depot.pptx
Hilti's Latest Battery - Hire Depot.pptx
 
Mass storage systems presentation operating systems
Mass storage systems presentation operating systemsMass storage systems presentation operating systems
Mass storage systems presentation operating systems
 
一比一定(购)UNITEC理工学院毕业证(UNITEC毕业证)成绩单学位证
一比一定(购)UNITEC理工学院毕业证(UNITEC毕业证)成绩单学位证一比一定(购)UNITEC理工学院毕业证(UNITEC毕业证)成绩单学位证
一比一定(购)UNITEC理工学院毕业证(UNITEC毕业证)成绩单学位证
 
一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理
一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理
一比一原版(USYD毕业证书)澳洲悉尼大学毕业证如何办理
 
Top profile Call Girls In Ratlam [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Ratlam [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Ratlam [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Ratlam [ 7014168258 ] Call Me For Genuine Models We...
 
Jual Obat Aborsi Samarinda ( No.1 ) 088980685493 Obat Penggugur Kandungan Cy...
Jual Obat Aborsi Samarinda (  No.1 ) 088980685493 Obat Penggugur Kandungan Cy...Jual Obat Aborsi Samarinda (  No.1 ) 088980685493 Obat Penggugur Kandungan Cy...
Jual Obat Aborsi Samarinda ( No.1 ) 088980685493 Obat Penggugur Kandungan Cy...
 
一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证
一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证
一比一定(购)国立南方理工学院毕业证(Southern毕业证)成绩单学位证
 
一比一定(购)坎特伯雷大学毕业证(UC毕业证)成绩单学位证
一比一定(购)坎特伯雷大学毕业证(UC毕业证)成绩单学位证一比一定(购)坎特伯雷大学毕业证(UC毕业证)成绩单学位证
一比一定(购)坎特伯雷大学毕业证(UC毕业证)成绩单学位证
 
在线办理(scu毕业证)南十字星大学毕业证电子版学位证书注册证明信
在线办理(scu毕业证)南十字星大学毕业证电子版学位证书注册证明信在线办理(scu毕业证)南十字星大学毕业证电子版学位证书注册证明信
在线办理(scu毕业证)南十字星大学毕业证电子版学位证书注册证明信
 
Vashi Affordable Call Girls ,07506202331,Vasai Virar Charming Call Girl
Vashi Affordable Call Girls ,07506202331,Vasai Virar Charming Call GirlVashi Affordable Call Girls ,07506202331,Vasai Virar Charming Call Girl
Vashi Affordable Call Girls ,07506202331,Vasai Virar Charming Call Girl
 
在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一
在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一
在线制作(ANU毕业证书)澳大利亚国立大学毕业证成绩单原版一比一
 
一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证
一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证
一比一定(购)新西兰林肯大学毕业证(Lincoln毕业证)成绩单学位证
 
🌹Patia⬅️ Vip Call Girls Bhubaneswar 📱9777949614 Book Well Trand Call Girls In...
🌹Patia⬅️ Vip Call Girls Bhubaneswar 📱9777949614 Book Well Trand Call Girls In...🌹Patia⬅️ Vip Call Girls Bhubaneswar 📱9777949614 Book Well Trand Call Girls In...
🌹Patia⬅️ Vip Call Girls Bhubaneswar 📱9777949614 Book Well Trand Call Girls In...
 

86919253 data-acquisition-system-ppt

  • 1.
  • 2. Data acquisition is the process of sampling signals that measure real world physical conditions and converting the resulting samples into digital numeric values that can be manipulated by a computer. Data acquisition systems (abbreviated with the acronym DAQ) typically convert analog waveforms into digital values for processing.
  • 3.  Sense physical variables (use of transducers)  Condition the electrical signal to make it readable by an A/D board  Convert the signal into a digital format acceptable by a computer  Process, analyze, store, and display the acquired data with the help of software
  • 4.
  • 5.  Physical system: This term refers to the all physical phenomena that are to be measured. Temperature, pressure, light, force, displacement, and level all these can be included as the physical quantity that we measure directly with the help of sensors and transducers.  Transducer and actuators: This is the section which converts sensed physical quantity to its equivalent electrical signal. A transducer converts temperature, pressure, level, length, position, etc. into voltage, current, frequency, pulses or other signals. An actuator is a device that activates process control equipment by using pneumatic, hydraulic or electrical power. For example, a valve actuator opens and closes a valve to control fluid rate.
  • 6.  Signal conditioning: Electrical signals are conditioned so they can be used by an analog input board. Signal conditioning circuits improve the quality of signals generated by transducers before they are converted into digital signals by the PC's data-acquisition hardware. The following features may be available: › Amplification › Isolation › Filtering › Linearization
  • 7. Amplification One of the most common signal conditioning functions is amplification. For maximum resolution, the voltage range of the input signals should be approximately equal to the maximum input range of the A/D converter. Amplification expands the range of the transducer signals so that they match the input range of the A/D converter. For example, a x10 amplifier maps transducer signals which range from 0 to 1 V into the range 0 to 10 V before they go into the A/D converter. Amplifiers increase voltage level to better match the analog-to-digital converter (ADC) range, thus increasing the measurement resolution and sensitivity. In addition, using external signal conditioners located closer to the signal source, or transducer, improves the measurement signal-to-noise ratio by magnifying the voltage level before it is affected by environmental noise. Isolation Isolated signal conditioning devices pass the signal from its source to the measurement device without a physical connection by using transformer, optical, or capacitive coupling techniques. In addition to breaking ground loops, isolation blocks high-voltage surges and rejects high common- mode voltage and thus protects both the operators and expensive measurement equipment. Filtering Filters reject unwanted noise within a certain frequency range. Oftentimes, low pass filters are used to block out high-frequency noise in electrical measurements, such as 60 Hz power. Another common use for filtering is to prevent aliasing from high-frequency signals. This can be done by using an antialiasing filter to attenuate signals above the Nyquist frequency. Linearization Linearization is necessary when sensors produce voltage signals that are not linearly related to the physical measurement. Linearization is the process of interpreting the signal from the sensor and can be done either with signal conditioning or through software. Thermocouples are the classic example of a sensor that requires linearization.
  • 8.  Analog to digital converter: Analog to digital (A/D) conversion changes analog voltage or current levels into digital information. The conversion is necessary to enable the computer to process or store the signals.
  • 9. The resolution of the converter indicates the number of discrete values it can produce over the range of analog values. The values are usually stored electronically in binary form, so the resolution is usually expressed in bits. In consequence, the number of discrete values available, or "levels", is a power of two. For example, an ADC with a resolution of 8 bits can encode an analog input to one in 256 different levels, since 28 = 256. The values can represent the ranges from 0 to 255 (i.e. unsigned integer) or from −128 to 127 (i.e. signed integer), depending on the application. Resolution can also be defined electrically, and expressed in volts. The minimum change in voltage required to guarantee a change in the output code level is called the least significant bit (LSB) voltage. Resolution
  • 10. Sampling In signal processing, sampling is the reduction of a continuous signal to a discrete signal. A common example is the conversion of a sound wave (a continuous signal) to a sequence of samples (a discrete-time signal).A sample refers to a value or set of values at a point in time and/or space. A sampler is a subsystem or operation that extracts samples from a continuous signal. A theoretical ideal sampler produces samples equivalent to the instantaneous value of the continuous signal at the desired points. The analog signal is continuous in time and it is necessary to convert this to a flow of digital values. It is therefore required to define the rate at which new digital values are sampled from the analog signal. The rate of new values is called the sampling rate or sampling frequency of the converter. A continuously varying band limited signal can be sampled (that is the signal values at intervals of time T, the sampling time, are measured and stored) and then the original signal can be exactly reproduced from the discrete-time values by an interpolation formula. The accuracy is limited by quantization error. However, this faithful reproduction is only possible if the sampling rate is higher than twice the highest frequency of the signal.
  • 11. Aliasing If the digital values produced by the ADC are, at some later stage in the system, converted back to analog values by a digital to analog converter or DAC, it is desirable that the output of the DAC be a faithful representation of the original signal. If the input signal is changing much faster than the sample rate, then this will not be the case, and spurious signals called aliases will be produced at the output of the DAC. The frequency of the aliased signal is the difference between the signal frequency and the sampling rate. For example, a 2 kHz sine wave being sampled at 1.5 kHz would be reconstructed as a 500 Hz sine wave. This problem is called aliasing. To avoid aliasing, the input to an ADC must be low-pass filtered to remove frequencies above half the sampling rate. This filter is called an anti aliasing filter, and is essential for a practical ADC system that is applied to analog signals with higher frequency content.
  • 12.  Computer: This is the final or ultimate section that actually produces the output in digital format. In A/D converter section the signal already gets transformed into digitized form that can be understood by the computer. Now we can access the output through some hardware and soft wares.
  • 13. DAQ Hardware DAQ hardware is what usually interfaces between the signal and a PC. It could be in the form of modules that can be connected to the computer's ports (parallel, serial, USB, etc.) or cards connected to slots (S-100 Bus, Apple Bus, ISA, MCA, PCI, PCI-E, etc.) in the motherboard. DAQ cards often contain multiple components (multiplexer, ADC, DAC, TTL-IO, high speed timers, RAM). These are accessible via a bus by a microcontroller, which can run small programs. A controller is more flexible than a hard wired logic, yet cheaper than a CPU so that it is permissible to block it with simple polling loops. For example: Waiting for a trigger, starting the ADC, looking up the time, waiting for the ADC to finish, move value to RAM, switch multiplexer, get TTL input, let DAC proceed with voltage ramp. Many times reconfigurable logic is used to achieve high speed for specific tasks and digital signal processors are used after the data has been acquired to obtain some results. The fixed connection with the PC allows for comfortable compilation and debugging. Using an external housing a modular design with slots in a bus can grow with the needs of the user. Not all DAQ hardware has to run permanently connected to a PC, for example intelligent stand-alone loggers and oscilloscopes, which can be operated from a PC, yet they can operate completely independent of the PC.
  • 14. DAQ Software DAQ software is needed in order for the DAQ hardware to work with a PC. It generates a complete DAQ, analysis, and display system. Data acquisition applications are controlled by software programs developed using various general purpose programming languages such as BASIC,C, Fortran, Java, Lisp, Pascal. Specialized software tools used for building large-scale data acquisition systems include EPICS. Graphical programming environments include ladder logic, Visual C++, Visual Basic, and LabVIEW. It does not require programming.