The Kynix Blog - General electronic semiconductor
Stay Ahead with Expert Electronics Insights,
Industry Trends, and Innovative Tips
- Electronic Components
- News Room
- General electronic semiconductor
- Components Guide
- Sort by
- Robots
- Transmitters
- Capacitors
- IC Chips
- PCBs
- Connectors
- Amplifiers
- Memory
- LED
- Diodes
- Transistors
- Battery
- Oscillators
- Resistors
- Transceiver
- RFID
- FPGA
- Mosfets
- Sensor
- Motors, Solenoids, Driver Boards/Modules
- Relays
- Optoelectronics
- Power
- Transformer
- Fuse
- Thyristor
- potentiometer
- Development Boards
- RF/IF
- Semiconductor Information
- Sensors
- PCB
- transistor
Introduction In the computer field, a buffer refers to a buffer register, which is divided into two types: input buffer and output buffer. The function of the former is to temporarily store the data sent by the peripheral so that the processor can take it away; the latter is to temporarily store the data sent by the processor to the peripheral. With the numerical control buffer, the high-speed CPU and the slow-speed peripherals can coordinate and buffer to realize the synchronization of data transmission. Since the buffer is connected to the data bus, it must have a three-state output function. Catalog Introduction Ⅰ Three-State Buffer Meaning Ⅱ Buffers in the Java Language 2.1 Buffer 2.2 Data Transmission 2.3 Mark and Reset 2.4 Invariants 2.5 Clear Reverse Rewind 2.6 Read-Only Buffer 2.7 Thread Safety 2.8 Call Chain Ⅲ EDA Code Ⅳ Verilog HDL Model and Simulation of Tri-state Buffer 4.1 Tri-state Buffer IC 4.2 Application Example of 74LS541 as Input Port 4.3 Multiplexer (MUX) Ⅴ FAQ Ⅰ Three-State Buffer Meaning Three-state buffer (tri-state buffer), also known as three-state driver, its three-state output is controlled by the enable output terminal. When the enable output is valid, the device realizes normal logic state output (logic 0, logic 1); when the enable input is invalid, the output is in a high-impedance state, which is equivalent to disconnecting from the connected circuit. Figure 1. Tristate Buffers A buffer is one of the digital components, it does not perform any operation on the input value, and its output value is the same as the input value. It plays an important role in the design of the computer. There are two types of buffers. In addition to tri-state buffers, there are also conventional buffers (regular buffers).Conventional buffers always output the value directly, which is used to output current to higher-level circuitry. The tri-state buffer has an optional card input, denoted by E, in addition to the functions of a conventional buffer. E=0 and E=1 have different output values. Figure 2. Tristate Buffer Symbols When E=1, it is gated, and its input is directly sent to the output.If E=0, the buffer is blocked. No matter what value is input, the output is always high impedance. The high-impedance state can drop the current low enough that the buffer-like output is not connected to anything.In the design of the CPU, the DC load capacity of the general output line can drive a TTL load, and in the connection, an address line or data line of the CPU may be connected to multiple memory chips, but the memory chips are all MOS circuits. It is a capacitive load, and the DC load is much smaller than the TTL load. Therefore, in a small system, the CPU can be directly connected to the memory, but a buffer needs to be added in a large system.In order to reduce the number of information transmission lines, the information transmission lines in most computers are in the form of buses, that is, all the same type of information to be transmitted goes through the same group of transmission lines, and the information is transmitted in time-sharing. There are generally three groups of buses in the computer, namely the data bus, the address bus and the control bus. In order to prevent information from interfering with each other, it is required that any register or memory hung on the bus, etc., its transmission end can not only show two information states of 0 and 1, but also should be able to show a third state-high impedance state. That is, it seems that their outputs are disconnected at this time, which has no effect on the bus state, and the bus can be occupied by other devices at this time. The above functions can be realized. In addition to the input and output terminals, it also has a control terminal, please see the figure below. Figure 3. Three-state Output Buffer Register When E=1, the output=input, the bus is driven by the device at this time, and the data on the bus is determined by the input data.When E=0, the output terminal is in a high-impedance state, and the device has no effect on the bus. When the output terminal of the register is connected to the three-state gate, and then the output terminal of the three-state gate is connected with the bus, the stage-rush register of the three-state output is formed. Since the one-way tri-state gate is used here, the data can only be output from the register to the data bus. If you want to achieve bidirectional transmission, you will use a bidirectional tri-state gate. Figure 4. Three-state Gate Ⅱ Buffers in the Java Language 2.1 Buffer Directly known subclasses of java.nio.Buffer: ByteBuffer, CharBuffer, DoubleBuffer, FloatBuffer, IntBuffer, LongBuffer, ShortBuffer public abstract classBufferextendsObject. A container for data of a specific basic type.A buffer is a linear finite sequence of elements of a particular primitive type. In addition to content, the basic properties of a buffer include capacity, limitation, and location.1) The capacity of a buffer is the number of elements it contains. The capacity of the buffer cannot be negative and cannot be changed.2) The limit of the buffer is the index of the first element that should not be read or written. A buffer's limit cannot be negative and cannot be larger than its capacity.3) The position of the buffer is the index of the next element to be read or written. The buffer's position cannot be negative and cannot be larger than its limit. This class has a subclass for each non-boolean primitive type. 2.2 Data Transmission Each subclass of this class defines two get and put operations:A relative operation reads or writes one or more elements, starting at the current position and incrementing the position by the number of elements transferred. If the requested transfer exceeds the limit, a relative get operation will throw a BufferUnderflowException, and a relative put operation will throw a BufferOverflowException. In both cases, no data is transferred.Absolute operations take explicit element indices, which do not affect position. Absolute get and put operations will throw IndexOutOfBoundsException if the index parameter exceeds the limit. Of course, I/O operations through the appropriate channel (usually related to the current position) can also transfer data to and from the buffer. 2.3 Mark and Reset The mark is an index to which the buffer's position is reset when the reset method is called. It is not always necessary to define a marker, but when defining a marker, you cannot define it as a negative number, and you cannot make it larger than the position. If a marker is defined, it will be discarded when the position or limit is adjusted to a value less than the marker. Calling the reset method will cause an InvalidMarkException to be thrown if the mark is not defined. 2.4 Invariants Mark, position, limit, and capacity values obey the following invariants:0<=mark<=position<=limit<=capacity, newly created buffers always have a 0 position and an undefined mark. The initial limit can be 0 or some other value, depending on the buffer type and how it is built. In general, the initial contents of the buffer are undefined. 2.5 Clear Reverse Rewind In addition to methods for accessing position, limitation, capacity values, and methods for marking and resetting, this class defines the following operations that can be performed on buffers.clear() prepares the buffer for a series of new channel reads or relative put operations. It sets the limit to the capacity size and the position to 0.flip() prepares the buffer for a series of new channel write or relative get operations. It sets the limit to the current position, then the position to 0.rewind() prepares the buffer for rereading already contained data. It leaves the limit unchanged, setting the position to 0. 2.6 Read-Only Buffer Every buffer is readable, but not every buffer is writable. The mutate method of each buffer class is designated as an optional operation and will throw a ReadOnlyBufferException when called on a read-only buffer. A read-only buffer does not allow changes to its contents, but its tag, position, and limit values are mutable. Its isReadOnly method can be called to determine whether the buffer is read-only. 2.7 Thread Safety It is not safe for multiple current threads to use the buffer. If it is used by more than one thread, access to that buffer should be controlled through appropriate synchronization. 2.8 Call Chain Specifies that methods in this class return the buffer on which they were called (otherwise they would return no value). This operation allows method calls to be formed into a chain, like a sequence of statementsb.flip(); b.position(23); b.limit(42); can be replaced by the following short statement b.flip().position(23).limit(42); Ⅲ EDA Code library ieee;use IEEE.STD_LOGIC_1164.all;ENTITY BUF3S ISPORT (INPUT:IN STD_LOGIC;ENABLE:IN STD_LOGIC;OUTPUT:OUT STD_LOGIC);END BUF3S;ARCHITECTURE BHV OF BUF3S ISBEGINPROCESS(ENABLE,INPUT)BEGINIF ENABLE='1'THEN OUTPUT<=INPUT;ELSE OUTPUT<='Z';END IF;END PROCESS;END BHV; Ⅳ Verilog HDL Model and Simulation of Tri-state Buffer Figure 5. Verilog HDL Model and Simulation of Tristate Buffer 4.1 Tri-state Buffer IC Tristate buffers are often used for multiple data sources to share a (group) common line (bus). Figure 6. For Multiple Data Sources When all enable terminals of the decoder are valid, the combination of SS2~SS0 makes only one of /SELP~/SELW valid at the same time, so that one of the 8 data sources P~W drives SDATA. When the enable terminal is invalid, then none of the three-state gates are enabled, and the outputs are all high impedance.The MSI device 74LS541 contains 8 independent tri-state gates and shares two enable inputs. The logic diagram and logic symbols are as follows: Figure 7. 74LS541 Logic Diagram and Logic Symbol 4.2 Application Example of 74LS541 as Input Port Figure 8. Application Example of 74LS541 as Input Port The MSI device 74LS245 is an 8-bit tri-state bus transceiver with an enable output G and a direction selection input DIR to determine the transmission direction: when DIR=1, data is transmitted from A to B; when DIR=0, data is transmitted from B passed to A. The logic diagram and logic symbols are as follows: Figure 9. 74LS245 Logic Diagram and Logic Symbol Figure 10. Bus Figure 11. Verilog HDL Model of 8-bit Tri-state Bus Transceiver 4.3 Multiplexer (MUX) Multiplexers are also called data selectors, and are often abbreviated as MUX. It is a combinational logic circuit with multiple inputs and single outputs, denoted as n/1 or n-1.Logic function: Since the enable terminal EN is valid., when selecting the control variable, select one of the multiple input data to the output terminal. Figure 12. MUX Each value group of the n selection control variables corresponds to select one of the m=2n input data and then send it to the output terminal.Design of Commonly Used Multiplexers🔺8 to 1 Multiplexer Figure 13. 8 to 1 Multiplexer Function Description Figure 14. 8 to 1 Logic Circuit Diagram Circuit package, Logic symbol Figure 15. Circuit Package Figure 16. Logic Symbol 1 Out of 8 Verilog HDL Models Figure 17. 1 Out of 8 Verilog HDL Model Figure 18. 8 Out of 1 Functional Simulation 🔺8 Out of 1 Multiplexer with Tri--state Output Figure 19. Function Description Figure 20. 8 to 1 Logic Circuit Diagramof Three-state Output Circuit Package, Logical Symbol Figure 21. 74LS251 Circuit Package and Logical Symbol 1 Out of 8 Verilog HDL Model for Tri-state Output Figure 22. Verilog HDL Model Ⅴ FAQ 1. What is a buffer software?A reserved segment of memory within a program that is used to hold the data being processed. Buffers are set up in every program to hold data coming in and going out. In a video streaming application, the program uses buffers to store an advance supply of video data to compensate for momentary delays. 2. Is buffer safe to use?Buffer is a reliable, fast way to manage multiple social media accounts, from a user-friendly dashboard. 3. Why do we need buffering in OS?Computers have many different devices that operate at varying speeds, and a buffer is needed to act as a temporary placeholder for everything interacting. This is done to keep everything running efficiently and without issues between all the devices, programs, and processes running at that time. 4. Is a buffer hardware or software?A buffer is a data area shared by hardware devices or program processes that operate at different speeds or with different sets of priorities. The buffer allows each device or process to operate without being held up by the other. This term is used both in programming and in hardware. 5. What is tri-state buffer?A tri-state buffer is a logic inverter or a non-inverting buffer with a tri-state output stage. ... When the enable line is not activated the buffer output stage has a high output impedance (i.e., the Z state, as described above in section 10.15) and transmission of data is prevented. 6. What is the difference between buffer and tri-state buffer?A tri-state buffer is similar to a buffer, but it adds an additional "enable" input that controls whether the primary input is passed to its output or not. If the "enable" inputs signal is true, the tri-state buffer behaves like a normal buffer. 7. What is meant by tri-state buffer how it helps in reading and writing data from a register?Definition: A three-state bus buffer is an integrated circuit that connects multiple data sources to a single bus. The open drivers can be selected to be either a logical high, a logical low, or high impedance which allows other buffers to drive the bus. 8. What is tri-state TTL?Tri-state gates have additional circuitry via which the gate outputs can be enabled or disabled. This is very useful in digital systems where devices communicate via common wires called busses. Only one device can talk at a time; the others are disabled. 9. Which of the following is also known as tri-state?Explanation: The progression in the parallel ports provides a third register or an individual control bit which can make the pin in a high impedance state. An output port which can do this is also known as tri-state, that is, logic high, logic low and a high impedance state. 10. What is tri-state in microprocessor?Tristate means three states viz. Logic 0, Logic 1 and high impedance states. In high impedance state, the pin neither connected to supply nor to ground. Hence impedance at this pin is very high with respect to suppy as well as ground. Some pins of 8085 have three states. 11. How many buffer may active at any given time?At any one time, one buffer is actively being displayed by the monitor, while the other, background buffer is being drawn. 12. What is tri-state circuit?Tristate means a digital circuit output that can have 3 states: 0, 1 and High-Z or high impedance which is the circuit equivalent of “disconnected”. There are times when you want to have multiple digital circuits connected on a bus but not interfering with each other.
kynix On 2022-01-13
IntroductionNow face masks are necessary elements during the COVID. In practice, they are intended for one-time use, and to a large extent, it is environment unfriendly. Also during a shortage, repeated use is inevitable and it is necessary to have a disinfection mechanism. During the ongoing SARS-CoV-2 pandemic, hospitals, medical centers, and research institutions implemented different disinfection methods for these masks, usually involving ultraviolet germicidal exposure (UVGI) or some kind of heating methods. Nevertheless, these methods are not suitable for many ordinary people. What’s more, due to shortages, the reuse of these masks has become the only option. There is evidence that SARS-CoV-2 still exists on the surface of surgical masks even after 7 days, so the demand for feasible mask disinfection methods has further increased. Here will introduce a special device to do that.Introduction: Understanding the CoronavirusCatalogIntroductionⅠ Disinfection Device Production InstructionsⅡ Device Design Processes2.1 Device Size2.2 Thermal Test2.3 Box Lid Design2.4 UV-C System2.5 Making the Mask PlacementⅢ Set Up Arduino and Sensor3.1 Arduino Overview3.2 Material3.3 Sensors Installation3.4 Arduino Control3.5 AlarmⅣ Using GuideⅤ Temperature Cycle5.1 Heat Inactivation of Viruses5.2 Security ConsiderationsⅥ ConclusionⅠ Disinfection Device Production InstructionsThe device aims to create a low-cost portable device that can effectively use UVGI and dry heat to disinfect masks carry SARS-CoV virions, and can be easily operated by those who need it.Device Setup DiagramFigure 1. Device Setup Diagram1) The temperature must be kept within 65±5℃.2) The lamp must provide UV-C wavelength. UVC bulbs that emit very short ultraviolet wavelengths from 100 to 280 nanometers that damages the DNA of bacteria, viruses, and other pathogens. You should be careful, ultraviolet C is the most dangerous type of ultraviolet light in terms of its potential to harm life on earth.3) The duration of the disinfection cycle is at least 30 minutes. Because coronavirus is more sensitive to heat. A temperature of 56 degrees can kill the coronavirus within 30 minutes. So no more than 30 minutes to avoid potential mask degradation and function losses.Figure 2. Device Operational DisplayFigure 3. Device Physical ViewⅡ Device Design Processes2.1 Device SizeFigure 4. Device Size2.2 Thermal TestFigure 5. Thermal Test DiagramFigure 6. Test with ThermometerFigure 7. Test Boite Temperature Manufacturing of heating system:1) A frying pan with a diameter of 22cm (induction compatible) without handle.2) Cover the frying pan with aluminum foil to reflect UV-C light.3) Make a 20cm hole in the center of the bottom surface of the box.4) In order to maintain the position of the frying pan, please use four metal brackets as shown in the figure.Figure 8. Frying PanNote: The frying pan should not close to the wood of the box because it will reduce the thermal efficiency. Therefore, you must select the appropriate hole diameter and shape the metal bracket according to the following figure:Figure 9. Frying Pan Installation Diagram 2.3 Box Lid DesignFigure 10. Box Lid Design2.4 UV-C SystemFigure 11. UV-C LampFor the UV-C source in this device, it is an 11W bulb from household aquarium. As shown in the picture, the UV-C bulb is taken out and installed on the top cove. The installation method of the bulb is to make 4 holes in the top cover, and use the cable tie/cable tie and soft cushion to fix the bulb firmly. And the top surface is covered with aluminum to reflect ultraviolet radiation.You can feel free to use UV-C lamps from other sources. However, if you cannot access the crystal tube (used in this project), please do not use glass as a substitute, because glass will block ultraviolet radiation.2.5 Making the Mask PlacementThe mask will be placed on top of the metal frame. The I wire frame is made of thin copper wires, and each wire has 30mm spacing apart. The wire stand is located 120mm above the bottom surface. Next secure the wire racks together by passing the wires through the small holes on the front and back surfaces of the box.Figure 12. Mask PlacementⅢ Set Up Arduino and Sensor3.1 Arduino OverviewFigure 13. Arduino Overview3.2 MaterialArduino UNO Rev3Grove Basic Shield V2, 0Infrared temperature sensorLight SensorPush ButtonPiezo SpeakersFour-digit LED DisplayAdapter power supply DC 12V3.3 Sensors InstallationFigure 14. Sensor Introduction3.4 Arduino ControlINIT: In this state, the LED display indicates the temperature, but you have to wait for it to reach the threshold (70℃) before starting cycle counting in the COUNT state.Count: The number of minutes from 30 to 0 is displayed on the LED display next to the temperature digits. Additionally, in the case of too low temperature, or if the UV lamp is turned off, the status will change to ERR.END: This is the normal state at the end of the elapsed time. The speaker will remind. Press the button to enter INIT again.ERR: This is an error state, if the temperature is too low or the UV lamp is turned off, it will run. In terms of it, repeat the last step above.Code Download: LED Backpack Libraries and Arduino Wiring.3.5 AlarmIn fact, there are few alarm conditions. If the alarm is on, there will be a specific sequence on the speaker and a message will be displayed on the screen.Alarm condition: If the system is in ERR state (mentioned above) or the temperature is too high (over 75℃).Figure 15. Alarm System Diagram Ⅳ Using Guide1) Put the box on top of the induction (or resistance) stove.2) Turn on the power of Arduino.3) Close the box and start heating at 70~80% of the power of the induction cooker.4) Wait until the temperature reaches 60℃, and then reduce the variable power of the induction cooker to 30%.5) Now you can open the device, put the mask in and close it.7) Press the button to start, the remaining time (30 minutes) should be displayed.8) From now on, you need to wait 30 minutes, and there will be a signal on the speaker.9) If you want to restart a new cycle from the initial state, just press the button.Note: When the timer is counting the elapsed time, the dots between the Timer and Temperature displays will flash at 1 second intervals. Ⅴ Temperature CycleFigure 16. First Heat CycleFigure 17. Cycle with Opening-Closing 5.1 Heat Inactivation of VirusesSince the time of Pasteur, people have known the ability to remove microorganisms through moist heat, usually below 100℃. In this device, we implemented dry heat, which is reported to be effective in eliminating the infectivity of SARS-CoV. The analysis showed that the virus is largely inactivated within 30-90 minutes at 56℃, almost completely inactivated at 65℃ in 20-60 minutes, and at 75℃ in 30-45 minutes. In addition, a recent study showed that SARS-CoV-2 will lose all its infectivity at 56℃ after 30 minutes or at 70℃ after 5 minutes.According to these evidences and additional considerations regarding the effects of these disinfection methods on the function of the mask, we decided to set the heat exposure of the protocol used with the equipment to 65℃/30 minutes.5.2 Security Considerations• UVC radiation is harmful to human skin and eyes, so the UVC bulb should only be turned on when the box is completely closed.• Be careful with the metal parts of the box, they may be very hot after heating and may burn your skin when you touch them directly. Ⅵ ConclusionTaking into account the collected evidence and the technical details of the equipment, we decided to set the disinfection protocol to UVC irradiation for 30 minutes and 65±5℃ dry heat. In addition, the time required for the device should reach the required temperature and light intensity, which must be calculated. Using these specifications of UVC or heating alone should be sufficient to eliminate almost all SARS-CoV-2 infectivity, and the simultaneous action of the two should increase the effectiveness to reach a safer level.According to the available scientific evidence, the disinfection program may eliminate almost all SARS-CoV infectivity and will certainly make the masks safer to reuse than without any disinfection. However, it is designed in good faith and to the best of professional knowledge and ability, but the following must be stated:The use of this equipment to inactivate SARS-CoV-2 has not yet undergone proper laboratory testing, and it is impossible to confidently confirm the actual impact on the filtering capacity of the mask in advance.
kynix On 2021-12-20
IntroductionThe 1N4007 is a general-purpose silicon rectifier diode, typically found in a plastic DO-41 axial package. It is widely used in various AC-to-DC rectifier circuits, bridge rectifier circuits, and general-purpose power supply applications. The 1N4007 utilizes the unidirectional conductivity of the P-N junction to convert alternating current into pulsed direct current. Due to its high reverse voltage rating (1000V) and low cost, it is one of the most popular components in electronics.Ⅰ 1N4007 Diode Specifications1.1 Rectifier Diode OverviewThe 1N4007 is a standard recovery rectifier diode. In low-power/low-current scenarios, the forward voltage (Vf) is typically around 0.7V to 0.8V. However, under its full rated load (1A), the forward voltage drop can reach up to 1.1V.Note on Frequency: The reverse recovery time (Trr) of the 1N4007 is in the microsecond (μs) range (typically 2μs to 30μs depending on conditions). This classifies it as a "slow" diode, meaning it is suitable for 50Hz/60Hz mains rectification but not suitable for high-frequency switching circuits (like high-frequency DC-DC converters), where Fast Recovery (FR) or Ultra-Fast (UF) diodes are required.Rectifier diodes make full use of unidirectional conductivity. They block the negative half-cycle of an AC waveform to convert it into a pulsating DC signal. To smooth this output, they are usually used in combination with a capacitor. The diode is connected in series, and the capacitor is connected in parallel to the load.Figure 1. 1N4007 Bridge Rectifier Circuit Example1.2 Nomenclature: What does 1N4007 mean?"1": Represents the number of junctions. In JEDEC nomenclature, "1" stands for a component with one P-N junction (a diode)."N": Stands for semiconductor device, registered with the EIA (Electronic Industries Alliance) / JEDEC."4007": The specific registration number indicating the device's electrical characteristics within the 1N400x series.1.3 1N4007 Pins and SymbolPINDescription1 (Marked with Band)Cathode (-)2 (Unmarked)Anode (+)1.4 1N4007 Basic Parameters (at 25°C)Type: Standard Recovery Silicon RectifierMax Average Forward Rectified Current (Io): 1.0 APeak Forward Surge Current (Ifsm): 30 A (for 8.3ms single half-sine-wave)Max Repetitive Peak Reverse Voltage (Vrrm): 1000 VMax DC Blocking Voltage: 1000 VMax Forward Voltage Drop (Vf): 1.1 V (at 1.0A current)Max Reverse Leakage Current (Ir): 5 μA (at rated DC blocking voltage)Typical Junction Capacitance (Cj): 15 pF (measured at 4V, 1MHz)Typical Thermal Resistance: 65 °C/W (Junction to Ambient)Operating Temperature Range: -55°C to +150°CFigure 2. Forward Current Derating Curve1.5 1N4007 FeaturesLow reverse leakage currentHigh surge current capability (up to 30A non-repetitive)RoHS compliant and available in Pb-Free packagesHigh-temperature soldering guaranteed: 260°C/10 seconds.Mechanical Data:Case: DO-41 Molded PlasticTerminals: Plated axial leads, solderable per MIL-STD-202Polarity: Color band denotes cathode endⅡ 1N4001-1N4007 Series ComparisonThe 1N400x series contains diodes that are physically identical and rated for the same current (1A). The only difference is the Maximum Repetitive Reverse Voltage (Vrrm). Because the 1N4007 has the highest voltage rating (1000V), it can replace any other diode in the series (1N4001 through 1N4006).ModelCurrent (A)Max Peak Reverse Voltage (V)Max RMS Voltage (V)1N4001150351N40021100701N400312001401N400414002801N400516004201N400618005601N400711000700Ⅲ Alternative Models & EquivalentsThe 1N4007 can often be replaced by higher-spec diodes.Higher Current: 1N5399 (1.5A) and 1N5408 (3.0A). Note: The 1N5408 has thicker leads and a larger body (DO-201AD) and may not fit all PCB holes designed for the 1N4007.Fast Recovery: If high-frequency performance is required, FR107 (Fast Recovery) or UF4007 (Ultra Fast) are excellent replacements. They share the same voltage/current ratings but switch off much faster.Schottky Diodes (Caution): While Schottky diodes like 1N5819 or 1N5818 have a lower forward voltage drop (higher efficiency), they usually have much lower reverse voltage ratings (often 20V-40V). Do not replace a 1N4007 with a Schottky diode in high-voltage circuits (like 110V/220V mains) or the diode will fail instantly. However, for low voltage (e.g., 12V) DC inputs, a Schottky like the SB1100 (100V) can be a more efficient substitute.ModelMax Reverse Voltage (V)Avg Rectified Current (A)Max Surge Current (A)Max Reverse Leakage (μA)1N4007100013051N539910001.55051N5408100032005FR10710001305 (Fast Recovery)Ⅳ 1N4007 vs. M7 (SMD Versions)When moving from Through-Hole Technology (THT) to Surface Mount Technology (SMT), the electrical equivalents of the 1N4007 are identified by different package codes.1N4007: This specifically refers to the DO-41 axial lead package (through-hole).M7: This is the SMA (DO-214AC) surface mount version of the 1N4007. It is electrically identical (1A, 1000V).A7: This is the SOD-123 surface mount version. It is smaller than the SMA package but carries similar specs (usually slightly lower thermal dissipation).SM4007: This generally refers to the MELF (DO-213AB) cylindrical surface mount package, though "SM4007" is sometimes used generically for any SMD version.Figure 3. DO-41 Package (1N4007)Summary: If you see a diode marked "M7" on a circuit board, it is a surface-mount 1N4007.Ⅴ 1N4007 Application Examples5.1 Solving Auxiliary Winding OvervoltageThe slow recovery characteristics of the 1N4007 can sometimes be advantageous over faster diodes in specific power supply applications.In Flyback power supplies, multi-output transformers can suffer from poor cross-regulation. A common issue is the VCC auxiliary winding voltage rising too high, triggering the IC's Over-Voltage Protection (OVP). This often happens because a fast diode (like the HER107) rectifies the high-frequency leakage inductance spike (the "ringing") at the leading edge of the waveform, rather than just the plateau voltage.Figure 4. IC Control CircuitSolution: By replacing the fast HER107 with a standard speed 1N4007, the slower turn-on time ignores the initial high-frequency spike. This effectively filters the peak voltage, lowering the average VCC voltage seen by the IC and preventing false OVP triggering.5.2 RCD Snubber EMI SuppressionIn RCD (Resistor-Capacitor-Diode) snubber circuits used to protect MOSFETs in Flyback converters, using a slow diode like the 1N4007 can help improve Electro-Magnetic Interference (EMI).Figure 5. RCD Absorption CircuitHow it works: A "fast" diode snaps off very quickly, which can induce high-frequency ringing. The 1N4007 takes longer to recover (reverse recovery). During this brief recovery period, a small amount of reverse current flows back. This "soft recovery" acts as a dampener, absorbing some of the oscillation energy and reducing the voltage stress and EMI radiation on the MOSFET drain.Trade-off: The downside is that the 1N4007 will generate more heat due to reverse recovery losses. This technique is generally suitable for lower-power adapters (<20W) where EMI is a priority and thermal overhead is available.Ⅵ FAQ1. What is a 1N4007 diode used for?It is a general-purpose rectifier diode used to convert AC to DC, prevent reverse polarity, and protect circuits from voltage spikes (flyback protection).2. What is the difference between 1N4001 and 1N4007?The only difference is the Peak Repetitive Reverse Voltage. The 1N4001 is rated for 50V, while the 1N4007 is rated for 1000V. 1N4007 can replace a 1N4001, but a 1N4001 cannot replace a 1N4007 in high-voltage circuits.3. Can I replace 1N4148 with 1N4007?Generally, No. The 1N4148 is a high-speed signal diode (very fast switching, low current). The 1N4007 is a power rectifier (slow switching, high current). • If you put a 1N4007 in a high-speed data circuit, it will be too slow and fail to work.• If you put a 1N4148 in a power circuit, it will likely burn out due to its lower current limit (200mA vs 1A).4. How much current can a 1N4007 diode handle?It can handle 1 Ampere of continuous rectified current. It can handle a non-repetitive surge of 30 Amperes (for less than 8.3ms), which is useful for inrush current at startup.5. What is the voltage drop of 1N4007?While often cited as 0.6V or 0.7V, under a full 1A load, the voltage drop is typically 0.9V to 1.1V.6. What is M7 diode?M7 is the surface-mount (SMD) code for the 1N4007 diode in an SMA package. It has the same electrical specs: 1A, 1000V. body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; } h2 { color: #2c3e50; border-bottom: 2px solid #3598db; padding-bottom: 10px; margin-top: 30px; } h3 { color: #34495e; margin-top: 20px; } table { width: 100%; border-collapse: collapse; margin: 20px 0; } table, th, td { border: 1px solid #ddd; } th, td { padding: 12px; text-align: left; } th { background-color: #f2f2f2; } img { max-width: 100%; height: auto; display: block; margin: 20px auto; } .note { background-color: #f9f9f9; border-left: 6px solid #2196F3; padding: 10px; font-style: italic; } .warning { background-color: #fff3cd; border-left: 6px solid #ffc107; padding: 10px; }
Kynix On 2021-11-11
Introduction In general, the radio is constructed by mechanical devices, electronic devices, magnets, etc. It receives the audio signals emitted by broadcasting stations through converting electric wave signals. After the invention of the vacuum tube, the circuit and receiving performance of the radio had undergone revolutionary progress and improvement, that is valve radio. Later, with the development of technology, radios with transistors as the core gradually became popular. It's what we know as a transistor radio. Radios are still widely used for many functions. Here two main radios will be described in detail below. Catalog Introduction Ⅰ Valve Tube Radio 1.1 Vacuum Tube Radio Classifications 1.2 Advantages and Disadvantages of Valve Radio 1.3 German Vintage Valve Radio Models for Sale Ⅱ Transistor Radio 2.1 Transistor Radio Overview 2.2 Transistor Radio Selection Matters 2.3 Transistor Radio Brands for Sale Ⅲ Radio Further Development Ⅳ FAQ Ⅰ Valve Tube Radio The valve radio, also known as the vacuum tube radio, was a product of the early 20th century, and immediately became the new favorite of that era with the launch of the broadcasting station. By the late 1920s, vacuum tube radio equipment replaced the primitive spark-gap systems on most merchant ships. This new equipment could send and receive signals virtually worldwide, by using high frequency or "short-wave" bands. Tube technology allowed radio signals to be tuned with much greater precision than spark-gap. The basic design for tube radio was perfected by the 1930s and continued in use on merchant vessels into the 1980s. 1.1 Vacuum Tube Radio Classifications 🔺AM (Amplitude Modulation) RadioIn the era when tube radios were popular, AM radios were the mainstream products. Amplitude modulation wave modulates the high-frequency carrier with audio signal. Its waveform is symmetrical, the amplitude is the same as that of the modulated signal, and then obtain the audio signal after high-frequency component is filtered out. In addition, the frequency of the carrier signal (the frequency of the broadcasting station) is the carrier frequency.AM radios can receive medium-wave and short-wave broadcasts, and some can receive long-wave broadcasts. Since the mid-band frequency interval has been unified to 9KHz, its highest audio frequency is only 4KHz. So the sound quality is affected because of large electromagnetic interference.There are two main types of AM radios: direct-amplifier type and external (self) differential type1) Direct-amp radio, also called high-amp radio, its typical circuit structure is as follows:High Amplifier—Detection—Low Amplifier—Power AmplifierA circuit that uses a grid detector circuit and high-frequency positive feedback is called a regenerative radio, which can obtain higher sensitivity and amplitude selectivity. A regenerative radio with high amplifier and short wave can receive AM telegraph signals. Most of the old Japanese-made radios have such circuits. Direct-amp radios are prone to self-excitation of high-frequency signals, high-end and low-end gains are uneven, and regenerative radios without high-amplification have poor selectivity. In addition, the reed speakers with poor sound quality are generally used, so they are gradually replaced by superheterodyne radios.Simple regenerative radios mostly use reed speakers, which have high impedance (about 10K) and high sensitivity. It can be directly used as the load of the power amplifier tube, but the frequency range is only 350~3000Hz, so the sound quality is poor. Later regenerative radios applied moving coil speakers, and the sound quality was better. However, because of low impedance, an output transformer is required, and its primary impedance must match the load impedance of the power amplifier tube. Moving coil speakers are divided into permanent magnets, constant magnets and excitation. Among them, excitation horns are used in AC electronic tube radios, and their excitation coils can also be used as filter chokes. 2) Heterodyne RadioThe heterodyne radio adopts a frequency conversion circuit. The signal generated by its high-frequency oscillation circuit and the input signal have a certain frequency difference. After the two are mixed, a fixed intermediate frequency signal (455~465KHz) is generated. Some people call the oscillation frequency higher than the signal frequency a heterodyne type, and vice versa.Heterodyne plus intermediate frequency amplifier circuit is called superheterodyne. This type of circuit requires a single electron tube to oscillate, and later a multi-pole or composite tube dedicated to frequency conversion appears. The superheterodyne type is the most common circuit of commercial radios. It has an automatic volume control circuit and can add tuning instructions. The circuit principle will be described in detail later. The superheterodyne radio can obtain more stable and higher gain due to amplifying the fixed frequency. The disadvantage is that there is image frequency interference.The circuit structure of a typical superheterodyne radio is as follows:Frequency Conversion—Middle Amplification—Detection—Low Amplification—Power Amplification 3) Autodyne Frequency Conversion RadioUsing ordinary pentodes for frequency conversion is only suitable for the mid-band, and the middle frequency is 175KHz. Due to the popularization of special frequency conversion tubes, it is rarely used now. Figure 1. Vintage AM Radio 🔺FM (Frequency Modulation) RadioFM radio is a radio that transmits radio signals through the use of FM frequency modulation carrier. Due to the shorter wavelength, the signal transmitted is much better than that of the radio that uses the AM wavelength. However, due to the short wave, the transmission distance is relatively short.FM wave is to use audio signal to modulate the frequency of high frequency carrier. Its advantages include strong anti-interference ability, high signal-to-noise ratio, good frequency bandwidth and sound quality, in addition, the audio frequency can reach 20Hz~15000Hz. Because the FM wave works in the ultra-high frequency band, it can accommodate many radio stations. With its linear propagation characteristics, the same frequency can be reused at a distance of hundreds of kilometers, which can effectively solve the problem of congestion of medium and short wave radio stations.Modern FM broadcasting is compatible with stereo and mono channels(in the early days of stereo broadcasting, two frequencies were used and two radios for reception). Some hobbyists are likely to use a simple super-regenerative circuit to receive FM broadcasts. Because it works in a self-oscillation state, the work is unstable and has strong super-noise. 1.2 Advantages and Disadvantages of Valve Radio Advantages of Valve Radio 1) The valve tube circuit has a simple structure and good anti-overload performance.2) The characteristics of the power amplifier circuit of the tube radio are better than those of the transistor or integrated circuit power amplifier. The screen current of the Class A power amplifier circuit with an output transformer for output impedance matching has little change at zero signal and full signal. So the performance is stable, the distortion of the line work area is very small, and the harmonic content is very rich .3) The speakers used in valve radios are generally larger in diameter than those of transistor or integrated circuit radios.4) The IF circuit characteristics of tube radios are better than those of transistor or integrated circuit radios.5) Have collection value. Disadvantages of Valve Radio As for the shortcomings, valve tubes that are large in size and used as basic components, built-in accessories are also bulky, power consumption has also increased, the overall quality has become poor, inconvenient to carry, and poor seismic performance. In addition, it is very difficult to make FM stereo radio devices, because early tube radios can only receive shortwave and medium waves. These shortcomings eventually led to the replacement of tube radios by transistor radios. Vintage Valve Radios - Will they work? 1.3 German Vintage Valve Radio Models for Sale AEG RadioBlaupunktGerman EMUDGraetz Vintage RadioGrundig Vintage RadioHornyphon Vintage RadioVintage Koerting RadioGerman Metz Vintage RadioVintage Nordmende RadioPhilips Vintage RadioVintage Saba RadioVintage Siemens RadioTelefunken Radio Figure 2. Vintage Valve Radio Ⅱ Transistor Radio 2.1 Transistor Radio Overview The transistor radio is the second generation radio after the valve radio. Compared with vacuum tubes, transistors are small in size, light in weight, resistant to vibration, long in life, and low in power consumption. This kind of radios can be made compact and have relatively stable performance. Therefore, after the advent of transistor radios, a large number of portable radios and pocket radios have emerged. They are very convenient for daily use. The Regency TR-1 was the first commercially manufactured transistor radio by developed by Texas Instruments and IDEA Inc., introduced in 1954.Transistor radios use transistors to process and amplify signals. Simple to use, it is a small transistor-based radio receiver. 2.2 Transistor Radio Selection Matters To choose a good transistor radio, you must first understand four basic relationships:1) The larger the chassis volume, the better the sound quality.2) The larger the horn diameter, the better the sound quality.3) The larger the battery volume, the longer the relative service life of the battery.4) The longer the magnetic bar, the higher the sensitivity.Secondly, we should also pay attention to five points when selecting:1) The change after the power supply voltage is reduced should be small. When selecting, you can have listening trial, because the impact on a high-quality radio should not be significant.2) The distortion of the offset radio should be small. After finding a radio station, having the left and right adjustments, the distortion should be small. In addition, there should be no whistling sound, otherwise, the frequency characteristics of the intermediate frequency part are poor.3) The volume change should be small when turning the button.4) Human body induction has little influence. When a person's body is close to the radio, it will have a certain impact on the work of the radio. This situation is particularly obvious for shortwave.5) The noise should be small. Noise generally includes electrical noise and mechanical noise. Turn the radio to a place where there is no station, and turn on the volume to the maximum. At this time, the minimum sound is better. Listen to a program to check whether there are noises caused by resonance of certain components when the volume is loud. Finally, you should also pay attention to whether the tuning knobs and buttons are coordinated and effective, and whether the shell of the radio is damaged or not. Vintage Transistor Radios Show And Tell 2.3 Transistor Radio Brands for Sale EdifierGAORUI HOME TEXTILESONYRoltonHALFSUNPandaSoaiyNintaus Figure 3. Regency tr-1 Transistor Radio Ⅲ Radio Further Development With the advent and development of integrated circuits, transistors have been replaced by integrated circuits, that is the third-generation radios invention, sometimes also known as semiconductor radios.After the radio uses integrated circuits, not only the size can be made smaller, but also the reliability is high. As the number of integrated circuit components is getting larger and larger, radios made with it have better performance and more functions. The integration of radios has become an inevitable trend. Ⅳ FAQ 1. What is a vacuum tube radio?A vacuum tube, also called a valve in British English, is an electronic device used in many older model radios, television sets, and amplifiers to control electric current flow. The cathode is heated, as in a light bulb, so it will emit electrons. ... The anode is the part that accepts the emitted electrons. 2. Do valve radios still work?A valve radio will never be as reliable as a transistor set, and short of ripping out the chassis and replacing it with a transistor circuit, we aren't going to make it that reliable. However, some designs of valve set are more unreliable than others, and the main factor seems to be heat. 3. What did valves do in radios?The valve was useful as an electronic switch and its first use was in radio circuits detecting signals. The valve has two elements - a wire and a metal plate surrounded by a vacuum. The electricity flows between them. 4. How does a tube radio work?The basic working principle of a vacuum tube is a phenomenon called thermionic emission. It works like this: you heat up a metal, and the thermal energy knocks some electrons loose. 5. When did radios stop using vacuum tubes?1950s-60s - Most vacuum tubes were replaced by transistors in the west. 1970s-80s Tubes are still used in many specialized applications like broadcast television and radio. 6. Why did we stop using vacuum tubes?Vacuum tubes suffered a slow death during the 1950s and '60s thanks to the invention of the transistor—specifically, the ability to mass-produce transistors by chemically engraving, or etching, pieces of silicon. Transistors were smaller, cheaper, and longer lasting.A transistor is a semiconductor device used in electronic circuits as to function as "on" and "off" switching and amplifying device in the electronic circuits. ... Radio is a device which transmit and amplifies signals. The modern radio uses transistor since it is smaller in size. 7. Are transistor radios still being made?Transistor radio is an obsolete term now, carried over from when having transistors rather than tubes made small radios possible. It has come to be analogous to a portable, battery-powered radio, so while I will be making some recommendations, they likely will have integrated circuits, rather than transistors.It is a radio receiver which uses transistors to amplify the sound. Transistor radios can be cheap and small and some use very little electric power. Some can amplify the weak radio waves that are usually not picked up by weaker vacuum tube radios. 8. What does a transistor radio do?The function of transistors in radios is straightforward. Sounds are recorded through a microphone and turned into electrical signals. Those signals travel through a circuit, and the transistor amplifies the signal, which is subsequently much louder when it reaches a speaker. 9. Why was the transistor radio invented?One goal was to find a replacement for fragile and energy-wasting vacuum tubes. Building on war-time research, John Bardeen and Walter Brattain, working with group leader William Shockley, developed a device they called a transistor. 10. Where was the transistor radio invented?There was a tremendous push during the war to reduce the size and power consumption of vacuum tubes, particularly because the receivers used in radio-controlled bombs depended on vacuum tube technology. “Not long after the war ended, the transistor was developed at Bell Labs, in 1947. 11. What is the name of first transistor radio?Regency TR-1In July 1954 the Texas Instruments and Industrial Development Engineering Associates (I.D.E.A.) companies embarked on a six month project to produce a pocket-sized radio for the Christmas market. The result was the Regency TR-1, the world's first pocket transistor radio.
kynix On 2021-11-03
This article is an introduction article on the resonator, information like its working principle, types, and some main parameters will be introduced in detail, also including the analysis of the difference between resonator and oscillator. Catalog I. What is A Resonator? II. The Working Principle of Resonator 2.1 The Structure of Resonator 2.2 Piezoelectric Effect III. Resonator Types IV. Main Parameters of Resonator V. What’s the Difference Between Resonator and Oscillator? 5.1 General Difference Between Resonator & Oscillator 5.2 Pros and Cons Analysis of Resonator & Oscillator FAQ I. What is A Resonator? This video introduce resonator in details. A resonator refers to an electronic component that generates a resonant frequency. A resonator refers to an electronic component that generates a resonant frequency. It is a typical passive device and requires a peripheral circuit to drive its work to generate a clock output. Crystal resonators are commonly divided into quartz crystal resonators and ceramic resonators. The function of generating frequency has the characteristics of stability and good anti-interference performance and is widely used in various electronic products. The frequency accuracy of quartz crystal resonators is higher than that of ceramic resonators, but the cost is also higher than that of ceramic resonators. The resonator mainly plays the role of frequency control, and all electronic products involve frequency transmission and reception require a resonator. The types of resonators can be divided into the in-line type and patch type according to their appearance. II. The Working Principle of Resonator 2.1 The Structure of Resonator Quartz crystal resonator is a kind of resonant device made by using the piezoelectric effect of quartz crystal (a crystal of silicon dioxide). Its basic composition can be roughly described as follows: cut a thin slice (referred to as a wafer, which can be square, rectangular or circular, etc.) from a piece of quartz crystal at a certain azimuth angle, and coat silver layers as electrodes on its two corresponding surfaces. Weld a lead wire on each electrode to the pin, and add a package shell to form a quartz crystal resonator. Its products are generally packaged in metal shells, but also in glass, ceramic or plastic packages. 2.2 Piezoelectric Effect If an electric field is applied to the two electrodes of the quartz crystal, the wafer will be mechanically deformed. Conversely, if mechanical pressure is applied to both sides of the wafer, an electric field will be generated in the corresponding direction of the wafer. This physical phenomenon is called the piezoelectric effect. If an alternating voltage is applied to the two poles of the wafer, the wafer will produce mechanical vibration, and at the same time, the mechanical vibration of the wafer will produce an alternating electric field. In general, the amplitude of the mechanical vibration of the wafer and the amplitude of the alternating electric field is very small, but when the frequency of the applied alternating voltage is a certain value, the amplitude is obviously increased, which is much larger than the amplitude at other frequencies. This phenomenon is called piezoelectric resonance, which is very similar to the resonance phenomenon of the LC circuit. Its resonant frequency is related to the cutting method, geometry, and size of the wafer. III. Resonator Types Quartz crystal resonators are composed of quartz crystal resonators (ie resonators and oscillation circuits) with extremely high-quality factors. The quality of the crystal, the cutting orientation, the structure of the crystal oscillator and the circuit form, etc., jointly determine the performance of the resonator. The International Electrotechnical Commission (IEC) divides quartz crystal resonators into 4 categories: ordinary crystal oscillator (SPXO), voltage-controlled crystal resonator (VCXO), temperature compensated crystal oscillator (TCXO), and thermostatically controlled crystal oscillator (OCXO). Digitally compensated crystal loss oscillation (DCXO) is currently under development. (1) Ordinary crystal resonator (SPXO) can produce frequency accuracy of the order of 10-5~10-4, the standard frequency is 100MHZ, and the frequency stability is ±100ppm. SPXO does not use any temperature and frequency compensation measures are low in price and are usually used as a clock device for microprocessors. The package size ranges from 21×14×6mm and 5×3.2×1.5mm. (2) The accuracy of the voltage-controlled crystal resonator (VCXO) is in the order of 10-6 to 10-5, and the frequency range is 1 to 30 MHz. The frequency stability of the low-tolerance resonator is ±50ppm. Usually used in phase-locked loops. The package size is 14×10×3mm. (3) The temperature-compensated crystal resonator (TCXO) uses temperature-sensitive devices for temperature and frequency compensation, with a frequency accuracy of 10-7~10-6, a frequency range of 1-60MHz, and frequency stability of ±1~±2.5ppm, The package size ranges from 30×30×15mm to 11.4×9.6×3.9mm. Usually used in handheld phones, cellular phones, two-way wireless communication devices, etc. (4) The thermostatically controlled crystal resonator (OCXO) places the crystal and oscillation circuit in a thermostat to eliminate the influence of environmental temperature changes on the frequency. The frequency accuracy of OCXO is in the order of 10-7~10-8, even higher for some special applications. The frequency stability is the highest among the four types of resonators. IV. Main Parameters of Resonator The main parameters of the crystal oscillator are nominal frequency, load capacitance, frequency accuracy, frequency stability, etc. Different crystal oscillators have different nominal frequencies, and most of the nominal frequencies are marked on the crystal housing. For example, the nominal frequencies of common ordinary crystal oscillators are 48kHz, 500 kHz, 503.5 kHz, 1MHz~40.50 MHz, etc. The frequency of crystal oscillators with special requirements can reach 1000 MHz or more, and there are also non-nominal frequencies, such as CRB, ZTB, Ja, etc. The load capacitance refers to the sum of all the effective capacitances inside and outside the IC block connected by the two leads of the crystal oscillator, which can be regarded as the series connection capacitance of the crystal oscillator in the circuit. The different load frequency determines the different oscillation frequency of the resonator. For crystal oscillators with the same nominal frequency, the load capacitance may not be the same. Because the quartz crystal resonator has two resonant frequencies, one is a low-load capacitance crystal of a series resonant crystal oscillator, and the other is a high-load capacitance crystal of a parallel resonant crystal. Therefore, when the crystal oscillators with the same nominal frequency are exchanged, the load capacitance must be the same, and they cannot be exchanged rashly, otherwise, it will cause the electrical appliances to work abnormally. Frequency accuracy and frequency stability: Because the basic performance of ordinary crystal oscillators meets the requirements of general electrical appliances, certain frequency accuracy, and frequency stability are required for high-end equipment. Frequency accuracy varies from magnitude to magnitude. The stability varies from ±1 to ±100ppm. Choosing the appropriate crystal oscillator according to the specific equipment needs, such as communication network, wireless data transmission and other systems require a more demanding quartz crystal resonator. Therefore, the parameters of the crystal oscillator determine the quality and performance of the crystal oscillator. In practical applications, the appropriate crystal oscillator should be selected according to specific requirements. Because of the different prices of crystal oscillators with different performances, the higher the requirements, the more expensive the price. Generally, the choice only needs to meet the requirements. V. What’s the Difference Between Resonator and Oscillator? 5.1 General Difference Between Resonator & Oscillator The so-called resonator includes not only quartz crystal resonators but also ceramic resonators, LC resonators, and so on. A crystal oscillator is the abbreviation of the crystal oscillator. It is an oscillator component composed of a combination of a crystal resonator and a circuit, especially an oscillator component made of a quartz crystal. So the complete naming should be "Quartz Crystal Resonator" and "Quartz Crystal Oscillator". In addition, the resonator is a passive device, which requires a peripheral circuit to drive its work and generate a clock output. The oscillator is an active device with its own built-in circuit to provide a more stable clock output. A crystal oscillator is an oscillating circuit that uses a crystal as a frequency-selecting component. Compared with other oscillating circuits, it has the advantages of good frequency selection characteristics (high Q value) and high-frequency stability. The fundamental difference between a resonator and an oscillator is active and passive, which can also be said to be active and passive. The oscillator has one more control circuit than the resonator. Crystal resonators have some equivalent parameters, and different use environments may have different requirements. For example, some users require load capacitance C0 / C1. When selecting, consider the environmental temperature, load capacitance, frequency accuracy, and even DLD requirements. This requires some control of the parameters of the peripheral oscillator circuit to output a stable frequency. The crystal oscillator avoids these troubles. The oscillating circuit has been completed by the manufacturer, and only a stable power supply is needed to have a stable output. In addition, the oscillator has some auxiliary functions, such as voltage-controlled crystal oscillator (VCXO), temperature-compensated crystal oscillator (TCXO), constant temperature crystal oscillator (OCXO), etc. These oscillators can meet some precision controls that are difficult to achieve when directly using resonators. . The frequency accuracy of OCXO can reach the order of E-9. Secondly, the crystal oscillator is made of a crystal resonator, in order to be used as a signal carrier or timing on other components. To meet the requirements of the products produced. An oscillator is simply a frequency source and is generally used in a phase-locked loop. In detail, it is a device that can convert DC power into AC power without external signal excitation. Generally divided into two types: positive feedback and negative resistance. The so-called "oscillation", its meaning implies exchange, the oscillator includes a process and function from no oscillation to oscillation. It can complete the conversion from DC power to AC power. Such a device can be called an "oscillator." Any communication or electronic system should have a level value within a normal range at some given point. The components that are adjusted to the normal level value are amplifiers and attenuators. The point of excessively low level is the point where noise is introduced, and the point of excessively high level will cause overload and make the amplifying component appear intolerable nonlinear distortion. It is not difficult to understand the role of the attenuator. There are two types of attenuators: fixed and variable. 5.2 Pros and Cons Analysis of Resonator & Oscillator In this sector, we are going to analyze the pros and cons of crystal resonator and ceramic resonator, resonator, and oscillator. (1) pros and cons of crystal resonator and ceramic resonator The introduction of the crystal resonator has been mentioned above, so I won't repeat it here. Let's take a look at ceramic resonators. A ceramic resonator is a piezoelectric ceramic device used to oscillate at a specific frequency. The materials used to make such devices excite resonance characteristics during the production process. Because this resonance characteristic is within the production error range, and its quality factor is much lower than that of quartz, the frequency stability that ceramic resonators can provide is not as good as crystal resonators. Generally, ceramic resonators are used in occasions where the cost is low and the performance requirements are not high. Pros: Compared with crystals, the cost of ceramic resonators is only half that of crystals and the size is smaller. Cons: Compared with crystals, it lacks frequency and temperature stability. Its accuracy is poor, probably between 1% and 0.1%. (2) pros and cons of resonator and oscillator The oscillator is an energy conversion device that converts DC power into AC power with a certain frequency. The circuit formed by it is called an oscillator circuit. The oscillator is an active device. The oscillator has one more control circuit than the resonator. Oscillators are electronic components used to generate repetitive electronic signals (usually sine waves or square waves). The circuit formed by it is called an oscillating circuit. An electronic circuit or device that can convert direct current into an alternating current signal with a certain frequency. There are many types. According to the oscillation excitation mode, it can be divided into the self-excited oscillator and separately excited oscillator; according to the circuit structure, it can be divided into the resistance-capacitance oscillator, inductance-capacitance oscillator, crystal oscillator, tuning fork oscillator, etc.; according to the output waveform can be divided into It is a sine wave, square wave, sawtooth wave, and other oscillators. It is widely used in the electronics industry, medical treatment, scientific research, etc. Pros: The crystal oscillator signal quality is good, relatively stable, and the connection method is relatively simple (mainly to do a good job of power filtering, usually a PI filter network composed of a capacitor and an inductance is used, and the output terminal uses a small resistance resistor to filter the signal. Yes), no complicated configuration circuit is required. For applications with sensitive timing requirements, the performance of crystal oscillators is relatively good. Cons: Compared with the crystal resonator, the defect of the crystal oscillator is that its signal level is fixed, and the appropriate output level needs to be selected. It is less flexible and expensive. In addition, the quartz oscillator takes a long time to start. Volume: Compared with passive crystals, crystal oscillators are usually larger in volume. With the improvement of technology, some crystal oscillators are now surface-mounted, and the volume is comparable to crystal resonators. Summary: The typical initial accuracy of ceramic resonators is in the range of 0.5% to 0.1%, and drift caused by aging or temperature changes may change this accuracy range. The tolerances of cheap ceramic resonators are only ±1.1%, and the accuracy of higher-end automobiles is ±0.25% and ±0.3%, respectively. The future application lies in the automotive CAN (controller area network) bus application with an operating temperature of -40°C to +125°C. Low-cost ceramic resonators with frequencies ranging from 200 kHz to about 1 GHz are suitable for embedded systems that do not have strict timing requirements. Ceramic devices start faster and are generally smaller than quartz devices. They are also more able to withstand shock and vibration. FAQ 1. What does a resonator do? A resonators' sole purpose in life is to change a vehicle's engine noise before it reaches the muffler for a final decibel reduction. 2. What is a resonator in electronics? A resonator is a device or system that exhibits resonance or resonant behavior. ... Resonators are used to either generate waves of specific frequencies or to select specific frequencies from a signal. Musical instruments use acoustic resonators that produce sound waves of specific tones. 3. What does removing the resonator do? A resonator delete changes the way that the pulses generated by your vehicle move through the exhaust system. Think of this device as if it were a large echo chamber. It takes those pulses, optimizes their frequencies, and this makes it possible to achieve better power production. 4. Which is better muffler delete or resonator delete? If you want a louder and lighter vehicle, you'll be better off with the muffler delete. If you're after a good sound and a little more power, the resonator delete is the way to go. ... After all, the difference between a resonator delete and muffler delete isn't that significant. 5. What is difference between crystal and resonator? The ceramic resonator utilizes a frequency within the electrical component but unlike the crystal which has a frequency tolerance of 10~30 PPM , a ceramic resonator carries a 0.5% or 5,000 PPM frequency tolerance which is generally used in microprocessor applications where absolute stability is not important. 6. Is intake resonator necessary? An air intake resonator is a crucial component to an automobile engine's intake system. It allows the engine to run more quietly as well as more efficiently. ... An air intake resonator is a crucial component to an automobile engine's intake system. It allows the engine to run more quietly as well as more efficiently. 7. Do resonators restrict airflow? Magnaflow resonators dont restrict flow at all, its just like adding a section of straight pipe as they are straight through. magnaflow's design uses no chambers, but rather a perforated straight pipe surrounded by a sound-absorbing material. 8. Which is the best frequency for a noise resonator? The resonator is designed to work best in the frequency range where the engine makes the most noise; but even if the frequency is not exactly what the resonator was tuned for, it will still produce some destructive interference. 9. Will a resonator quiet my exhaust? Mufflers and resonators work together to quiet your car's exhaust and reduce annoying sounds. While they function differently, they both help improve your exhaust note. Mufflers and resonators can also be deleted for a louder, more aggressive exhaust sound. 10. Does removing the resonator increase horsepower? As a rule; the quieter an exhaust system is, the more horsepower it is stealing from your engine. ... Removal of all mufflers and resonators will provide slightly greater increases but remember as the restrictions are removed the exhaust grows louder.
kynix On 2021-05-19
Introduction How to Read an Electrical Diagram Lesson What is a circuit Diagram? Circuit diagram is the basic of engineering research and planning. A schematic layout diagram, which is drawn with the standard symbol of physical electricity, can show the working principle of each component and device relationship, Each electronic component has a symbol. After seeing a few circuit diagrams, you’ll quickly learn how to distinguish the different symbols, and provide planning plan for installing electrons or electrical products. Circuit diagram is one of the basic skills that must be learned by electronic engineers. So this paper gathers the classical circuit materials related to regulated voltage power supply, DCDC conversion power supply, switching power supply, charging circuit, constant current source to provide the most practical circuit diagram reference for engineers. Schematic Symbols Basic Devices A resistor is a passive two-terminal electrical component that implements electrical resistance as a circuit element. In electronic circuits, resistors are used to reduce current flow, adjust signal levels, to divide voltages, bias active elements, and terminate transmission lines, among other uses. An inductor, also called a coil, choke, or reactor, is a passive two-terminal electrical component that stores energy in a magnetic field when electric current flows through it. An inductor typically consists of an insulated wire wound into a coil around a core. An electric battery is a device consisting of one or more electrochemical cells with external connections provided to power electrical devices such as flashlights, smartphones, and electric cars.[1] When a battery is supplying electric power, its positive terminal is the cathode and its negative terminal is the anode.[2] The terminal marked negative is the source of electrons that will flow through an external electric circuit to the positive terminal. A relay is an electrically operated switch. Many relays use an electromagnet to mechanically operate a switch, but other operating principles are also used, such as solid-state relays. Relays are used where it is necessary to control a circuit by a separate low-power signal, or where several circuits must be controlled by one signal. Five Parts to Understand Circuit Diagrams *Regulated Power Supply 1. The voltage adjustable range is between 3.5V~25V, the output current is large, using VR- tube circuit to obtain the stable output voltage. Working principle: after rectifying and filtering, DC voltage is supplied by R1 to the base of the adjusting tube, so that the adjusting tube can be switched on. When the voltage passes through the RP, R2 of the V1 conduction, V2 switched on, and then V3 is switched on. At this time, the emitter and collector voltage of V1, V2 and V3 do not change (it acts exactly like a voltage stabilizer). A stable output voltage can be obtained by adjusting RP, and the ratio of R1, PR, R2 to R3 determines the output voltage of the circuit. T: 80W~100W Input: AC220VOutput Duplex Winding: AC28VRP: 1W (resistance: 250K~330K)FU1: 1A FU2: 3A~5A VD1 | VD2: 6A02C4: 470µF/35V(electrolytic capacitor)C1: 3300µF / 35VC2 | C3: 0.1µF (MONO CAP)R1: 180~220Ω / 0.1W~1W Fig 1. VR-tube Circuit 2. Regulated Voltage Adjustable Power Supply Circuit Diagram Whether the computer detection or electronic product can not be separated from the regulated power supply(RPS). This paper introduces one kind of RPS: a DC voltage continuously adjustable from 3V to 15V, the maximum current can be up to 10A, and the circuit uses a high precision standard voltage source integrated circuit (TL431) with temperature compensation which makes the voltage stabilizer more accurate. If there is no special requirement, it can basically meet the normal maintenance. The circuit is shown in the figure below. Fig 2. Regulated Voltage Adjustable Power Supply Circuit Diagram Its working principle is divided into two parts. The first part is a fixed 5V/1.5A power supply circuit; the second part is a high precision and large current regulator circuit which can be adjusted continuously from 3V to 15V. The first circuit is very simple. The DC voltage rectified by silicon bridge QL1 is filtered by C1 from the secondary 8V AC voltage of transformer, then the 5V three-terminal stabilizer block LM7805 can produce a fixed 5V | 1A power supply at the output end without any adjustment. This power supply can be used as an internal power source when the computer board is overhauled. The second part is basically the same as the common series power supply. The circuit is simple, the cost is low, but the voltage stabilizer performance is very high. The resistor R4, the regulator TL431, potentiometer R3 constitutes a continuously adjustable constant voltage source, which provides the reference voltage for the BG2 base. The regulated voltage value of the regulator TL431 is continuously adjustable, which determines the maximum output voltage of the power supply. If you want to expand the range of adjustable voltage, you can change the resistance values of R4 and R3, of course, the secondary voltage of transformer should also be increased. The power of the transformer can be controlled flexibly according to the output current, and the secondary voltage is about 15 V. Bridge rectifier QL, using 15A-20A silicon bridge, compact structure, fixed screws in the middle, can be directly fixed on the shell aluminum plate, better for heat sink. What adjusts the tube is the high current NPN metal shell silicon tube, because it has the very big heat, if the chassis allows, buying the big radiator as far as possible to expand the heat dissipation area; if does not need the big current, a smaller power silicon tube can be used to makes it smaller. The filter uses three 50V/4700uF electrolytic capacitance C5 and C7 in parallel, respectively, to make the output of large current more stable. In addition, this capacitor should be bought with a relatively larger volume, and those smaller ones will also mark 50V/4700uF, but the voltage fluctuates frequently, Or easy to fail for a long time lay idle. Finally, the power transformer can buy a ready-made switching power supply of more than 200W instead of the transformer. In this way, the voltage stability can be further improved, but the manufacturing cost is not too high, and other electronic components have no special requirements. After installation is completed, it can work properly without too much adjustment. *Switched Power Supply(specific examples) The working principle of integrated control IC-UC3842 for PWM switching power supply The following is the UC3842 internal block diagram and pin diagram. UC3842 uses a fixed frequency pulse width controllable modulation mode, a total of 8 pins, each foot function as follows: Pin① is the output of the error amplifier, and the external resistor-capacitor unit is used to improve the gain and frequency characteristics of the error amplifier; Pin② is the feedback voltage input, which is compared with the 2.5 V reference voltage at the same phase of the error amplifier to generate the error voltage, thus controlling the pulse width; Pin③ is the current detection input, when detecting voltage exceeds 1V, the pulse width is reduced so that the power supply is in the state of intermittent operation; Pin④ is the timing end, the operating frequency of the internal oscillator is determined by the external resistor-capacitor time constant, f=1.8 / (RT×CT); Pin⑤ is the common ground; Pin⑦ is a DC power supply terminal with the function of undervoltage and overvoltage locking, the chip power consumption is 15mW. Pin⑧ is the output terminal of 5V reference voltage, its load capacity is 50mA. Fig 3. IC-UC3842 Electrical Diagram UC3842 Internal Schematic Diagram UC3842 is an integrated controller of PWM switching power supply with excellent performance, wide application and simple structure. Because it has only one output, it is mainly used for voice control. The UC3842 pin7 is a voltage input with a starting voltage range of 16V-34V. When the power supply is on, the VCC is less than 16V, and the output of the Schmidt comparator is 0. At the same time, no reference voltage is generated and the circuit does not work. When Vcc > 16V, the input voltage Schmidt comparator sends out a high voltage to the 5V fern voltage regulator, which generates a 5V reference voltage. On the one hand, this voltage used in internal circuit; on the other hand, it provides a reference voltage to the outside through pin8. Once the Schmidt comparator flips to a high level (when the chip starts working), Vcc can change in the 10V-34V range without affecting circuit; when the Vcc is below 10V, the Schmidt comparator flips to a low level and the circuit stops working. When the reference voltage stabilizer has a 5V reference voltage output, the reference voltage detection logic comparator outputs a high level signal to the output circuit. At the same time, the oscillator will generate the oscillation signal of the f=Rt/Ct according to the parameters of the pin④ external Rt and Ct, which is added directly to the input of the totem pole circuit, the other is added to the position end of RS flip-flop made by PWM pulse width modulator, and the output end of R connects the output of current-detection comparator. The R-terminal is the control end of the duty ratio. When the R voltage rises, the Q pulse is widened. At the same time, the pulse width of pin⑥ is widened (duty cycle increased); when the R voltage drops, The Q pulse narrows and the pin⑥ pulse width becomes narrow (duty cycle reduced). The sequence of UC3842 points is as shown in the diagram. Only when the E point is in high level, and meanwhile, a point and b point is all in high level, the d point sends out the high level, the c point sends the low level, otherwise the d point sends the low level, c point sends out the high level. Pin② generally connects the feedback signal. When the pin②voltage increases, the pin① voltage will decrease, and the R-terminal voltage will also decrease, so the pin⑥ pulse will narrow, on the contrary, the pin⑥ pulse will become wider. Pin③ is a current sensing terminal. Usually, a small sample resistor is inserted into the source or emitter of the power transistor to convert the current passing through the switch to a voltage, and the voltage is introduced into the pin. When the load short circuit or other reasons cause the current of the power transistor to increase and the voltage on the sampling resistance exceeds 1V, the pulse output pin⑥ is stopped, which can effectively protect the power transistor from damage. Fig 4. UC3842 Internal Schematic Diagram TOP224P 12V | 20W Switching DC Power Supply Circuit Based on Regulated Voltage Two integrated circuits are used in the circuit: TOP224P three-terminal monolithic switching power supply (IC1) and PC817A linear optical coupler (IC2). After UR and Cl rectifier filter, AC power supply produces DC high voltage Ui, to supply primary winding of high frequency transformer T. VDz1 and VD1 can clamp the peak voltage of leakage inductance to the safe value and can attenuate the ringing voltage. VDz1 adopts P6KE200 type transient voltage suppressor with reverse breakdown voltage 200V, and VDl uses UF4005 type UFRD in 1A/600V. The secondary winding voltage is filtered by V, C2, L1 and C3 rectifier, getting 12V output voltage Uo. Uo value is set by the sum of the forward voltage drop UF, R1 of LED and the value of regulated voltage Uz2. Other output voltage values can be obtained by changing the turn ratio of high frequency transformer and the regulated voltage value of VDz2. R2 and VDz2 also provide a false load for 12V output to improve the load adjustment rate at light load. The feedback winding voltage is filtered by VD3 and C4 rectifier to supply the bias voltage required by TOP224P. Since the control current is regulated by R2 and VDz2, the output duty cycle is changed to stabilize the voltage. The common mode choke L2 can reduce the common mode leakage current generated by the waveform of the high voltage switch connected to the D by the primary winding. C7 is a protective capacitor used to filter out interference caused by coupling capacitors of primary and secondary windings. C6 can reduce the differential mode leakage current caused by the fundamental and harmonic waves of the primary winding current. C5 can not only filter the peak current added to the control terminal, but also determine the self-starting frequency, compensating the control loop with R1 and R3. Fig 5. TOP224P 12V | 20W Switching DC Power Supply Circuit The Main Technical Specifications of This Power Supply are as Follows AC Voltage: u=85~265V Voltage Regulation: η=78% Grid Frequency: fLl=47~440Hz Input Voltage (Io=1.67A): Uo=12V Working Temperature: TA=0~50℃ Maximum Output Current: IOM=1.67A Maximum Output Ripple Voltage: ±60mV Continuous Power Output: Po=20W /TA=25℃ or 15W /TA=50℃) *DC-DC Power Supply 3V→+5V or +12V Circuit Portable electronic products powered by batteries generally use low power supply voltage, which can reduce the number of batteries and product size. In order to ensure the stability and accuracy of the circuit, it is necessary to use a regulated power supply. If the circuit uses 5V working voltage, but one component requires a higher working voltage, this often makes the designer feeling hard. In this paper, a circuit composed of two booster modules is introduced to solve this problem, and only two batteries are used to supply power. The circuit has fewer components, small size, light weight, stable output of 5V or 12V, and meets the requirements of portable electronic products. +5V power supply can output 60mA, and +12 V power supply maximum output current is 5 mA. Fig 6. 3V→+5V or +12V Circuit The circuit is shown above. It is composed of AH805 and FP106 booster module. AH805 is a kind of boost module with an input of 1.2V~3V and an output of 5V, which can output 100mA current at 3V. FP106 is a chip boost module with input of 4V~6V and output fixed voltage of 29 ±1V, the output current up to 40 mA. AH805 and FP106 are both a level-controlled to shut down the power. The output voltage of two 1.5V alkaline batteries is 3V, inputting to the AH805, and its output voltage is 5V, inputting 5V to the FP106, and the output voltage is 28V~30V, and then the output voltage is 12 V after through the voltage stabilizer. It can be seen from the diagram that different output voltages can be obtained by changing the stabilizer voltage. Pin⑤ of FP106 is the closing end of controlling the power supply. When Pin⑤ is added a high level > 2.5V, the power supply is switched on; When adding the low level is less than 0.4V, the power supply is off. It can be controlled by circuit or manually. If it is not necessary, Pin⑤ is connected to Pin⑧. MC34063 3.6V→9V Circuit Working State: No-load: Output 3.65V| 18uA Load: Output 9.88V | 50.2mA; Input 3.65V | 186.7mA, efficiency 72% Working Principle: When there is no load, the IC has no power on pin⑥ and stops working. The input current is only 18uA with input 3.65V. When there is a load (Q1 has Ieb current), the EC pole of 8550 is switched on and the IC is operating. Whether the IC works is determined by whether there is a load or not, it is quite a battery. Using IC has a high voltage conversion efficiency and output stably. If this circuit adds a point of improvement, for example, when increasing power, it can turn into a power supply from 4.2V to 5V without switch. You can use a battery box as a backup power source for your phone. Fig 7. MC34063 3.6V→9V Circuit *Charging Circuit lm358 basic Battery Charger Circuit Diagram Fig 8. lm358 basic Battery Charger Circuit Diagram There are two different arguments about whether alkaline batteries can be recharged. Some can be filled; the other say it has a risk of explosion. In fact, alkaline batteries can be rechargeable, generally 30-50 times of its service life. In fact, due to the charging methods, there are two different consequences. First of all, there is no doubt that alkaline batteries can be rechargeable, and in the battery instructions, it is mentioned that alkaline batteries are not rechargeable and that charging can lead to explosions. That's true, but note that the word is "could". Actually, it can be viewed as a manufacturer's self-protection statement of exemption. The key to charging alkaline batteries is temperature. As long as you can charge the battery without high temperature, you can successfully do it. The right charging method requires several points: small current: 50mA charge 1.7V discharge 1.3V After some people tried charging practice, they said categorically that they could not recharge. The reason for the problems such as lack of charging, short electricity consumption, leakage, explosion, actually, most are charger problems. If the charging current of the charger is too large, far more than 50 ma, and some fast chargers is above 200ma, the direct result is that the temperature of the battery is very high. If the battery is hot, the batteries will leak, and the serious will explode. Some people use Ni-MH rechargeable battery charger to charge, low grade charger does not automatically stop charging function, after long time charging will lead to overcharge then causing battery leakage and explosion. A better charger has the function of automatic shutdown, but the stop charge voltage is generally set to 1.42 V of the Ni-MH rechargeable battery, while the voltage of the alkaline battery is about 1.7V when it fully charged. As a result, the voltage is too low which causing fake charge. And not to wait until the battery is completely out of power to charge, it will lead to poor lifetime of the battery. It is recommended that the voltage of alkaline battery is not less than 1.3V. Therefore, if you plan to charge the alkaline battery, you must have a qualified charger, charging current around 50mA, and charging cut-off voltage is about 1.7V. Related Description Alkaline manganese rechargeable battery: based on alkaline zinc manganese battery, it is also called mercury-free alkaline manganese battery because of the use of mercury-free zinc powder and new additives. The battery can be recharged for dozens to hundreds of times without changing the discharge characteristics of the alkaline battery, which is more economical. Alkaline zinc-manganese battery was developed in 1882. It was developed in 1912 and put into production in 1949. It has been found that when KOH electrolyte solution replaces NH4Cl as electrolyte, both the electrolyte and the structure change greatly, its performance improved significantly. Features Open voltage is 1.5V Working temperature is between -20℃ to 60℃, it is suitable in alpine region. The capacity of high current continuous discharge is about 5 times that of acid zinc-manganese battery. 2.75W USB Charger This design adopts Power Integrations's LinkSwitch series product LNK613DG. This design is well suited for mobile phones or similar USB charger applications, including mobile phone battery chargers, USB chargers, or any application with constant voltage or constant current. In the circuit, the diode D1 to D4 rectifies the AC input, and the capacitors C1 and C2 filter the DC. The L1, C1 and C2 form a π type filter to attenuate the differential mode conduction EMI noise. These are connected by E-sheild technology of Power Integrations transformers. This design can easily meet the requirements of EN55022 B-type conduction EMI with sufficient margin, and no Y capacitor is required. Fire proof, fusible, winding resistor RF1 provides fault protection and limits surge current generated during startup. Fig 9. 2.75W USB Charger Circuit Fig 9 shows that U1 is powered by optional offset power, which reduces no-load power to less than 40 mW. The value of by-pass capacitance C4 determines the number of cable voltage drop compensation. The value of 1μF corresponds to the compensation of a 0.3Ω / 24 AWG USB output cable. (10μF capacitance compensates 0.49 Ω / 26 AWG USB output cable.). In the constant voltage stage, the output voltage is regulated by switch control. The output voltage is maintained by skipping the switching cycle. By adjusting the ratio of the prohibition period to maintain voltage regularly. This also optimizes the efficiency of the converter throughout the load range. Under the condition of light load (trickle charge), the current limit will be decreased to reduce the magnetic flux density of the transformer, thus reducing the audio noise and switching loss. With the increase of load current, the current limit will increase, and the skipping period will be reduced continuously. When no longer skipping any switching period (maximum power point), the controller in the LinkSwitch-II switches to constant current mode. When the load current needs to be further increased, the output voltage will decrease, and it reflects in the FB pin voltage. In response to the voltage drop of the FB pin, the switching frequency will decrease linearly to achieve constant current output. The RCD-R clamping circuit is composed of D5, R2, R3 and C3, which is used to limit the leakage voltage spike caused by leakage inductance. Resistance R3 has a relatively large value to avoid drain voltage waveform oscillations caused by leakage inductance, which prevents excessive oscillation during turn-off, thus reducing EMI conduction. Diode D7 rectifies secondary and C7 filters it. C6 and R7 together limit the transient voltage spike on D7 and reduce EMI conduction and radiation. The resistor R8 and Zener diode VR1 form an false output load which ensures that the output voltage is within an acceptable limit and that the battery does not discharge completely when the charger is off. Feedback resistors R5 and R6 set maximum operating frequency and output voltage at constant voltage stage. *Constant-Current Source 1. Discussion on How to Design Three-wire Constant Current Source Driving Circuit The constant current source drive circuit is responsible for driving the temperature sensor Pt1000, to convert its sensing resistive signal with temperature into measurable voltage signal. In this system, the required constant current source should have good temperature stability, large output resistance, output current less than 0.5mA (upper limit of Pt1000 without self-heating effect), earthing at one end of load, and variable polarity of output current. Because the influence of temperature on the parameters of integrated operational amplifier is less significant than of the transistor or FET, the constant current source composed of integrated operational amplifier has the advantages of better stability and higher constant current performance. Especially in the case where one end of the load needs grounding, it has been widely used. So use the dual operational amplifier constant current source shown in figure 2. Amplifier UA1 is used as adder, UA2 as follower, UA1 and UA2 are gain bipolar operational amplifier OP07, which having low noise, low misalignment and high open-loop. Fig 10. Three-wire Constant Current Source Driving Circuit Vb and Va are the up and down potential of the reference resistor Rref in figure 2: Va is the output of in-phase adder UA1. When taking the resistor R1= R2 , R3=R4, the output current of the Va=VREFx+Vb. It can be seen that the dual operational amplifier constant-current source has the following remarkable characteristics: Load earthing The output current is bipolar when the operational amplifier is supplied by a dual power source. The constant current can be achieved by changing the input reference VREF or adjusting the reference resistor Rref0. It is easy to obtain stable small current and compensation calibration. Because of the mismatch of the resistor, the voltage at both ends of the reference resistance Rref0 will be affected by the terminal voltage Vb of its driving load. At the same time, as a constant current source, Vb will definitely change with the load, which will affect the stability of the constant current source. Therefore, the four resistors R1, R2, R3, R4 are chosen according to the principle that the mismatch should be as small as possible, in addition, the mismatch direction of each pair of resistors should be consistent. In practice, a large number of precision resistors of the same batch can be screened, and 4 resistors with close resistance values can be selected. 2. High Voltage Constant Current Source Circuit Diagram(switch power model) The instrument needs a constant current source that can generate 1mA current on 0 to 3 megabytes ohmic resistance. A design composed with 12V storage battery and UC3845 has be made: the transformer uses a color TV high voltage packet, in which L1 enamelled wire is wound 24 turns on the core of the original high voltage package; L3 uses a coil of the original high voltage package and L2 with the high voltage part of the high voltage packet; L3 and LM393 constitute a voltage limiting circuit which limits the output voltage too high and adjusts the open-circuit output voltage by adjusting R10. Fig 11. High Voltage Constant Current Source Circuit Diagram(switch power model) You May Also Like Filtering Circuit Tutorial (Schematic Diagrams) Switch Mode Power Supply Circuit Design Tutorial Selection Guidance of Five Main Materials for Flexible Circuit Board Production Recommendation MC34063A SOP8 LM7805A UC3842AD FAQ 1. What are the basic elements of electronics?When building electronic circuits, you will work with a number of basic electronic components, including resistors, capacitors, diodes, transistors, inductors and integrated circuits. 2. What is the schematic symbol represented in the electrical and electronic diagram?It is also called a schematic symbol. Each component has typical functionality according to its operational characteristics. An electronic circuit or schematic drawing uses a wired path between electronic components to complete the circuit. These components are represented by respective symbols for it. 3. What are the 5 components of electricity?The Basics of Electrical ComponentsResistors. The very first component that you should know about is the resistor.CapacitorsLight Emitting Diode (LED)TransistorsInductorsIntegrated Circuit (IC) 4. What are the types of electronics?Electronics has branches as follows:Digital electronicsAnalogue electronicsMicroelectronicsCircuit designIntegrated circuitsPower electronicsOptoelectronicsSemiconductor devices 5. What are the different schematic symbols?Schematic Symbols:Wires (Connected)Wires (Not Connected)DC Supply VoltageGroundNo Connection (nc)ResistorCapacitor, Polarized (Electrolytic)Light-Emitting Diode (LED) 6. What are the electrical diagrams?Image result for Electrical DiagramElectrical diagrams are drawings which are used to represent electrical circuits, these circuits are represented by using lines, symbols, and number combinations. Electrical diagrams show the wiring between components and the relative position of the components. 7. What are the three types of electrical diagrams?There are three ways to show electrical circuits. They are wiring, schematic, and pictorial diagrams. The two most commonly used are the wiring diagram and the schematic diagram. 8. What are the four types of electrical diagram?Image result for Electrical DiagramSome of these electrical drawings or diagrams have been described below.Block DiagramSchematics Circuit DiagramSingle Line Diagram or One-line DiagramWiring DiagramPictorial DiagramLadder Diagram or Line DiagramLogic DiagramRiser Diagram 9. What are the 2 main types of electricity?Current electricity is a constant flow of electrons. There are two kinds of current electricity: direct current (DC) and alternating current (AC). 10. What are the 2 types of electric circuit?Types of Electric CircuitsThere are two types of circuits found in homes and other common devices; namely series circuits and parallel circuits. 11. What is electrical block diagram?Block Diagram – A block diagram shows the major components of electrical or mechanical interrelations in block, or square or rectangular, form. The lines between the blocks represent the connections between the systems or components. 12. What are the 4 basic components of a circuit?Every electric circuit, regardless of where it is or how large or small it is, has four basic parts: an energy source (AC or DC), a conductor (wire), an electrical load (device), and at least one controller (switch). Visualize what happens when you switch on a room light. 13. What is type of wiring diagram?Schematic Diagrams often called a ladder diagram, is intended to be the simplest form of an electrical circuit. This diagram shows the circuit components on horizontal lines without regard to their physical location. It is used for troubleshooting because it is easy to understand the operation of the circuit. 14. What is the main purpose of electrical diagram?Electrical drawings, sometimes referred to as wiring diagrams, are a type of technical drawing that provide visual representation describing electrical systems or circuits. They are used to explain the design to electricians or other workers who will use them to help install or repair electrical systems. 15. Which software is used for electrical design?Top 8 Software For Electrical EngineersAutoCAD ElectricalPLC ProgrammingSCADA SoftwareAC/DC Drive SoftwareProteus And PspiceOrCADXilinxKeil
kynix On 2018-11-23
Join our mailing list!
Be the first to know about new products, special offers, and more.
Feature Posts
How Resistors Work: From Basic Principles to Advanced Applications2025-07-30
DC Switching Regulators: Principles, Selection, and Applications2025-05-30
FPGA vs CPLD: In-depth Analysis of Architecture, Performance and Application2025-05-07
MOSFET Technology: Essential Guide to Working Principles & Applications2025-05-04
SMD Resistor: Types, Applications, and Selection Guide2025-04-30