Phone

    00852-6915 1330

The Kynix Blog

Stay Ahead with Expert Electronics Insights,
Industry Trends, and Innovative Tips

Resistors

Analog to Digital Converters (ADC) Overview: Working, Types and Applications

Ⅰ IntroductionIn an analog world surrounded by digital devices, we exist in a fascinating intersection of two domains. In nature, everything we observe, feel, or measure is analog—such as light, temperature, speed, pressure, and sound. However, most electronic devices around us are digital, ranging from basic digital watches to sophisticated supercomputers and AI systems. Therefore, for microcontrollers, microprocessors, and modern computing systems to understand and process real-world phenomena, we need devices that can convert these analog parameters into digital values. This conversion is performed by an ADC (Analog-to-Digital Converter), and in this comprehensive guide, we will explore their functionality, types, and applications in modern electronics.Ⅱ Definition of ADC (Analog-to-Digital Converter)An Analog-to-Digital Converter (ADC) is a circuit that converts continuous voltage values (analog signals) into binary values (digital data) that can be interpreted and processed by digital computers and microcontrollers. These ADC circuits can be found as standalone integrated circuits (ICs) or embedded within microcontrollers, system-on-chip (SoC) designs, and digital signal processors (DSPs). The conversion process involves sampling the analog signal at discrete time intervals and quantizing the amplitude into digital codes.Modern ADCs are fundamental components in virtually all electronic systems that interface with the physical world, from smartphones and IoT devices to medical equipment and automotive sensors.Ⅲ The Reasons for Using ADCsToday's electronics ecosystem is predominantly digital; the era of analog computers has long passed. However, the physical world we inhabit remains inherently analog and continuous. Digital systems can only process discrete values—essentially ones and zeros—which creates a fundamental incompatibility with analog signals.For example, a temperature sensor such as the LM35 outputs a temperature-dependent voltage—specifically, 10 mV per degree Celsius. If we connect this directly to a digital input pin, the microcontroller will only register it as either HIGH or LOW based on threshold voltages (typically around 0.8V for LOW and 2V for HIGH in 5V systems), which provides no useful temperature information. Instead, we use an ADC to convert the analog voltage input into a multi-bit digital value that can be directly processed by the microprocessor's data bus, enabling precise calculations, data logging, and control decisions.Key reasons for using ADCs include:Enabling digital processing of real-world analog signalsFacilitating data storage and transmission in digital formatAllowing complex mathematical operations on sensor dataEnabling machine learning and AI applications with sensor inputsProviding noise immunity through digital signal processingⅣ Working Principles of ADCUnderstanding ADC operation is best approached by viewing it as a mathematical mapping function. The ADC maps continuous analog voltage values to discrete binary numbers within a defined range. This process involves three fundamental steps: sampling, quantization, and encoding.The ADC needs to bridge the gap between the analog voltage domain and the digital logic domain. Since digital registers can only accept discrete logic levels (HIGH/LOW), directly connecting an analog signal would produce unreliable results. The ADC acts as an intelligent interface that periodically samples the analog input and converts each sample into a binary representation.Figure 1: Analog to Digital Conversion ProcessHere are the essential characteristics of ADCs that determine their performance and suitability for different applications:4.1 Reference VoltageNo ADC operates in absolute terms; instead, it requires a reference voltage that defines the full-scale range. The reference voltage represents the maximum analog input that corresponds to the highest possible digital output value. For example, in a 10-bit converter with a 5V reference voltage, the binary value 1111111111 (1023 in decimal—the highest possible 10-bit number) corresponds to 5V, while 0000000000 (0 in decimal) corresponds to 0V.Since 10 bits provide 210 = 1024 possible values (0-1023), each binary step represents approximately 5V / 1024 ≈ 4.88 mV. This measure is called the resolution or LSB (Least Significant Bit) voltage of the ADC. The formula is:Resolution (V) = VREF / 2nwhere VREF is the reference voltage and n is the number of bitsIf the analog voltage changes by less than one LSB (4.88mV in this example), the ADC cannot detect the change—this creates a quantization error. To minimize this error and improve measurement precision, you can either use an ADC with higher resolution (more bits) or reduce the reference voltage to match your signal range more closely.Modern ADCs are available with resolutions ranging from 8 bits (256 levels) for simple applications to 32 bits (over 4 billion levels) for precision scientific instruments, though 12-bit and 16-bit converters are most common in embedded systems.4.2 Sample Rate (Sampling Speed)The sample rate, also called sampling frequency, refers to the number of analog-to-digital conversions the ADC performs per second, measured in samples per second (S/s or SPS). High-performance ADCs can achieve sample rates exceeding 1 GS/s (giga-samples per second, or one billion samples per second), while precision ADCs might operate at just a few samples per second.According to the Nyquist-Shannon sampling theorem, to accurately reconstruct a signal, the sampling rate must be at least twice the highest frequency component in the signal. For example, to digitize audio signals with frequencies up to 20 kHz, you need a sampling rate of at least 40 kHz (which is why CD audio uses 44.1 kHz).The sampling speed depends on the ADC architecture and the required accuracy. Generally, there's a trade-off between speed and resolution: high-speed ADCs (like flash ADCs) typically have lower resolution (8-10 bits), while high-resolution ADCs (like sigma-delta ADCs) operate at lower speeds. This is because achieving higher precision requires more time to accurately measure and convert the analog signal.4.3 Additional Key SpecificationsSignal-to-Noise Ratio (SNR): Measures the ratio of the desired signal power to background noise, typically expressed in decibels (dB). Higher SNR indicates better performance.Effective Number of Bits (ENOB): Accounts for real-world imperfections and indicates the actual resolution achieved in practice, which is typically less than the nominal bit count.Input Impedance: The electrical resistance presented by the ADC input, which affects how it loads the source circuit. High input impedance is generally desirable to minimize signal distortion.Ⅴ Types of ADCsVarious ADC architectures have been developed to optimize for different combinations of speed, resolution, power consumption, and cost. Here are the most common types:5.1 Flash ADCs (Parallel ADCs)Flash ADCs are the fastest type of analog-to-digital converter, capable of conversion rates exceeding 1 GS/s. They consist of a resistor ladder voltage divider and an array of comparators—one for each quantization level. For an n-bit flash ADC, 2n - 1 comparators are required.Figure 2: Flash ADC ArchitectureAll comparators operate simultaneously (in parallel), comparing the input voltage against their respective reference levels. The comparator outputs are then fed through a priority encoder that converts the thermometer code into binary format. The conversion speed is limited only by the propagation delays of the comparators and encoder, making flash ADCs ideal for high-speed applications like video processing and radar systems.Advantages: Extremely fast, simple operationDisadvantages: High power consumption, large chip area, limited resolution (typically 8-10 bits due to exponential growth in component count), expensive for high-resolution designs5.2 Successive Approximation Register (SAR) ADCsSAR ADCs are among the most popular and widely used converters, offering an excellent balance between speed, resolution, and power consumption. They consist of a sample-and-hold circuit, a comparator, a Digital-to-Analog Converter (DAC), and successive approximation logic.The conversion process uses a binary search algorithm. Starting with the most significant bit (MSB), the SAR sets each bit to '1' and compares the DAC output with the input voltage. If the DAC output exceeds the input, the bit is cleared to '0'; otherwise, it remains '1'. This process repeats for each bit from MSB to LSB, requiring n clock cycles for an n-bit conversion.SAR ADCs are ubiquitous in microcontrollers (including Arduino, STM32, ESP32, and most ARM Cortex-M devices) and can achieve resolutions from 8 to 18 bits with sampling rates from 100 kS/s to several MS/s.Advantages: Good resolution, moderate speed, low power consumption, cost-effectiveDisadvantages: Slower than flash ADCs, requires n clock cycles for n-bit conversion5.3 Sigma-Delta (ΣΔ) ADCsSigma-delta ADCs achieve very high resolution (16 to 32 bits) by using oversampling and noise-shaping techniques. They sample the input at a rate much higher than the Nyquist rate and use digital filtering to achieve high effective resolution at lower output data rates.These converters are ideal for precision measurement applications such as digital scales, industrial sensors, audio recording equipment, and medical instrumentation where accuracy is paramount and speed is less critical.Advantages: Excellent resolution and linearity, good noise rejection, simple analog circuitryDisadvantages: Slow conversion rate, complex digital filtering required, higher latency5.4 Dual-Slope (Integrating) ADCsDual-slope ADCs integrate the input signal for a fixed period, then integrate a reference voltage of opposite polarity until the integrator returns to zero. The time required for the second integration is proportional to the input voltage. A counter measures this time, providing the digital output.While slow, dual-slope ADCs offer excellent noise rejection (especially for 50/60 Hz line frequency noise) and are commonly used in digital multimeters and panel meters.Advantages: High accuracy, excellent noise rejection, low costDisadvantages: Very slow conversion speed, typically limited to a few conversions per second5.5 Pipeline ADCsPipeline ADCs divide the conversion into multiple stages, with each stage resolving a few bits. The residue from each stage is amplified and passed to the next stage. This architecture allows for high sampling rates (10-100 MS/s) with moderate resolution (8-16 bits), making them popular in video processing, communications, and imaging applications.Ⅵ Applications of ADCs6.1 Digital Oscilloscopes and MultimetersWhile analog oscilloscopes provide real-time display with minimal processing delay, they cannot store waveforms, perform automated measurements, or conduct advanced signal analysis. Digital oscilloscopes solve these limitations by employing high-speed, high-resolution ADCs (typically 8-12 bits at sampling rates up to several GS/s).Modern digital oscilloscopes can capture transient events, perform FFT analysis, decode serial protocols, and store thousands of waveforms for later analysis. Similarly, digital multimeters use precision ADCs (often dual-slope or sigma-delta types) to provide accurate voltage, current, and resistance measurements with 3½ to 8½ digit resolution.6.2 Microcontrollers and Embedded SystemsNearly all modern microcontrollers include integrated ADCs, making them essential for IoT devices, sensor interfaces, and embedded control systems. Common examples include:Arduino (ATmega328P): 10-bit SAR ADC, 6 channels, up to 15 kS/sSTM32 series: 12-bit SAR ADC, multiple channels, up to 5 MS/s (varies by model)ESP32: 12-bit SAR ADC, 18 channels, up to 2 MS/sRaspberry Pi Pico (RP2040): 12-bit SAR ADC, 4 channels, 500 kS/sNordic nRF52 series: 12-bit SAR ADC for low-power wireless applicationsThe Arduino IDE provides a convenient analogRead() function that reads an analog voltage on any analog input pin and returns a 10-bit integer value (0-1023), making ADC usage accessible even for beginners.6.3 Digital Power Supplies and Battery ManagementModern programmable power supplies and battery management systems rely heavily on ADCs to monitor output voltage, current, and temperature. These measurements enable precise regulation, protection features, and user interfaces displaying real-time parameters. High-resolution ADCs (16-24 bits) are often used in precision laboratory power supplies to achieve millivolt-level accuracy.6.4 Audio Recording and ProcessingProfessional audio equipment uses high-quality sigma-delta ADCs with 24-bit resolution and sampling rates of 44.1 kHz, 48 kHz, 96 kHz, or even 192 kHz. These converters enable digital recording, processing, and storage of audio signals with exceptional fidelity. Consumer devices like smartphones and laptops also incorporate audio ADCs for voice recording and communication.6.5 Medical InstrumentationMedical devices such as ECG monitors, pulse oximeters, blood glucose meters, and patient monitoring systems all depend on precision ADCs to convert physiological signals into digital data for analysis, display, and storage. These applications demand high accuracy, low noise, and often require specialized ADCs designed for biomedical signals.6.6 Automotive and Industrial SensorsModern vehicles contain hundreds of sensors monitoring engine parameters, emissions, tire pressure, temperature, acceleration, and more—all requiring ADCs for digital processing. Industrial automation similarly relies on ADCs for process control, quality monitoring, and predictive maintenance applications.Ⅶ How to Use External ADC ICsWhen the built-in ADC of a microcontroller doesn't meet your requirements—whether due to insufficient resolution, speed, or channel count—external ADC ICs provide a solution. Popular external ADC modules include the ADS1115, MCP3008, AD7606, and ADS1256, which can be interfaced with microcontrollers, Raspberry Pi, and other digital systems.Let's examine the Texas Instruments ADS1115, a popular 16-bit ADC with advanced features and excellent performance:Figure 3: ADS1115 16-bit ADC Module7.1 Key Features of Modern ADC ICsI²C/SPI Interface: The ADS1115 uses the I²C bus for communication, making it easy to interface with Arduino, Raspberry Pi, ESP32, and other platforms. Extensive libraries are available in multiple programming languages, simplifying implementation. The I²C interface also allows multiple ADCs to share the same bus using different addresses.Low Power Consumption: Modern ADC ICs are designed for efficiency, with the ADS1115 consuming only 150 µA in continuous conversion mode and less than 1 µA in power-down mode. The operating voltage range of 2.0V to 5.5V makes it compatible with both 3.3V and 5V systems.Programmable Gain Amplifier (PGA): The ADS1115 includes a built-in PGA with selectable gain settings (±6.144V, ±4.096V, ±2.048V, ±1.024V, ±0.512V, ±0.256V), allowing you to optimize the measurement range for your signal amplitude and maximize resolution.Flexible Input Configuration: The four analog inputs can be configured as four single-ended inputs or two differential pairs, providing versatility for different measurement scenarios. Differential inputs are particularly useful for rejecting common-mode noise.Programmable Comparator: An integrated comparator with programmable thresholds can generate interrupts when the input exceeds specified limits, enabling efficient event-driven programming without continuous polling.High Resolution: With 16-bit resolution, the ADS1115 provides 65,536 discrete levels, offering significantly better precision than typical 10-bit or 12-bit microcontroller ADCs. At the ±4.096V range, this translates to approximately 125 µV per step.Ⅷ Limitations and Considerations of ADCsWhile ADCs are essential components, they do have inherent limitations that designers must consider:Conversion Time: ADCs require finite time to perform conversions, ranging from nanoseconds (flash ADCs) to milliseconds (high-resolution sigma-delta ADCs). This introduces latency that may be problematic in real-time control systems.Quantization Error: The discrete nature of digital representation means that analog values between quantization levels cannot be precisely represented, introducing an inherent error of up to ±½ LSB.Aliasing: If the input signal contains frequency components above half the sampling rate (Nyquist frequency), aliasing occurs, causing high-frequency signals to appear as lower frequencies in the digital output. Anti-aliasing filters are required to prevent this.Noise and Interference: ADCs are sensitive to electrical noise, which can degrade measurement accuracy. Proper PCB layout, grounding, filtering, and shielding are essential for optimal performance.Input Impedance Effects: The ADC input impedance can load the source circuit, potentially affecting the signal being measured. Buffer amplifiers may be necessary for high-impedance sources.Cost and Complexity: High-performance ADCs (high resolution and high speed) are expensive and may require complex supporting circuitry, including precision voltage references, low-noise power supplies, and sophisticated digital signal processing.Power Consumption: High-speed ADCs can consume significant power, which may be problematic in battery-powered or energy-constrained applications.Ⅸ Frequently Asked Questions (FAQ)1. Why do we need an ADC converter?The physical world is inherently analog—sound waves, light, temperature, pressure, and other phenomena exist as continuous values. However, digital computers and microcontrollers can only process discrete binary numbers (ones and zeros). ADCs bridge this gap by sampling analog signals and converting them into digital representations that computers can store, process, and analyze. This enables applications ranging from digital audio recording and sensor data logging to medical diagnostics and industrial automation. Without ADCs, modern digital systems would be unable to interact with or measure real-world phenomena.2. What is the slowest type of ADC?Dual-slope (integrating) ADCs are among the slowest, typically performing only a few conversions per second. However, this slow speed is often intentional—these ADCs integrate the signal over a long period, which provides excellent noise rejection, particularly for 50/60 Hz power line interference. They're commonly used in digital multimeters where accuracy is more important than speed. Sigma-delta ADCs can also be quite slow when configured for maximum resolution, though they offer superior performance compared to dual-slope designs.3. What is the difference between 8-bit, 10-bit, and 12-bit ADCs?The bit count determines the resolution—how finely the ADC can divide the voltage range. An 8-bit ADC provides 256 discrete levels (2⁸), a 10-bit ADC provides 1,024 levels (2¹⁰), and a 12-bit ADC provides 4,096 levels (2¹²). With a 5V reference: an 8-bit ADC has ~19.5 mV per step, a 10-bit ADC has ~4.9 mV per step, and a 12-bit ADC has ~1.2 mV per step. Higher resolution allows detection of smaller voltage changes, making the measurement more precise. However, higher resolution often comes with trade-offs in speed, cost, and complexity. Choose the resolution based on your application's accuracy requirements.4. What is the difference between ADC and DAC?An ADC (Analog-to-Digital Converter) is an input device that converts continuous analog signals into discrete digital values for processing by digital systems. A DAC (Digital-to-Analog Converter) performs the opposite function—it's an output device that converts digital values into continuous analog signals. For example, when recording audio, an ADC converts sound waves (analog) into digital data; when playing back that audio, a DAC converts the digital data back into analog signals that drive speakers. Both are essential for digital systems to interact with the analog world.5. How does the ADC inside a microcontroller work?Most microcontrollers use SAR (Successive Approximation Register) ADCs due to their good balance of speed, resolution, and power efficiency. The process involves: (1) A sample-and-hold circuit captures and holds the input voltage stable during conversion; (2) The SAR logic performs a binary search, testing each bit from MSB to LSB by comparing the input against a DAC output; (3) After n clock cycles (for n bits), the final binary value is stored in a register where the CPU can read it. The entire process typically takes a few microseconds, and many microcontrollers can perform conversions automatically in the background using DMA (Direct Memory Access).6. How do you convert analog to digital?The conversion process involves three main steps: (1) Sampling: The continuous analog signal is measured at discrete time intervals determined by the sampling rate; (2) Quantization: Each sampled voltage value is mapped to the nearest discrete level based on the ADC's resolution; (3) Encoding: The quantized level is represented as a binary number. The sampling rate must be at least twice the highest frequency in the signal (Nyquist theorem) to avoid aliasing, and the resolution must be sufficient to capture the required detail in the amplitude.7. Why do we need to convert analog to digital?Digital representation offers numerous advantages: (1) Processing: Digital signals can be easily manipulated using algorithms, filters, and mathematical operations; (2) Storage: Digital data can be stored indefinitely without degradation; (3) Transmission: Digital signals are less susceptible to noise and interference during transmission; (4) Accuracy: Digital systems can perform precise calculations and measurements; (5) Integration: Digital data can be easily shared between different systems and processed by computers; (6) Advanced Features: Digital signals enable machine learning, pattern recognition, and sophisticated analysis impossible with analog systems.8. What are common applications of ADCs?ADCs are used in countless applications: digital oscilloscopes and multimeters for test equipment; microcontrollers and embedded systems for sensor interfaces; audio recording and playback equipment; medical devices (ECG, pulse oximeters, blood pressure monitors); automotive sensors (engine management, safety systems); industrial process control; telecommunications equipment; digital cameras and imaging systems; touchscreen interfaces; battery management systems; smart home devices and IoT sensors; scientific instrumentation; and data acquisition systems. Essentially, any application requiring a digital system to measure or respond to analog phenomena requires an ADC.9. What's the difference between analog and digital signals?Analog signals are continuous in both time and amplitude—they can take any value within a range and change smoothly over time. Examples include sound waves, temperature variations, and light intensity. Digital signals are discrete in both time and amplitude—they exist only at specific time intervals (samples) and can only take specific values (quantization levels). Digital signals are typically represented as binary numbers (sequences of 1s and 0s). While analog signals directly represent physical phenomena, digital signals are representations that approximate the analog world in a form that computers can process.10. What factors should I consider when choosing an ADC?Key selection criteria include: (1) Resolution: How many bits are needed for your accuracy requirements? (2) Sampling Rate: How fast must you sample to capture your signal's frequency content? (3) Input Range: Does it match your signal amplitude? (4) Number of Channels: How many signals need to be measured? (5) Interface: SPI, I²C, parallel, or integrated? (6) Power Consumption: Critical for battery-powered applications; (7) Cost: Balance performance with budget; (8) Package Size: PCB space constraints; (9) Input Type: Single-ended or differential? (10) Additional Features: Built-in PGA, reference, comparator, etc. Consider your application's priorities—speed, accuracy, power, or cost—and choose accordingly.Ⅹ ConclusionAnalog-to-Digital Converters are fundamental building blocks of modern electronics, serving as the essential bridge between our analog physical world and the digital systems that process information. From the simplest temperature sensor in a home thermostat to the sophisticated signal processing in medical imaging equipment, ADCs enable digital systems to perceive, measure, and respond to real-world phenomena.Understanding ADC specifications—resolution, sampling rate, input range, and architecture—is crucial for selecting the right converter for your application. Whether you're using the built-in ADC in a microcontroller for a hobby project or designing a precision measurement system with external high-resolution ADCs, the principles remain the same: sample the analog world accurately and convert it to digital form for processing.As technology advances, ADCs continue to improve in resolution, speed, and power efficiency while decreasing in cost and size. This ongoing evolution enables new applications in IoT, wearable devices, autonomous vehicles, and countless other fields where the digital and analog worlds intersect.Last Updated: November 2025
Kynix On 2021-01-19   5612
Resistors

What Are the Two Major Types of Fuses?

IntroductionIn electronics and electrical circuits, a Fuse is an electrical safety device that operates to provide overcurrent protection. In order to stop the damaging effects of overcurrent, when too much current flows through the low resistance element of the fuse, the element melts and breaks the circuit, because a special feature of the fuse is that it contains a piece of wire that melts easily. Fuses are widely used for the protection of electric motor circuits of different types. Before you read the following note, you can think about a question: what are the types of fuses and their uses?What is an Electric Fuse? and How to Prevent Short Circuit with Fuses?CatalogIntroductionⅠ Fuse Basic Overview1.1 What Are Fuses1.2 Fuse Working Principle1.3 Electrical Fuse Symbol1.4 Fuse MaterialsⅡ Electric Fuse Classification2.1 DC Fuses Basic2.2 AC Fuses BasicⅢ ConclusionⅣ Frequently Asked Questions about Fuse Types Basics and Its ApplicationsⅠ Fuse Basic Overview1.1 What Are FusesAn electrical fuse is a protection device built around a conductive strip that is designed to melt and separate in the event of excessive current. In other words, what are fuses for? The fuse breaks the circuit if a fault in an appliance causes too much current to flow. Except that, fuses are essentially temperature-sensitive devices. Even small variations from the controlled test conditions can greatly affect the predicted life of a fuse.1.2 Fuse Working PrincipleThe primary task of a fuse is to split the circuit if the circuit draws a current higher than desired, thus avoiding the harm due to short circuits.The simplest fuse type consists of a resistive part, carefully chosen for its melting point. A slight voltage drop (small enough so that the circuit downstream will not be impacted) is generated across the element when a current passes through this element, and some power is dissipated as heat. Thus, the element's temperature increases. This temperature rise is not necessary for normal currents to melt the filament. However, the melting point is easily reached if the current draw reaches the nominal current of the fuse. The resistive part melts and is disrupted by the circuit. The nominal current is determined by the thickness and length of the resistive material.To provide predictable trip currents, fuse components are made of zinc, copper, silver, aluminum, or other alloys. Over time, the element must not oxidize or corrode.1.3 Electrical Fuse SymbolWhat is the symbol of fuse? different fuse symbols in the electrical circuit diagram showed below.Electronic Symbols of Fuse1.4 Fuse MaterialsWhat are fuses made of? The material used for making fuse elements has a low melting point such as tin, lead, or zinc. A low melting point is, however, available with a high specific resistance metal shown in the table below. The material mainly used for fuse elements are tin, lead, silver, copper, zinc, aluminum, and an alloy of lead and tin. Ⅱ Electric Fuse ClassificationAfter you know what is a fuse in a circuit, the following are the types of fuse. There is a wide selection of PCB fuses in the market. Here introduce two major types: AC fuses, and DC fuses. The following note describes different types of fuses and their constriction, working characteristics.Types of Fuse Explained2.1 DC Fuses BasicCartridge FusesThis is the fused form that is the most common. In a glass envelope that is terminated by metal caps, the fuse part is encased. In a suitable holder, the fuse is mounted. As the glass envelope is transparent, whether the fuse is blown, it is easy to visually determine.This style has many versions, including the slow blow fuse and the quick blow fuse. Slow blow fuses have a larger element that can handle overcurrent and are unaffected by spikes in the appliance for a relatively short period of time. Quick blow fuses respond to existing spikes instantly.To withstand elevated temperatures, some versions of this fuse are encased in ceramic. Sand or oil is packed with fuses for high voltage applications. This is to stop arcing after it has blown between the two ends of the fuse. For direct PCB mounting, SMD variants of cartridge fuses also exist. Automotive, Blade Type & Bolted Type FusesThese fuses are designed especially for automotive systems running up to 32V and 42V at times. They come in the form of a 'sword' (a transparent plastic envelope with flat contacts) and are color-coded according to the nominal current. In other high-power circuits, some of these types are also used. Resettable Fuses/PolyfuseThese fuses are self-resetting, much as their name suggests. They contain black particles of carbon embedded inside organic polymers. The carbon black usually renders the mixture conductive. Heat, which expands the organic polymer, is created when a large current flows. The black particles of carbon are pulled apart, and conductivity decreases to the point that there is no flow of current. As temperatures decrease, conductivity is restored. The fuse does not, however, have to be replaced physically. This type of fuse is often referred to as a PTC, which means a positive temperature coefficient since the temperature rises with resistance.For computer power supplies and phone chargers, the PTC Fuse is ubiquitous. They are particularly handy here because it is difficult to replace them. They are used in aerospace devices for the same purpose.In their through-hole variants, PTCs are easily recognized by their yellow-orange colour and disc (and sometimes rectangular) form. With white markings, SMD poly fuses normally come in green or with gold markings in black. Virtually every current rating offers PTCs. Semiconductor FusesWith current flow, the power dissipated by a semiconductor increases exponentially, and semiconductors are thus used for ultrafast fuses. These fuses are commonly used to secure devices that are susceptible to even minor current spikes from semiconductor switching. Overvoltage Suppression FusesVoltage spikes may also often be dangerous to circuits, and with a fuse, an overvoltage safety system is also used to protect against both voltage and current spikes.There are NTCs (negative coefficient of temperature) put in parallel with the supply. NTC Fuses minimize resistance due to higher current flow and absorb spikes when the supply voltage spikes.Semiconductor-like devices that bidirectionally absorb voltage spikes are metal oxide varistors (MOVs). Using the linked post, you can learn more about MOV and its work.2.2 AC Fuses BasicHigh Voltage FusesIn high voltage AC transmission lines, these fuses are used where voltages can exceed several hundred kilovolts.1) HRC (High Rupture Current) FusesHRC fuses are fuses of a cartridge type consisting of a transparent steatite envelope (magnesium silicate). The fuse is packed with quartz powder that serves as an arc extinguishing agent (and, in the case of a liquid-filled HRC fuse, a non-conducting liquid like mineral oil).2) Expulsion FusesThese fuses are packed with chemicals such as boric acid, which creates heating gases. The arc is extinguished by these gases and ejected from the ends of the fuse. Copper, tin, or silver are made of fuse material. Low Voltage FusesThe low voltage fuses are divided into five types and those are rewirable, cartridge, drop out, striker, and switch fuses.1) Rewireable FusesThey are a quick fuse used in homes and offices that is reusable. A carrier and a socket are composed of them. The carrier is taken out, rewired and placed back in the socket when the fuse is blown, to restore normal service. They are slightly less effective than fuses from HRC.2) Cartridge FusesThey are very similar to DC fuses for cartridges. A transparent envelope covering the part of the fuse consists of them. It is possible to plug them in (blade type) or screw them into a fixture (bolt type).3) Drop Out FusesThey contain a spring-loaded lever arm that retracts when a fault occurs and must be rewired to restore normal service and put back in place. They are a form of fuse for expulsion.4) Striker Fuses A spring-loaded striker is provided with these fuses that can serve as a visual indication that the fuse has exploded and other switchgear is also triggered.5) Switch FusesHigh current fuses can be attached or disconnected by a handle that is manually controlled.Ⅲ ConclusionIn the field of electronics or electrical, the fuse is a small safety part in an electrical device or piece of machinery. It is considered the most crucial device which is employed in various electrical circuits. Many types of fuses with stock availability in the business can meet various circuit requirements. Ⅳ Frequently Asked Questions about Fuse Types Basics and Its Applications1. What are fuses?Fuses are sacrificial devices used to protect much more expensive electrical components from the damaging effects of overcurrent. They consist of a low-resistance metal or wire that is used to close a circuit. 2. What are the types of fuses?Different Types of Fuses – Constriction, Working & CharacteristicsDC FusesAC FusesCartridge FusesD – Type Cartridge FuseHRC (High Rupturing Capacity) Fuse or Link Type Cartridge FuseHigh Voltage FusesAutomotive, Blade Type & Bolted Type FusesSMD Fuses (Surface Mount Fuse), Chip, Radial, and Lead Fuses 3. Where are fuses used?Fuses are widely used for protection of electric motor circuits; for small overloads, the motor protection circuit will open the controlling contactor automatically, and the fuse will only operate for short circuits or extreme overload. 4. How many types of fuses are there?Fuses can be divided into two major categories, AC fuses, and DC fuses.5. What is the difference between Fuse and MCB (miniature circuit breaker)?Fuse is an electrical device that self-destructs and stops the current flow in a circuit whenever the current exceeds the predefined value. MCBs are resettable circuit protection devices that, on the occurrence of faults, stops the current flow in a circuit. 6. How do I know what fuse to use?You'll usually find the fuse rating on the side of your fuse, which will be given in amps. The fuse rating is the amount of current needed for the fuse to blow or break. When this happens, it stops the electrical power from flowing through the electrical circuit. 7. What are the different types of fuses?The fuse is the current interrupting device that breaks or opens the circuit by fusing the element and thus removes the faulty device from the main supply circuit. The fuses are mainly classified into two types, depends on the input supply voltages they are the AC fuses and the DC fuses. 8. What is the difference between AC and DC fuses?With AC circuits, the current is crossing the zero potential at 60 or 50 cycles a second. This helps in breaking the arc that forms when the fuse element melts and creates a gap. In dc circuits, the voltage does not go to a zero potential, making it more difficult to suppress the arc in the melting element's gap. 9. What is the difference between T and TL fuses?The difference between SL and TL fuses is their bases. An SL is a rejection base, while a TL is your typical edison base. The difference between S and T fuses is the same. SL and TL fuses are Loaded Link and are normally used in special, lighter applications, while S and T are used in heavier applications. 10. How do fuses protect us?The fuse breaks the circuit if a fault in an appliance causes too much current to flow. This protects the wiring and the appliance if something goes wrong. The fuse contains a piece of wire that melts easily. If the current going through the fuse is too great, the wire heats up until it melts and breaks the circuit. 
kynix On 2021-01-19   7782
Resistors

Battery Selection: Some Factors to Consider

Ⅰ IntroductionThe energy storage units of several devices we come across every day are batteries; they are available in various shapes, sizes, parameters, and shapes. They can usually be found in vehicles, emergency power sources, mobile devices, tablets, iPads, and many other portable electronic devices. But not all devices will use the same type of battery; each device has its own specifications and power supply requirements, and to choose the right battery for your application, you will need a battery selection guide. So, the considerations to consider when choosing a battery for your next electronic product design will be investigated in this post. If you are completely new to batteries, then it is recommended that you read this article on battery types and their applications before continuing further to understand the fundamentals of batteries selection.CatalogⅠ IntroductionⅡ Some Factors to ConsiderⅢ Rechargeable / Non-Rechargeable BatteriesⅣ Availability of SpaceⅤ System Operating VoltageⅥ Operating TemperatureⅦ Capacity-Power & EnergyⅧ ChemistryⅨ CostⅩ Shelf LifeⅪ How to Choose a BatteryⅫ FAQⅡ Some Factors to ConsiderYou must be aware of the important parameters involved in its activity when selecting a battery for your application. The truth of the battery is that, because no battery is ideal, there is no common form of battery for all applications. You should be able to manage the exhaustion of other parameters when you choose to use one parameter of the battery.  For example, if you want your battery to provide a lot of energy for your application, the internal resistance of the cell should be reduced, which can only be accomplished by increasing the surface area of the electrode. Inactive components such as current collectors and conductive aid are also improved by this because energy density is traded off to gain power. You must give up anything to get the other in a battery in order to get exactly what you want in your application. In the following picture, the important battery parameters are given.Now, to understand its significance and effect on battery efficiency during service, let's briefly look at each battery parameter.Ⅲ Rechargeable / Non-Rechargeable BatteriesIn deciding between a main and secondary battery, there might not be much uncertainty, you only have to decide whether you want the battery to be used once or several times. The primary (non-rechargeable) battery can be used for occasional applications such as toys, flashlights, smoke detectors, etc. They are also used in products such as pacemakers, wristwatches and hearing aids where charging is not feasible. The secondary (rechargeable) batteries can be used in applications where a standard power source such as cell phones, computers, cars, etc. is needed. Compared to primary batteries, secondary batteries often have a higher self-discharge rate because of their ability to recharge, which is an ignorant fact.Ⅳ Availability of SpaceThe batteries, including button cells, cylindrical cells, pouch cells and prismatic cells, are available in different shapes and sizes. In order to make your computer comfortably portable, the battery size really matters. AA, AAA and 9V batteries suitable for portable devices are the standard sizes available. In applications where there is less room but more power needed, lithium batteries (pouch type) are widely preferred. If the power demand is lower since they are very lightweight and the smallest of battery types, coin cells may also be considered.Ⅴ System Operating VoltageOne of the most significant characteristics of the battery, which is calculated based on the electrode & electrolyte used, is the battery voltage (Chemical Reaction). There is a common misconception that in any device, it is not the case that a fully discharged battery would have 0V. In fact, if the battery reads 0V, it's probably dead. A battery's output voltage should always be read from its nominal voltage level. Water is used as an electrolyte by the zinc-carbon battery and nickel-metal hydride battery and provides a nominal voltage of 1.2V to 2V, while the lithium-based batteries use organic electrolytes that can provide a nominal voltage of 3.2 to 4V. Most of the equipment's electronic parts run in the 3V voltage range. A single cell battery would be enough to power the equipment if you use a lithium-based battery. Note that the battery voltage will not be constant and will differ between the minimum value and the maximum value, depending on the battery power available. This is the minimum and maximum value shown below for each battery. Your nominal voltage would only be 3.2V to 4V if your circuit is running at 5V and you are charging it with a lithium battery. Boost converter circuits are used in these cases to convert the battery voltage required for the circuit to 5V. If your operating voltage is very high, like 24V or 12V, you can either use a 12V lead-acid battery or combine more than one lithium cell in series to increase the resulting output voltage if you need high power density.Ⅵ Operating TemperatureFor example, the battery operating with aqueous electrolytes can not be used in temperature conditions below 0 ° C as the aqueous electrolyte could be frozen below 0 ° C, in the same way,  the lithium-based batteries could work up to -40 ° C, but the efficiency could be reduced. The battery performance can be drastically modified by the temperature. The optimum charging rate for the lithium-ion batteries is between the temperature ranges of 20 ° C to 45 ° C. If you want to use a lower current/voltage outside this temperature range, this will result in a longer charge time. Lithium dendrite plating can be produced in the electrolyte if the temperature drops below 5 ° C or 10 ° C, which must be avoided by trickle charging.Ⅶ Capacity-Power & EnergyThe battery's strength determines the battery's runtime. Battery power/capacity is expressed in watt-hours (Wh). By multiplying the battery voltage (V) by the amount of current a battery can produce over a given amount of time, the watt-hour is determined. The battery voltage is almost set and the current that can be supplied by a battery is written on the battery, expressed in the Ampere-hour rating (Ah or mAh). Consider a 5V battery with a capacity of 2 amp-hours (Ah), so it has a power of 10Wh. The 2Ah battery will produce 2 Amps for 1 hour or 0.2A for 10 hours or 0.02A (20mA) for 100 hours. At a given discharge rate, temperature, and cut-off voltage, battery manufacturers often specify the power, where the capacity always depends on all three variables. A battery's capacity can tell us how much energy it can supply to an application. For instance, consider a 12V, 10Ah car battery, the battery's actual capacity is 120Wh (12V x 10Ah), but it will have a capacity of 36Wh in a 3.6V laptop battery that has the same 10Ah dissipation (3.6Vx 10Ah). You can see from the example that the amount of power a car battery can hold is three times higher than a laptop battery, even though they have the same Ah.High-power batteries always have quick discharge capabilities at high drain speeds, such as power tools or applications for vehicle starter batteries, with poor energy capacity for most high-power batteries.Ⅷ ChemistryYou would have learned by this time that all the characteristics of a battery are often dependent on the chemistry involved in the battery, so when selecting the type of battery, you should be more conscious. Batteries are known as Lead Acid Batteries, Alkaline Batteries, Ni-Cad Batteries (Nickel Cadmium), Ni- MH Batteries (Nickel Metal Hydride), Li-Ion (Lithium-Ion) and LiPoly (Lithium Polymer) Batteries based on the chemistry used in the process.Ⅸ CostThe battery will be one of the costly things in the Bill of Materials (BOM) for most portable electronic devices, so it will impact the total cost of your electronic applications most of the time. Therefore, you should know your product specifications and budget and then pick the right battery for your product.Ⅹ Shelf LifeNot all batteries are used directly after development, but they remain on the shelf for a long time before they are used. A battery's shelf life informs you how long it is possible to keep a battery unused. In primary batteries, the shelf life is largely known as a reality only because the secondary batteries can be recharged once they are used. The battery could sit idle there for years, for example, in a fire alarm siren device, until it detects a fire and activates the alarm. The battery maintains its output even if it is left unused for a long time, so care should be taken.Ⅺ How to Choose a BatteryNow that we've looked at the criteria that you should consider before selecting the battery for a portable electronic application, let's look at the common battery selection cases. Bear in mind that these are just tips and not difficult written guidelines.• You can use lead-acid batteries for items that consume more electricity, including projectors, large sound systems, and motorized projects. You can go for 'Sea deep cycle' batteries if you're going to have heavy battery use.• You can go for the lithium coin cells or small lithium polymer cells if your electronics need to be very small, about an inch on either side.• If you are going to manufacture the part, use inexpensive alkaline batteries of common sizes in large quantities. So the client considers it easy to replace them.• If you want the product to be user-serviceable, the battery can be adjusted by the customers themselves for batteries of 9V or AA capacity.• Use 3 Alkaline (4.5V) or 4NiMH (4.8V) cells if the circuit needs an input of approximately 5V.• Use a battery holder from your local shop to build a rechargeable battery pack and stick it with NiMH batteries and then begin recharging your battery.• If you want to replace any of the rechargeable batteries with your alkaline battery, test your system to make sure it will work at a lower voltage without any problems.• Always use a high-quality charger with sensors to ensure proper charging and trickle charging if you want your battery to have a longer life span since using a cheap charger would destroy your cells in the battery pack.How To Buy the Right Battery for Your CarⅫ FAQ1. How do I choose a battery?Factors to be considered while choosing a BatteryRechargeable / Non-Rechargeable batteriesAvailability of SpaceSystem Operating VoltageOperating TemperatureCapacity of the battery - Power & EnergyBattery ChemistryCost of Battery 2. What size battery does my car take?Your car's battery group size can be found in the battery section of the owner's manual. If you no longer have access to your original owner's manual, you may also consult the reference guides provided by battery retailers to determine the appropriate battery group size for your car. 3. How many Ah battery do I need for home?The battery you need will have to be powerful enough to provide the required power for at least 2 hours. As battery voltage is generally taken at 12 Volts, here is how you calculate the battery capacity. So, a battery with capacity equal to or higher than 140 Ah will suffice for your home. 4. How do I choose the right battery?To get the right battery power for your vehicle, you need to consider the cold cranking amps (CCA) and reserve capacity (RC). Cranking amps is the measure of your battery's starting power and should always match the standard requirements of your vehicle. Check the owner's manual for these specifications. 5. What brand of car battery lasts the longest?Best Rated Car Batteries for Long Lasting Performance 2020Optima RedTopExide Edge AGM Sealed BatteryOdyssey PC680ACDelco 94RAGM Professional
kynix On 2021-01-18   3452
Resistors

How Does a Diode Do Transient Voltage Suppression?

IntroductionIn electronics, transient voltage suppressor (TVS) diodes are components that protect sensitive circuitry from being damaged due to high voltage transients. Because tvs diodes are constructed with large cross sectional area junctions for absorbing high transient currents. The primary source of high voltage transients are electrostatic discharge, electrical fast transient, and surge events. This notes will tell you how does a tvs diode work to prevent a circuit malfunction and protect devices.CatalogIntroductionⅠ Transient Voltage Suppressors (TVS)1.1 What Transient Means??1.2 What Causes a Circuit to Be Transient?1.3 What Does a TVS Do?1.4 What Can Be A Transient Voltage Suppressor?Ⅱ Transient Voltage Suppression Diode2.1 TVS Diode Overview2.2 How To Choose A TVS Diode?Ⅲ How Do You Use TVS Diode for Circuit Protection3.1 TVS Diode in Circuits3.2 Major TVS Diode ParametersⅣ ConclusionⅠ Transient Voltage Suppressors (TVS)1.1 What Transient Means?Transients are spikes of short duration in voltage or current that can in several ways damage a circuit. Some transients only occur once, and some of them may be repetitive. These transients vary from a few millivolts to thousands of volts and can last for hundreds of milliseconds to nanoseconds. Due to inductive load switching or defective contacts in switches and connectors, transients may be produced internally. It can be produced externally because of lightning strikes or inductive switching.1.2 What Causes Transient Voltage?Transient voltages are caused by the sudden release of stored energy due to incidents such as lightning strikes, unfiltered electrical equipment, contact bounce, arcing, capacitor bank or generators being switched ON and OFF. Transient voltages differ from swells by being larger in magnitude and shorter in duration. Transient voltages typically last from less than a microsecond to several milliseconds. Transient voltages are generally classified into two different types depending on where they occur on a power system: normal mode or common mode.1.3 What Does a TVS Do?Transient voltage suppressors or TVS are devices of protection used to save the circuits from this unexpected voltage or current spike. Positioning these TVS devices in parallel with the circuit is the primary way to protect a circuit from overvoltage.1.4 What Can Be A Transient Voltage Suppressor?Metal oxide varistor, TVS diode, Zener diode or bypass capacitor are several types of TVS devices that can be used for transient voltage suppression diodes.Transient Voltage Suppressors can be divided into two types, clamping and crowbar. Clamping devices restrict the voltage to a level which is fixed. They consume the excess energy of the overvoltage event in doing so. An instance of clamping devices is TVS diodes.On the other hand, once activated, Crowbar devices effectively shorten the protected line, redirecting the excess energy away from the protected circuit. As you can see in the graph below, when a trigger voltage (spike) is detected, the crowbar device shorts the circuits such that the line voltage is decreased, then the line voltage rises again to a stable state for regular circuit operation after some time as the crowbar device delays the circuit.Transient Voltage Suppression Diode SymbolⅡ Transient Voltage Suppression Diode2.1 TVS Diode OverviewThe transient voltage suppression diode ((ESD protection diode)) is a solid-state PN-Junction diode explicitly designed to remove the sudden or momentary effects of overvoltage on sensitive semiconductors and circuits. TVS diode is a clamping system, so it absorbs the excess energy of the overvoltage event if the induced voltage reaches the avalanche breakdown voltage, and then automatically resets after overvoltage situation. Although it is true that standard diodes and Zener diodes can also be used for overvoltage/transient safety, since standard and Zener diodes are designed for rectification and voltage control, they are not as robust as transient voltage suppressor diodes.How Does Transient Voltage Suppressor Diode Work?2.2 How To Choose A TVS Diode?When selecting a suitable transient suppressor, it is necessary what types tvs diode have? Like every other avalanche diode, a unidirectional transient voltage suppressor diode acts in the forward direction as a rectifier in a circuit, and this unidirectional diode is made to withstand very high peak currents. The unidirectional TVS diode symbol is seen in the picture below, and it's almost like a Zener diode.On the other hand, two mutually opposing avalanche diodes connected in series with each other can represent a bidirectional transient-voltage-suppression diode. In parallel with the system or circuit to be secured, these diodes are connected. These diodes are produced as a single element, unlike the symbol. The Bidirectional TVS Diode symbol is shown in the picture below.Introduction to Transient Voltage Suppressors (TVS) CharacteristicBefore take a tvs diode in circuit, it is critical to specify the peak impulse capability for a given transient waveform. In most diodes, the peak pulse capability will be rated either 8/20µs or 10/1000µs impulse waveform. It is possible to classify Transient Voltage Suppressor Diodes into two groups. One of them is unidirectional, and the other is bidirectional.Ⅲ How Do You Use TVS Diode for Circuit Protection3.1 TVS Diode in CircuitsIn parallel with the system or circuit to be secured, TVS diodes are attached. The TVS system is specifically designed to break down at a particular voltage level and, without sustaining damage, conduct large quantities of current.The TVS diode appears as an open circuit under normal voltage conditions, but a low leakage current is present. The TVS diode junction avalanches when the usual voltage reaches a certain amount and overvoltage is redirected from the safe circuit as a result and shunted through the TVS diode. When the overvoltage goes down, the system automatically resets.In addition, the VI characteristic curve of the tvs diode is similar to that of a Zener diode, TVS diodes are specifically designed, characterized, and tested for transient voltage suppression. By contrast, zener diodes are designed and specified for voltage regulation.3.2 Major TVS Diode ParametersMany types of TVS diodes, equipped for a particular application, are on the market. When selecting a TVS diode to protect an external interface, there are a couple of key parameters you want to pay special attention to. Here is the following parameters in the datasheet to help you find a right TVS diode.Reverse Stand-Off Voltage (VR)The highest voltage that can be applied to the protector without the system actually being triggered is the reverse stand-off voltage. The VR of the system should be equal to, or greater than, the peak operating voltage of the safe circuit. This is to ensure that the regular circuit operation or signal voltage is not clipped by the safety system.Breakdown voltage (VBR)The voltage at which the diode can begin to protect and conduct current is the breakdown voltage. The VBR is usually defined at 1mA.Clamping Voltage (VC)The clamping voltage is the maximum voltage that will be exposed to the safe circuit during the event of the test waveform. The clamping voltage for a 1A or 2A waveform that has an 8μS rise time is given on most datasheets.Peak Pulse Current (IPP)The highest current which the safety system can withstand is the peak pulse current.Ⅳ ConclusionThe TVS diode is commonly used in low-energy circuits and systems for diversion/clamping, and in circuits for ESD safety. Because one advantage of using external TVS diodes is that they typically provide level four IEC ESD protection. Under normal operating conditions, the TVS diode presents a high impedance to the protected circuit. Ideally, the device appears as an open circuit, although a small amout of leakage current is present. TVS diode applications can be found in data and signal lines, memory for microprocessors and MOS, power lines for AC/DC, and telecommunication equipment. Frequently Asked Questions about TVS Diodes1. What is Transient-voltage-suppression diode?A transient-voltage-suppression (TVS) diode, also transil or thyrector, is an electronic component used to protect electronics from voltage spikes. In other words, transient voltage suppressor diodes are very popular devices used to instantaneously clamp transient voltages (e.g., ESD events) to safe levels. 2. How does a transient voltage suppressor diode work?Transient Voltage Suppressor Diode is a clamping device, so whenever the induced voltage exceeds the avalanche breakdown voltage, it absorbs the excess energy of the overvoltage event, and then it automatically resets after overvoltage condition. 3. What does a transient voltage suppressor do?Transient Voltage Suppressors (TVS) are devices used to protect vulnerable circuits from electrical overstress such as that caused by electrostatic discharge, inductive load switching and induced lightning. 4. What does a suppression diode do?A transient-voltage-suppression (TVS) diode, also transil or thyrector, is an electronic component used to protect electronics from voltage spikes induced on connected wires.
kynix On 2021-01-18   5295
Resistors

The Definition and Working of Voltage Regulator

Ⅰ IntroductionMost Integrated ICs need a constant voltage that they can work with. They have their own operating voltage, whether it's a basic Logic Gate or a sophisticated microprocessor. 3.3V, 5V and 12V are the most common operational voltages. Although we have batteries and DC adaptors that can serve as a source of voltage, because the voltage from them is not controlled, they can not be directly linked to our circuit design most of the time.Say, we have a 9V battery, for instance, but we need to activate a 5V relay, which obviously works on 5V. What are we doing here?CatalogⅠ IntroductionⅡ Definition and Using of Voltage Regulator Ⅲ A Closer Look at Voltage RegulatorsⅣ Three Terminal RegulatorsⅤ Voltage Regulators: Increase the Output CurrentⅥ Adjustable RegulatorsⅦ Limitations of Voltage RegulatorⅧ FAQⅡ Definition and Using of Voltage Regulator You recall your school days when we were told that voltage drops from resistors. Wouldn't it be an easy fix to only use resistors according to Ohms Law to lower the voltage? But then, depending on the current flowing through them, resistors decrease voltage. The moment your part begins to draw less current, it shoots up and destroys the voltage.You need something better; the voltage, at least not much, does not depend on the load current. The voltage divider is the next easiest repair that comes to your head. This involves two resistors, but hey, they can also operate if they can be crammed in. Another nagging problem-the moment your part begins to draw so much current, the divider sags output-the top resistor can not keep up with the current demand. Now you're really starting to wish you had heard about this in school. By reducing the resistor values, you might resolve this, but that would make the two resistors draw too much current, likely to destroy your current budget and get too hot with the immediate risk of failure. What could be done else? Amplifying! You had, of course, to slog through hours of lectures on that. As a voltage follower, why not add an NPN transistor? The bias of the voltage divider could be connected to the foundation, the rail input of 12V to the collector and the output to the emitter part, and bingo, you solved the problem. The repair works, of course, but it leaves you with a nagging feeling-you've used three pieces, and you find out on checking that bugs are perfectly repeated on the performance in the 12V supply rail. This is an amplifier, of course, and it doesn't have the intellect to compensate for itself. You can replace the voltage divider's bottom resistor with a Zener diode, but the current needed to correctly bias a Zener (against things such as temperature coefficients and drift) is almost as much as your part consumes, which is pointless. Isn't there an easier way for this to happen? Isn't there a magic black box containing anything needed to effectively drop the voltage? Similar cycles of stress (including me) have influenced millions of EEEs around the world. Of course, not all issues are correlated with falling voltages, but EEE labs are popular in similar situations everywhere! But you're in luck—there is the exact part you need. In fact, the humble voltage regulator is one of the earliest commercial implementations of the IC technology (apart from op-amps).If you ever look at a voltage regulator's datasheet, you'll be amazed at the circuitry with which they have been packed to drop a voltage and keep it clean-a nice stable voltage regulator, feedback and compensation amplifiers, and a half-good power level. Of course, if we were able to cram so much technology into our own phones, why not make a nice TO-92 kit with some voltage control? Some of them consume no more than a few nanoamps, which is a thousandth of a millionth of an amp! They keep getting stronger every day. Even better, some come with protection against short circuits and overtemperature, rendering them foolproof.Ⅲ A Closer Look at Voltage RegulatorsThe primary role of a voltage regulator, as we have seen in the section above, is to drop a larger voltage to a smaller one and keep it steady, as the regulated voltage is used to power (sensitive) electronics. As mentioned above, a voltage regulator is essentially a beefed-up emitter follower-a transistor linked to a stable reference that spits out a constant voltage, dropping the remainder. They also have an error amplifier built-in, which samples the output voltage (through a divider again), compares it to the reference voltage, calculates the difference, and drives the output transistor accordingly. This is far from a voltage divider, which replicates the input signal faithfully, but at a smaller magnitude. You don't want to see your DC voltage rail overlaid with an AC ripple.A transistor with a high gain is ideal, because power transistors are a massive pain to drive, with pathetic gains in the two-digit range. By using Darlington transistors and, more recently, MOSFETs, this has been solved. As these types require less power to drive, there is a decrease in overall current consumption. This is balanced by the fact that very little current is often absorbed by the voltage reference used internally. The current absorbed by the regulator to drive all this internal circuitry is called the quiescent current when the output is not loaded. The lower the current of silence, the stronger. There are three transistors on the power output level, two of them in a Darlington configuration and the other as a current limiting unit, the way these regulators are designed. The successive CE junctions add up to a voltage drop across the regulator of about 2V. This voltage is known as the voltage dropout, the voltage at which the regulator ceases controlling.With a voltage drop of about 0.4V, you can find devices called LDOs or low dropout regulators, because they use a MOSFET switch.Ⅳ Three Terminal RegulatorsEnough speaking, now for the actual numbers of the pieces. The 78XX series is the most common series of voltage regulators. For example, the 7805 is a 5V regulator and the 7812 is a 12V regulator. The two digits after the 78 reflect the output voltage of the regulator. A wide range from 3.3V to 24V covers the output voltages available with fixed regulators with pleasant values such as 5V, 6V, 9V, 15V and 18V available. For most purposes, this series of regulators are outstanding, they can handle up to almost 30V at the input and up to 1A output current depending on the kit. Attach the input pin to the input voltage and the output pin to the unit that requires the lower voltage and, of course, the ground pin to ground. They are exceptionally easy to use. Since the feedback amplifiers 'reject' input ripple and noise, ensuring that they do not move on to the output, decoupling capacitors are optional here. However, if more than a few tens of milliamps are drawn by your unit, at least 4.7uF on the input and output is recommended, preferably in ceramic. Using these regulators, an odd thing people do is make rudimentary phone chargers. Only add a 9V battery to the input and a suitable USB connector to the output, and you've got an emergency phone charger for yourself. Thanks to the built-in thermal safety on the chip, this design is very robust. A positive thing about these kinds of voltage regulators is that the pinouts are almost interchangeable, so it is possible to plug-in replacements. Most of the 'transistor' packages on PCBs nowadays are voltage regulators that can be picked up because they are so easy to use for other projects.Ⅴ Voltage Regulators: Increase the Output CurrentThe performance current, which is heavily restricted by the package and the way the package is installed, is one limitation that easily overcomes the utility.These regulators have high-current versions, but they are difficult to identify.DC-DC switching converters are the only machines capable of spitting out high currents, but the performance noise figures are awful.It is possible to build your own high current linear regulator, but inevitably you will run into all the above-mentioned issues.Luckily, with a few extra bits, there is a way to 'hijack' a normal regulator and increase the product currently.Most of these modifications include inserting a bypass transistor across the regulator and, as shown in the figure below, driving the base with the input. Ⅵ Adjustable RegulatorsIt's very pleasant and simple to use three-terminal regulators, but what if you want a non-standard output voltage like 10.5V or 13V?Of course, fixed regulators can be hijacked more or less, but the necessary circuitry is very complex and beats the primary objective of simplicity.Devices exist that can do the job for us, with the LM317 being the most common.The LM317 is just like every other linear regulator with an input and an output pin, except there's a pin named 'adjust' instead of a ground pin. This pin is intended to receive input through the output from a voltage divider such that the pin is always at 1.25V, we can obtain various voltages by changing the resistance values. The datasheet also states,' removes several fixed voltages being held,' but this only applies, of course, if you can afford to have those two resistors on board. A good thing about adjustable regulators like this is that they can also act as continuous current supplies with a minor configuration change.The regulator aims to maintain a constant 1.25V throughout the output resistor and thus a constant current on the output by attaching a resistor to the output pin and the adjustment pin to the other end of the resistor as shown in the figure. For the diode laser group, this simple circuit is very common.This can also be achieved by fixed regulators, but the dropout voltages are unreasonably high (in fact, the rated output voltage). However, they can work in a pinch if you're desperate. Ⅶ Limitations of Voltage RegulatorThe greatest benefit of linear regulators is their simplicity; it is not important to say anything else. However, they come with their own set of limitations, like all good chips. Linear regulators work with feedback like a variable resistor, falling any unneeded voltage. The same current as the load is drawn when drawing. This wasted energy is converted to heat, rendering these regulators at high currents warm and inefficient. A 5V regulator with a 12V input that runs at 1A, for example, has a power loss of (12V-5V)*1A, which is 7W! That's a lot of wasted energy and that's just 58 percent production! So, regulators have pathetic energy efficiency at high input-output voltage differentials or high currents. Using more than one regulator in a series of decreasing output voltages (up to the desired voltage value), the input-output differential voltage problem can be solved so that the voltage is lowered in steps. Although the total dissipation of power is the same as having one regulator, the heat load is distributed through all devices, reducing the overall operating temperature. By using a switching supply, the power and efficiency constraints can be resolved, but the option is application-dependent, there are no straight cut rules as to when to use which type of power supply. Ⅷ FAQ1. What is Dropout Voltage or headroom in Voltage regulators?A linear regulator such as the famed 7805 outputs 5.0 volts. The dropout specification is going to be about 2 Volts typical, 2.5 maximum. That means it will regulate 5 V as long as the input unregulated voltage is above 2 to 2.5 V above the regulated output voltage of 5 V. That gives it a 2 volt (7 minus 5) headroom. The headroom is considered to be the minimum input-output differential it can maintain. if the input falls to 6.5 volts the regulator outpupt can be expected to be about 4.5 volts. It means, counting diode drops, and ripple amplitude, you must keep above the dropout voltage or you will see the ripple in your output. 2. How does a voltage regulator work?It works on the principle of detection of errors. The output voltage of an AC generator obtained through a potential transformer and then it is rectified, filtered and compared with a reference. The difference between the actual voltage and the reference voltage is known as the error voltage. This error voltage is amplified by an amplifier and then supplied to the main exciter or pilot exciter. Thus, the amplified error signals control the excitation of the main or pilot exciter through a buck or a boost action (i.e. controls the fluctuation of the voltage). Exciter output control leads to the controls of the main alternator terminal voltage. 3. Can a voltage regulator convert AC to DC?Depends on the topology and the circuit components that are used.A circuit that converts AC to DC is called a rectifier. Additional circuits like buck-boost converters can be used to regulate the DC.In a generic sense, most voltage regulators are marketed for AC systems. They are back-to-back converters which rectify AC to DC and then invert DC to AC after suitable modification to the wave shape. It is possible to take the intermediate DC output after the rectification stage and suitably modify it with further circuitry. 4. What are the 2 types of voltage regulators?Two types of regulators are used: step regulators, in which switches regulate the current supply, and induction regulators, in which an induction motor supplies a secondary, continually adjusted voltage to even out current variations in the feeder line. 5. How do you use a voltage regulator?The first 0.33uF capacitor shorts any AC noise on the line to the ground and cleans the signal up for the input of our regulator. The regulator in this circuit is a TS7805CZ (5V 1A) regulator, which then steps the 12V voltage signal down to 5V, and pushes this on the output. 6. What is the difference between voltage stabilizer and voltage regulator?Basically, no major differences. A stabilizer has only a limited input voltage range and is mostly used for low power devices and the regulator has a higher range of input voltages, for medium and high power devices. Both ensure a regulated, constant output voltage. Stabilizers are a type of voltage regulator. 7. Where are voltage regulators used?Electronic voltage regulators are found in devices such as computer power supplies where they stabilize the DC voltages used by the processor and other elements. In automobile alternators and central power station generator plants, voltage regulators control the output of the plant. 8. What causes voltage regulator failure?There are different reasons why the regulator rectifier fails. ... Ground connections are important for good voltage, and if there is faulty voltage, the regulator rectifier can run hot. Bad grounding, corroded battery connection and poor or loose battery connections will cause faulty voltage. 9. What is the purpose of an automatic voltage regulator?An automatic voltage regulator (AVR) is an electronic device that maintains a constant voltage level to electrical equipment on the same load. The AVR regulates voltage variations to deliver a constant, reliable power supply. 10. How long does a voltage regulator last?For the most part, the instrument voltage regulator is supposed to last for the life of the car. Like with any other electrical component of a car, eventually, this voltage regulator will begin to show signs of damage. 
kynix On 2021-01-18   4043
Resistors

Two Major Types of IC Packages Analyses

IntroductionIC packaging refers to the material that contains a semiconductor device. The package is a case that surrounds the circuit material to protect it from corrosion or physical damage and allow mounting of the electrical contacts connecting it to the printed circuit board (PCB). Let's take a look at some of the different types of packaging options you can use to enhance your product & customer experience.CatalogIntroductionⅠ How Do You Find the Right IC Packages?Ⅱ What are IC Made Up of?Ⅲ How Many Types of IC Packages Are There?3.1Through-hole Technology (THT)3.2 Surface-mount Technology (SMT)3.3 Through-Hole vs Surface MountⅣ IC Packages Selection SummaryⅠ How Do You Find the Right IC Packages?There was a lot of change in the way electronics components appeared or packaged, from bulky vacuum tubes to lightweight SMD ICs. Because IC packaging indicates the dimension and shape of a chip, to minimize the number of components on board, manufacturers are actively working to reduce the size of ICs, and multiple components are also being increasingly incorporated into LSI, VLSI, and ULSI designs. Almost all components are currently available in two or three different package forms, from which the engineer can pick the one that best fits device application. We will learn about the various IC package forms in this article and where they can be useful.Types of IC | IC Package Types ExplainedⅡ What are IC Made Up of?Before introducing the various forms of IC packages, we can learn about the process of IC manufacturing firstly. ICs consist of monolithic, hybrid, or film circuits, as a matter of fact. The development steps for the IC are as follows:LithographyIt is a technique for defining a pattern in which a photoresist material is added to the wafer surface evenly and then baked to harden. Later, light is projected and selectively extracted via a reticulum containing mask details.EtchingThe undesired materials are separated from the wafer surface.DepositionMaterials are added to the wafer through the process of Physical Vapor deposition and chemical vapor deposition.Chemical Mechanical PolishingA planarization technique by the application to the wafer surface of a chemical slurry with etchant agents.OxidationOxygen (dry oxidation) or HO (wet oxidation) molecules convert silicon layers to silicon dioxide on top of the wafer in the oxidation process.Ion implantationThe most commonly used method for the semiconductor incorporation of dopant impurities. The ionized particles are accelerated and targeted at the semiconductor wafer via an electrical field.DiffusionFor annealing bombardment-induced lattice defects, a diffusion phase following ion implantation is used.IC Design & Manufacturing Process OverviewⅢ How Many Types of IC Packages Are There?A very huge variety of integrated circuits have different packaging requirements. Based on how they are placed on a circuit board, the packages are divided into two types.3.1Through-hole Technology (THT)Through-hole MountingThey are designed to trap the lead pins on one side of the board and smolder on the other side. Compared to other forms, they are larger in scale. These are mainly used in electronic equipment to compensate for the limitations of board space and expense. One example of through-hole mount packages is dual inline packages.DIP and ZIPThrough-hole mount packages come in ceramic and plastic forms to add up to the classification.The most widely used IC packages are Dual Inline Packages (DIP). As in 28-pin ATmega328, the pins are positioned parallel to each other, extending perpendicularly and laid out on a rectangular black plastic housing. The pins are 0.1 inches apart. Additionally, because of the variation in the number of pins in various packages, the box differs in size. They range in number from 4 to 64. These pins are positioned in a way that they can be changed without short-circuiting each other or even smoldering into PCBs at the center of a breadboard.The few common types are Plastic Dual In-Line Package (PDIP) and Molded Dual In-Line Package (MDIP). There are several types of DIP packages. It can further be categorized as:Norm - The most prevalent packaging is this. The pins are spaced apart by 0.1". Skinny - The space between the terminal rows in this box is 7.62mm.Shrink - Identical to the regular ones, but 1.778 mm is the lead pitch. Smaller in size, they use packaging with high pin density.Zig-Zag in Line Packages (ZIP)- Pins are inserted perpendicular to the circuit board in this kind of package. In the box, these pins are aligned perpendicularly and are closer to each other. This style of packaging was short-lived and was primarily used in RAM chips that were dynamic. CER-DIP comprises other types of through-holed packages in which the lead pitch is 2.54 mm and the body is molded with ceramics. Also, glass is the sealing medium used here. The lead pitch of the Pin Grid Array (PGA) is 2.54 mm and the body is made of ceramic. The pins from the body are arranged vertically and can be positioned on a grid. Typically, this one fits a multi-pin kit.3.2 Surface-mount Technology (SMT)Surface Mount DefinitionThe technology of installing or positioning the components directly onto the printed circuit board surface is accompanied by surface mount packaging. While this manufacturing process helps to rapidly do stuff, it also raises the likelihood of defects. This is due to component miniaturization and also because they are placed very close to each other. This, in fact, results in the detection of the deficiency in the entire process becoming extremely significant. Again, ceramic or plastic molding is often used in Surface Mount packaging.Types of SMTThe following are the various types of surface mount packages that use plastic molds:(1) Small Outline L-leaded PackageThis type has leads of the gull-wing type that draw in a L fashion from the body in either direction and can be placed directly on the frame. QFP (Quad Flat L-leaded Packages)-These are SOP-like. The only difference, however, is that the leads are drawn out in 4 directions instead of 2 and are directly placed on the frame. They even come with a heat sink and a heat spreader built in.(2) Ball Grid Array (BGA)A ball grid array (BGA) is a type of surface-mount packaging (a chip carrier) used for integrated circuits. BGA packages are used to permanently mount devices such as microprocessors. A BGA can provide more interconnection pins than can be put on a dual in-line or flat package. As for BGA soldering, the solder balls on the package have a very carefully controlled amount of solder, and when heated in the soldering process, the solder melts. Surface tension causes the molten solder to hold the package in the correct alignment with the circuit board, while the solder cools and solidifies.3.3 Through-Hole vs Surface MountThe two kinds of packaging have their individual advantages and disadvantages - primarily through-hole mounting and surface mounting. Here's a comparison with different variables between through-hole and surface mount devices that adjust the need for the form of IC packages.1. Size - In contrast with through-hole packages, surface mount packages are smaller.2. Component density - Component density as well as attachment density are comparatively higher for surface mounting packages.3. Assembly- In contrast to through-hole packages that can not afford even the smallest of errors when making holes, minor errors are immediately corrected by the molten solders that bring components close together due to stress in surface mounting packages. This is because, once made, the alignment can not be changed.4. Electromagnetic compatibility - The ability of various electronic devices and components, even in the presence of other devices that produce electromagnetic waves, to operate correctly. Packages for surface mounting have better EMC performance.5. Cost - Because of automated processes, the manufacturing cost is often lower than that of through-hole packages.Surface mount packages do not, however, operate together with a simple plugin on the breadboard. They need a pin-led carrier to be installed. Or worse, they can need special PCBs customized separately for various prototypes.Ⅳ IC Packages Selection SummaryICs are put into protective packages to allow easy handling and assembly onto PCBs and to protect the devices from damage. Therefore, a suitable package type is important for ic applications. First of all, let us emphasize enough how important it is to have good packaging. To allow smooth handling and installation on the printed circuit boards, integrated circuits are placed into packages. To prevent any kind of harm and corrosion, it is extremely imperative to bring ICs into packages. The packages also assist in the dissipation of the heat generated. This is, however, the final part of the entire fabrication process. Consider certain important factors, such as assembly capacity, strength, cost, and connectivity, before deciding on the type of packaging that best suits you.With the ever-present innovations, several kinds of semiconductor integrated circuits packages have appeared. The motive is to choose for yourself the correct type of IC package that is affordable and yet does not compromise with efficiency. Most important thing, chips with the same electronic parameters may have different package types. Frequently Asked Questions about Types of IC Packages1. What is IC package design?IC packaging refers to the material that contains a semiconductor device. The package is a case that surrounds the circuit material to protect it from corrosion or physical damage and allow mounting of the electrical contacts connecting it to the printed circuit board (PCB). 2. What are the different types of IC packages?DIP (Double In-line Package)SOP/SOIC/SO (Small Outline Package)QFP (Quad Flat Package)QFN/LCC (Quad Flat Non-leaded Package)BGA (Ball Grid Array Package)CSP (Chip Scale Package) 3. What is the most common type of digital IC package?DIP (Dual in-line packages)DIP, short for dual in-line package, is the most common through-hole IC package you'll encounter. These little chips have two parallel rows of pins extending perpendicularly out of a rectangular, black, plastic housing. 4. How many types of IC are there?TwoThere are two main types of integrated circuits: digital ICs or analog ICs. 5. What are the types of packaging materials?Different Types of Packaging Materials1) Plastic. The most common packaging methods in industries is plastic.2) Aluminum. Aluminum is widely used for products such as sodas, beer, canned goods and animal foods.3) Cardboard. Most products that are packaged in cardboard boxes are first wrapped in another type of packaging such as bubble wrap or foam.4) Glass5) Foam
kynix On 2021-01-18   5623

Kynix

Kynix was founded in 2008, specializing in the electronic components distribution business. We adhere to honesty and ethics as our business philosophy and have gradually established an excellent reputation and credibility in our international business. With the accurate quotation, excellent credit, reasonable price, reliable quality, fast delivery, and authentic service, we have won the praise of the majority of customers.

Follow us

Join our mailing list!

Be the first to know about new products, special offers, and more.

Kynix

  • How to purchase

  • Order
  • Search & Inquiry
  • Shipping & Tracking
  • Payment Methods
  • Contact Us

  • Tel: 00852-6915 1330
  • Email: info@kynix.com
  • Follow Us

authentication

Kynix

© 2008-2026 kynix.com all rights reserved.