The Kynix Blog
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
- PCB
- transistor
Warm hints: The word in this article is about 4000 words and reading time is about 20 minutes.SummaryThe clock is the most important and special signal in the entire circuit. The movement of most of the devices in the system is performed on the edge of the clock. This requires that the delay of the clock signal is very small, otherwise it may cause an error in the timing logic. Therefore, it is very important for the design of FPGA to determine the factors of system clock and the delay of clock to ensure the stability of design. CoreClock in FPGA designPurposeDetermining the influencing factors of clock to ensure the stability of designEnglish nameField Programmable Gate ArrayCategoryDigital electronic circuitFunctionCreating digital circuitsFeatureTotally up to the designer to create a bit fileCatalogsCatalogsⅠ. What is Setup time and Hold timeⅢ. Analyzing with the help of timing diagram3. The composition of the state machine1. Synchronization between single bits and each pulse transmitted has at least 1 cycle width1. Setup timeⅣ. How to increase the clock working frequencyⅤ. An example showing a good method for state machine design2. The input pulse could be less than a synchronous circuit under a clock cycle width 2. Hold time1. Changing the line type for circuit wiringⅥ. The introduction of state machine Ⅱ. A basic model of synchronous design using a single clock2. Splitting the combinational logicⅦ. What we should pay attention when designing the clock in FPGA IntroductionⅠ. What is Setup time and Hold timeThe clock is the most important and special signal in the entire circuit. The movement of most of the devices in the system is performed on the edge of the clock. This requires that the delay of the clock signal is very small, otherwise it may cause an error in the timing logic. Therefore, it is very important for the design of FPGA to determine the factors of the system clock and the delay of the clock to ensure the stability of the design.Learn how a clock drives all sequential logic in FPGA, from Flip-Flops to Block RAMs; The clock tells you how fast you can run your FPGA;This video demonstrates how to properly deal with multiple clock domains inside your design.1. Setup timeSetup time(Tsu) is defined as the minimum amount of time before the clock's active edge that the data must be stable for it to be latched correctly. Any violation may cause incorrect data to be captured, which is known as setup violation.2. Hold timeHold time(Thd) is defined as the minimum amount of time after the clock's active edge during which data must be stable. Violation in this case may cause incorrect data to be latched, which is known as a hold violation. Note that setup and hold time is measured with respect to the active clock edge only.Figure 1 Shows setup time and hold timeFigure 2 If data will change in tsu then it will cause setup violation and if data will change in thd then it will cause hold violation DtailⅡ. A basic model of synchronous design using a single clockIn the same module of FPGA design, it often contains the combinational logic and the sequential logic. In order to guarantee the data in this logic interface can be processed steadily, then figuring out the concept of setup time and hold time is very important. Then we could be able to think about this following question:Figure 3 Shows a basic model of synchronous design using a single clockTco: Delay of the data output of the trigger;Tdelay: Delay of the combinational logic;Tsetup: The trigger's setup time;Tpd: Delay of the clock (negligible).T: clock cycleT3: D2 setup timeT4: D2 hold timeIf the first trigger D1 has a maximum setup time of T1max and a minimum of T1min, the combinational logic has a maximum delay of T2max and a minimum of T2min. The question is what conditions setup time T3 and hold time T4 of the second trigger D2 should be met, or what the maximum clock cycle given T3 and T4. This is the thing must be carefully considered in the process of design, because only by clarifying this issue can we ensure that the delay of the combinational logic designed meets the requirements.Ⅲ. Analyzing with the help of timing diagramNow let us analyze this question with the help of timing diagram: let the input of the first flip-flop be D1, the output be Q1; the input of the second flip-flop be D2, the output be Q2;Given the clock is uniformly sampled on the rising edge, for ease of analysis we would discuss two cases, the first one: Assume that the delay of the clock Tpd is zero, which in fact, is often met in the FPGA design where the unified system clock it is generally adopted and the clock be input through the global clock pin, therefore the internal clock delay can be completely ignored. In this case, it is not necessary to consider the hold time, because each data maintains one clock tick while there is also delay line, that is, the delay based on CLOCK is much smaller than the delay based on data, so the hold time can meet the requirement. The setup time is what we should care about. If the setup time D2 meets the requirement, the timing diagram should be as shown as Figure 4.Figure 4 Shows the timing chart that meets the requirementsFrom the figure 4 we can see:T-Tco-Tdelay>T3That is Tdelay< T-Tco-T3During the setup time D2, the signal can reach D2 through the combinational logic D1, i.e. the data is already in Tsup before the second CLK arrive.Then it meets the requirement of setup time, where T as the clock period, the second flip-flop can pick up D2 on the rising edge of the second clock in this case. {D1 => setup time => hold time => trigger data output delay => combinational logic delay => D2 => ...}If the delay time of the combinational logic is too largeT-Tco-Tdelay < T3 (Tcox<D2 setup time)Then it will not meet the requirements. The second trigger will pick up an unstable state on the rising edge of the second clock, as shown in Figure 5, then the circuit will not work properly.Figure 5 The delay time of the combinational logic is too large to meet the requirementsSo you can deriveT - the Tco - T2max > = T3This is the setup time for D2.From the timing diagram above, it also can be seen that the setup time and hold time of D2 are not related to the setup and hold time of D1, except the combinational logic in front of D2 and the data transmission delay of D1. This is also a Very important conclusion, which shows that the delay has no additive effect.However, if there is a delay in the clock instead, the hold time must be considered in this case, together with the setup time. Most clocks with large delays are designed using asynchronous clocks, which is difficult to guarantee the data synchronization, so it is rarely used in actual designs. At this point, if the setup time and hold time all meet the requirements, you will see the output timing as shown in Figure 6.Figure 6. Clock has a delay but meets the timingIt can be easily seen from figure 5 that the Tpd is relaxed for the setup time, so the setup time of D2 must meet the requirements:Tpd+T-Tco-T2max>=T3 (T3 is the setup time of D2, T2max is the maximum delay of combinatorial logic, Tpd is the clock delay)As shown in the FIG. 6, since the sum of setup time and hold time is a stable clock period (T), if the clock has a delay and the data delay is small, then the setup time will increase inevitably, and the decrease of hold time goes with it. If it is reduced to not meet the requirement of hold time D2 , the correct data cannot be collected.That is T-(Tpd-Tco-T2min)T-(Tpd+T-Tco-T2min)>=T4 i.e. Tco+T2min-Tpd>=T4 (D2 hold time )From the formula above we could also figure out that if Tpd = 0, that is to say the delay of the clock is 0, then the same requirements goes with Tco + T2min> T4, however in practical applications the delay of T2 i.e. the delay of line is much larger than the trigger's hold time T4, it becomes not necessary to take the hold time into consideration.Figure 7 The clock has a delay and the hold time does not meet requirementsIn summary, if you do not consider the delay of the clock, the only thing you need to care about is the setup time, or the hold time instead. Then let us think about in FPGA design, how to increase the working clock in the synchronous system. AnalysisⅣ. How to increase the clock working frequencyFrom the above analysis, we can see that the requirements of setup time T3 for the D2 in the synchronization system is as follows:T-Tco-T2max>=T3So it is easy to derive:T>=T3+Tco+T2maxwhere T3 is the setup time Tset of D2, and T2 is the delay time of the combinational logic. In a design, T3 and Tco are both fixed values determined by the device, the only factor that we could control is the input delay of the combination logic T2. Therefore, by reducing T2 as much as possible, the clock working frequency can be increased. In order to achieve the reduction of T2 in the design, there are different comprehensive methods we can use.1. Changing the line type for circuit wiringAltera devices, for example, there are many bars in the quartus timing closure floorplan, so we can slice and dice them into rows and columns: Each bar represents 1 LAB, each LAB has 8 or 10 LEs in. The relationship of their routing delay is as follows: the same LAB (fastest) < the same row and column < different row and column. We could add appropriate constraints to the synthesizer (this should be given appropriate, generally 5% margin adding, for example, if the circuit works at 100Mhz, then adding constraints to 105Mhz is sufficient, because the excessive constraint could do a bad effect instead, and greatly increases the integration time) to make the relevant logic circuit wiring be placed as close as possible, thereby reducing the routing delay.2. Splitting the combinational logicSince the general synchronous circuits are more than a?single?stage latch (as shown in Figure 9), and to make the circuit stable, the clock period must meet the maximum delay requirement, and the maximum?delay of the longest path can be shortened before the operating frequency of the circuit be increased.As shown in Figure 8, we can decompose the larger combinatorial logic into smaller blocks and insert flip-flops in the middle, which can increase the operating frequency of the circuit. This is also the basic principle of the so-called "pipelining" technology.For the upper part of Figure 9, its clock frequency is subject to the delay of the second larger combinational logic. By appropriately distributing the combinational logic, excessive delay between the two flip-flops can be avoided and speed bottlenecks can be eliminated.Figure 8 Splitting combination logicFigure 9 Transferring Combination LogicHow to split the combinatorial logic in design, the better method should be accumulated in practice, but some good design ideas and methods also need to be mastered. We know that at present most of the FPGAs based on 4-input LUTs, if an output criteria corresponding is more than four inputs, then the multiple LUT cascade will be needed, thus introducing the delay of one-stage combinational logic. That is we want to reduce the number of combinational logic, the logic is nothing more than to make the input conditions as few as possible, so that less multiple LUT cascade need to be use, thereby reducing the time delay caused by combinational logic.The pipelining that we usually hear is a way to increase the operating frequency by splitting a large combinational logic (in the middle of which a singer or multiple stages of D flip-flops are inserted, thereby reducing the number of combinatorial logic between registers) to a smaller one. For example, a 32-bit counter, with a very long carry chain, will inevitably reduce the operating frequency, so we can split it into a 4-bit and a 8-bit one, whenever the 4-bit counter counts to 15 and triggers an 8-bit one, which enable the counter to be split and increases the operating frequency.Just as the same, large counters are generally moved out of the state machine, because if they, with usually more than 4 inputs, are used as state transition criteria with other conditions, they will increase the multiple LUT cascade, and then increasing the combination logic.Taking a 6-input counter as an example, we wanted to make a state transition after the counter counted to 111100, now because we put the counter out of the state machine, when it counts to 111011, a signal of "enable" is generated and then trigger the state transition, which obviously reduces the combinatorial logic.3. The composition of the state machineThe state machine generally contains three modules:An output moduleA module that determines what the next state isA module that saves the current stateThe logic used to form these three modules is also different. The output module usually contains both combinatorial logic and sequential logic; the module that determines the next state is usually composed of combinatorial logic; and the module that saves the current state is usually composed of sequential logic. The relationship between these three modules is shown in Figure 10.Figure 10 The composition of the state machineⅤ. An example showing a good method for state machine designThat is why when writing the state machine, the state machine is always divided into three parts according to these three modules. The following example shows a good method of state machine design: -----------------------------------------------------*/module arbiter2 ( clock , // clock reset , // Active high, syn reset req_0 , // Request 0 req_1 , // Request 1 gnt_0 , gnt_1 );//-------------Input Ports-----------------------------input clock ;input reset ;input req_0 ;input req_1 ;//-------------Output Ports----------------------------output gnt_0 ;output gnt_1 ;//-------------Input ports Data Type-------------------wire clock ;wire reset ;wire req_0 ;wire req_1 ;//-------------Output Ports Data Type------------------reg gnt_0 ;reg gnt_1 ;//-------------Internal Constants--------------------------parameter SIZE = 3 ;parameter IDLE = 3'b001 , GNT0 = 3'b010 , GNT1 = 3'b100 ;//-------------Internal Variables---------------------------reg [SIZE-1:0] state ; // Seq part of the FSMwire [SIZE-1:0] next_state ; // combo part of FSM //----------Code startes Here------------------------assign next_state = fsm_function(req_0, req_1);//------------fsm_function--------------//function [SIZE-1:0] fsm_function;input req_0; //parameterinput req_1; //parameterbegin case(state) IDLE : if (req_0 == 1'b1) fsm_function = GNT0; else if (req_1 == 1'b1) fsm_function = GNT1; else fsm_function = IDLE; GNT0 : if (req_0 == 1'b1) fsm_function = GNT0; else fsm_function = IDLE; GNT1 : if (req_1 == 1'b1) fsm_function = GNT1; else fsm_function =IDLE; default : fsm_function = IDLE; endcaseendendfunction always@(posedge clock)begin if (reset == 1'b1) state <= IDLE; else state <= next_state;end//----------Output Logic-----------------------------always @ (posedge clock)begin if (reset == 1'b1) begin gnt_0 <= #1 1'b0; gnt_1 <= #1 1'b0; end else begin case(state) IDLE : begin gnt_0 <= #1 1'b0; gnt_1 <= #1 1'b0; end GNT0 : begin gnt_0 <= #1 1'b1; gnt_1 <= #1 1'b0; end GNT1 : begin gnt_0 <= #1 1'b0; gnt_1 <= #1 1'b1; end default : begin gnt_0 <= #1 1'b0; gnt_1 <= #1 1'b0; end endcase endend // End Of Block OUTPUT_Endmodule Ⅵ. The introduction of state machineState machines are usually written in three segments to avoid excessive combinational logic.All we mentioned above shows how we could use the way of pipelining to split the combinational logic, but in some cases it is difficult for us to do that, and then what should we do?The state machine is such an example that we cannot add assembly line in the state decoding combinational logic. If there is a design of state machine with dozens of states, there is no doubt that its state decoding logic will be very large and this will be the critical path in the design. So what should we do?Just the same way, reducing the combinatorial logic. We can analyze the output of the state, reclassify and redefine them into a group of small state machines. By selecting the input (case statement) and triggering the corresponding small state machine, we can achieve a large state machine splitting into several small state machines. In the ATA6 specification (hard disk standard), there are about 20 kinds of input commands, and each piece of command corresponds to a variety of states. It is unthinkable to do it with a large state machine (nesting), however in the contrary, if you use the case statement to decode the command and trigger the corresponding state machine, in this way the module can run very fast.The key to increasing the operating frequency is to reduce the time delay from register to register, and the most effective method for reduction is to avoid large combinational logic, that is, to try to meet the four-input condition, reducing the number of LUT cascades, that’s mean that we could increase the working frequency by adding constraints, using a way of pipelining and splitting states.Ⅶ. What we should pay attention when designing the clock in FPGA1.Try to use only one clock in a module, and a module here means a module or an entity. In the design of multi-clock domain, it is better to have an extra special module for the isolation of clock domain. This allows the synthesizer to get a better results.2. Unless it is a low-power design, otherwise do not use the gated clock (gllobal Clock buffer such as IBUFG within FPGA) to control the input of clock edge of flip-flop, but use combinational logic and other timing logic (such as frequency divider) to generate signals used as the input of clock edge of flip-flop---all this is to reduce the instability of the design.3. Do not use the signals divided by counter as the clock of other modules, but with the help of clock enable(CE). Otherwise, this clock-like manner is extremely unfavorable to the reliability of the design, and greatly increases the complexity of the static timing analysis .Ⅷ. Synchronization Between Different Clock DomainsIf two modules in a design using two respective operating clock, then at their interfaces there would emerge a phenomenon which called as Asynchronous Patterns. In order to ensure data correct processed, the two modules must be synchronized.There are usually two cases of different clock domains here (discrete clock source):1. the frequency of two clocks is different;2. the two clocks share a same frequency, but they are actually two separate clocks with no relation to the phase.Just as shown in the following two figures:Figure 11 The frequencies of two clocks are completely differentFigure 12 The frequencies of the two clocks are the same, but the phases are irrelevantThe data transmission between two clock domains usually adopts different synchronization methods according to different bit widths.1. Synchronization between single bits and each pulse transmitted has at least 1 cycle widthThis kind of synchronization is mainly used for the synchronization of some control signals. As shown in Figure 13 below:Figure 13 One bit synchronizer designThe following points are required to be explained for this synchronization:(1) synchronous circuit of figure 12 is actually called "one bit synchronizer", it can only be used for one bit asynchronous signal which must be wider than that of the Current stage’s clock, otherwise it may be unable to adopt this asynchronous signal.(2) why is the circuit in figure 13 can only be used in one bit asynchronous signals?When two or more asynchronous signals (control or address) simultaneously get into the current time domain and take control the circuit of current time domain, problems arise if these signals are all synchronized using the same circuit in FIG. 13. Skews has arisen between two or more asynchronous signals (control or address) due to connection delays or other delays, and then the skew is greatly enlarged via the synchronizer in Figure 13 when getting into the current time domain, or competition may caused and finally leading to an error in the time domain circuit.Figure 14 Problem-passing multiple control signals between clock domainsIf the asynchronous data bus is to enter the current time domain, the circuit in Figure 13 cannot be used either, because data change very randomly and the width of 0 or 1 has nothing to do with the clock pulse of the current time domain, so the circuit in Figure 13 may be unable to adopt the correct data.(3) Please note that the second trigger is not used for avoiding the occurrence of "metastable state", on the contrary, it can prevent the transmission of metastable state. In other words, once the first flip-flop becomes metastable (possibly), due to the second flip-flop, the metastability will not be transmitted to the circuit following.(4) The first-stage trigger has a metastable state, which means it will require a recovery time to stabilize again, or it is also called Withdrawal from metastable state. The recovery time plus the establishment time of the second-stage flip-flop (say more precisely, maybe also minus the clock skew) is less than or equal to the clock period, which can be easily satisfied. This is means thees two stages of flip-flop should be put together as close as possible, without any combinatorial logic between them or excessive skews to the clock, and then the second-stage flip-flop can adopt data stably and preventing the transmission of metastable state.(5) FF1 is the sampling output of FF2, so of course, what is output by FF1 is what output by FF2, everything is the same except one cycle of delay. Note that “meta-stableit” means that once the data of FF1 enters, its electrical level would be indefinite and maybe incorrect. So although this method can prevent transmission of metastable state, it does not guarantee the data after the two-stage flip-flop is correct. Therefore, this kind of circuit always has a certain amount of fault-tolerance. This applies only to a some error-insensitive cases, but for other sensitive circuits, dual-port RAM or FIFO are better choices.2. The input pulse could be less than a synchronous circuit under a clock cycle width How is that possible? Has it not less than the original clock? For this case, the Feedback shown in Figure 15 below may usually be taken into consideration. The analysis of this circuit is as follows: Assume that the input data is high level, because the first flip-flop FF1 is high-level cleared, then all outputs should also be high and correctly adopted. On the other hand, if the input is low-level, data of FF1 would be forced to clear and the output level is zero, which ensures the correctness of the output.Figure 15 Synchronous circuit--input pulse may be less than one clock cycle width Book SuggestionBuilding Embedded Systems: Programmable Hardware 1st ed. EditionThis is a book for embedded-system engineers and intermediate electronics enthusiasts who are seeking tighter integration between software and hardware. Those who favor the System on a Programmable Chip (SOPC) approach will in particular benefit from this book. Students in both Electrical Engineering and Computer Science can also benefit from this book and the real-life industry practice it provides.--Changyi GuDigital Integrated Circuit Design Using Verilog and Systemverilog 1st Edition, Kindle EditionFor those with a basic understanding of digital design, this book teaches the essential skills to design digital integrated circuits using Verilog and the relevant extensions of SystemVerilog. In addition to covering the syntax of Verilog and SystemVerilog, the author provides an appreciation of design challenges and solutions for producing working circuits. --Ronald W. MehlerPower Converters with Digital Filter Feedback Control 1st Edition, Kindle EditionThis book builds a bridge for moving a power converter with conventional analog feedback to one with modern digital filter control and enlists the state space averaging technique to identify the core control function in analytical, close form in s-domain (Laplace). It is a useful reference for all professionals and electrical engineers engaged in electrical power equipment/systems design, integration, and management.--Keng C. Wu Relevant information "Discussion on the influencing factors of clock in FPGA design"About the article "Discussion on the influencing factors of clock in FPGA design", If you have better ideas, don't hesitate to write your thoughts in the following comment area. You also can find more articles about electronic semiconductor through Google search engine, or refer to the following related articles.To Solve the Problems of Cloud Skyrocket--Edge ProcessingFPGAs Power Facial Recognition Technology Was Issued by NECNew Software for C2000 MCUs Eliminates the FPGA in industrial designsCustomisable Ethernet switch designed for embedded applicationsMouser signs Intel FPGA board firm ReFLEX CES
kynix On 2018-03-31
Introduction The rectifier diode is a semiconductor device that converts AC into DC. Usually it contains a PN junction with two terminals, a positive electrode and a negative electrode. The most important characteristic is unidirectional conductivity. In electronic circuits, its breakdown voltage is high, the reverse leakage current is small, and the high temperature performance is good. Generally, it can be made of materials such as semiconductor germanium or silicon. In addition, high-voltage and high-power rectifier diodes are made of high-purity single crystal silicon (it is easy to reverse breakdown when there is more doping). This kind of device has a large junction area and can pass a large current (up to thousands of amperes), but the operating frequency is not high, generally below tens of KHz. Rectifier diodes are mainly used in various low-frequency half-wave rectifier circuits. If require full-wave rectification, several diodes need to be connected to form a rectifier bridge. What is a Rectifier? (AC to DC) Catalog Introduction Ⅰ Common Parameters Ⅱ Rectifier Diodes Selection Ⅲ Rectifier Common Failures Ⅳ Rectifier Diodes Detection Ⅴ Rectifier Diode Replacement 5.1 Replacing Rules 5.2 Commonly Used Rectifier Models List Ⅵ Rectifier Diode Circuit Types 6.1 Half-Wave Rectifier Circuit 6.2 Full-Wave Rectifier Circuit 6.3 Bridge Rectifier Circuit Ⅶ High-frequency Rectifier Diodes Ⅷ FAQ Ⅰ Common Parameters The rectifier diode uses the unidirectional conductivity of the PN junction to convert alternating current into pulsating direct current. Rectifier diodes have a large leakage current, and most of them are diodes packaged with surface mount materials. The parameters of the rectifier diode include the maximum rectifier current, which refers to the maximum current value allowed by the rectifier diode for long-term operation. It is the main parameter of the rectifier diode and the main basis for the option of the rectifier diode. Except it, other important parameters are introduced here.(1) Maximum average rectified current IF: It refers to the maximum forward average current allowed to pass through the diode during long-term operation. The current is determined by the PN junction area and the heat dissipation conditions. It should be noted that the average current passing through the diode cannot be greater than this value, and has heat dissipation.(2) Maximum reverse working voltage VR: It refers to the maximum reverse voltage allowed to be applied across the diode. If it is greater than this value, the reverse current (IR) will increase sharply, and the unidirectional conductivity of the diode will be destroyed, causing reverse breakdown. Usually take half of the reverse breakdown voltage VB as VR.(3) Maximum reverse current IR: It is the reverse current allowed to flow through the diode under the highest reverse working voltage. This parameter reflects the quality of the unidirectional conductivity of the diode. Therefore, the smaller the current value, the better the diode quality.(4) Breakdown voltage VB: It refers to the voltage value at the sharp bend point of the reverse volt-ampere characteristic curve of the diode. When the reverse is a soft characteristic, it refers to the voltage value under a given reverse leakage current condition.(5) The highest operating frequency fm: It is the highest operating frequency of the diode under normal conditions. It is mainly determined by the junction capacitance and diffusion capacitance of the PN junction. If the operating frequency exceeds fm, the unidirectional conductivity of the diode will not be well reflected.(6) Reverse recovery time trr: It refers to the reverse recovery time under the specified load, forward current and maximum reverse transient voltage.(7) Zero-bias capacitor CO: It refers to the sum of the capacitance of the diffusion capacitance and the junction capacitance when the voltage across the diode is zero. It is worth noting that, due to the limitation of the manufacturing process, even the same type of diode has a large dispersion of its parameters. The parameters given in the manual are often within a range. If the test conditions change, the corresponding parameters will also change. For example, the IR of the 1N5200 series silicon plastic rectifier diode measured at 25°C is less than 10uA, and at 100°C IR becomes less than 500uA. Ⅱ Rectifier Diodes Selection Rectifier diodes are generally planar silicon diodes, which are used in various power rectifier circuits. When selecting a rectifier diode, the parameters such as its maximum rectifier current, maximum reverse working current, cut-off frequency and reverse recovery time should be mainly considered.The rectifier diode used in the ordinary series stabilized power supply circuit does not require high reverse recovery time of the cut-off frequency. The rectifier diode with the maximum rectified current and maximum reverse working current should meet the requirements of the circuit.The rectifier diode used in the rectifier circuit of the switching regulated power supply and the pulse rectifier circuit should be a rectifier diode with a higher operating frequency and shorter reverse recovery time (such as RU series, EU series, V series, 1SR series, etc.) or select fast recovery diodes, or Schottky rectifier diode. Ⅲ Rectifier Common Failures (1) Inadequate lightning protection and poor overvoltage protection. The rectifier device is not equipped with lightning protection and overvoltage protection devices. Or insufficient routine maintenance of the equipment.(2) Poor operating conditions. In the indirect drive generator set, because the calculation of the speed ratio is incorrect or the ratio of the diameters of the two belt pulleys does not meet the requirements of the speed ratio, the generator runs at a high speed for a long time, so the rectifier is at a higher voltage for a long time. It accelerates the rectifier aging, and was damaged by premature breakdown.(3) Poor operation management. The load failure or diode breakdown doesn’t fixed in time.(4) Poor equipment installation or manufacturing process. The generator set has been operating under large vibration for a long time, which affects the rectifier tube operation. At the same time, because the generator set speed is unstable, the working voltage of the rectifier tube also fluctuates, which greatly accelerate the aging and damage of the rectifier tube.(5) The specifications and models of the rectifier tube do not match. When replacing a new rectifier tube, wrongly replace the tube whose working parameters do not meet the requirements or the wiring is wrong, causing the rectifier tube to breakdown and damage.(6) The safety margin of the rectifier tube is too small. The overvoltage and overcurrent safety margin of the rectifier tube is too small, so that the rectifier tube cannot withstand the overvoltage or the peak value of the overcurrent transient process that occurs in the generator excitation circuit and is damaged. Figure 1. Diode as Rectifier Symbol Ⅳ Rectifier Diodes Detection Here is a more general and simple method. Remove all the rectifier diodes in circuit, use the 100×R or 1000×R ohm range of a multimeter to measure the two lead wires of the rectifier diode (adjust and test twice). If the resistance values measured twice are very different, for example, the resistance value is as high as a few hundred kΩ to infinity, or the resistance value is only a few hundred Ω or less, indicating that the diode is good (except under special circumstances). If the resistance value measured twice is almost the same and the resistance value is very small, it means that the diode has been broken down and cannot be used. In addition, if the resistance values measured twice are both infinite, it means that the diode has been internally disconnected and cannot be used. Ⅴ Rectifier Diode Replacement 5.1 Replacing Rules After the rectifier diode is damaged, you should replace with the same model or another model with the same parameters.Generally, rectifier diodes with high withstand voltage (reverse voltage) can be substituted for rectifier diodes with low withstand voltage, while rectifier diodes with low withstand voltage cannot be replaced with rectifier diodes with high withstand voltage. A diode with a high rectification current value can be substituted for a diode with a low rectification current value, while a diode with a low rectification current value cannot be substituted for a diode with a high rectification current value. 5.2 Commonly Used Rectifier Models List Material Model Reverse Voltage Operation (peak) Average Rectified Current Silicon Rectifier Diode 1N4001 50V 1A (Ir=5uA,Vf=1V,Ifs=50A) 1N4002 100V 1A 1N4003 200V 1A 1N4004 400V 1A 1N4005 600V 1A 1N4006 800V 1A 1N4007 1000V 1A 1N4148 75V 4PF, Ir=25nA,Vf=1V 1N5391 50V 1.5A (Ir=10uA,Vf=1.4V,Ifs=50A) 1N5392 100V 1.5A 1N5393 200V 1.5A 1N5394 300V 1.5A 1N5395 400V 1.5A 1N5396 500V 1.5A 1N5397 600V 1.5A 1N5398 800V 1.5A 1N5399 1000V 1.5A 1N5400 50V 3A (Ir=5uA,Vf=1V,Ifs=150A) 1N5401 100V 3A 1N5402 200V 3A 1N5403 300V 3A 1N5404 400V 3A 1N5405 500V 3A 1N5406 600V 3A 1N5407 800V 1A (Ir=5uA,Vf=1V,Ifs=50A) 1N5408 1000V 1A Ⅵ Rectifier Diode Circuit Types The power grid supplies users with alternating current, and various electrical devices require direct current. Rectification is the process of converting AC into DC. Utilizing the device with unidirectional conductivity, the current of alternating direction and magnitude can be converted into direct current. The following introduces three main rectifier circuits composed of crystal diodes. 6.1 Half-Wave Rectifier Circuit Figure 2. Half-Wave Rectifier Circuit The figure shows the simplest rectifier circuit. It is composed of power transformer B, rectifier diode D and load resistor Rfz. The transformer transforms the voltage into the required alternating voltage e2, and then D transforms the AC into pulsating DC.The transformer threshold voltage e2 is a sine wave voltage whose direction and magnitude change with time, and its waveform is shown in Figure (a). In the 0~K time, e2 is a positive half cycle, that is, the upper end of the transformer is positive and the lower end is negative. At this time, the diode is in forward conductive conduction, and e2 is added to the load resistor Rfz through it. Within π~2π, e2 is in negative half cycle, the lower end of the transformer secondary is positive, and the upper end is negative. At this time, D bears the reverse voltage and does not conduct, and there is no voltage on Rfz. In the time of π~2π, the process of 0~π time is repeated, and in the time of 3π~4π, the process of π~2π time... half-cycle through Rfz, a single right direction voltage is obtained on Rfz (up positive and lower negative), as shown in Figure (b), which achieves the purpose of rectification. But the load voltage Usc, and the load current also changes with time, so it is usually called pulsating DC. Figure 3. Half-Wave Rectifier Wave This rectification method of removing the first half week and leaving half a week is called half wave rectification. It is not difficult to note that the half-wave rectification is at the expense of consuming half of the AC in circuit, and the current utilization rate is very low. According to it, half-wave rectifier diode is commonly used in high voltage and small current occasions, and is rarely used in general radio devices. 6.2 Full-Wave Rectifier Circuit Figure 4. Full-Wave Rectifier Circuit If some adjustments are made to the structure of the rectifier circuit, a full-wave rectifier circuit that can be obtained. The figure above is the electrical schematic diagram of the full-wave rectifier circuit.The full-wave rectifier circuit can be regarded as a combination of two half-wave rectifier circuits. A tap needs to be drawn in the middle of the secondary coil of the transformer to divide the secondary coil into two symmetrical windings, so as to get two voltages e2a and e2b of equal size but opposite polarity to form two energized circuits.The working principle of the full-wave rectifier circuit can be illustrated by the waveform diagram. Between 0 and π, e2a is a positive voltage to Dl, D1 is turned on, and a up positive and down negative voltage is obtained on Rfz. e2b is a reverse voltage to D2, and D2 is not conductive (see Figure(b) ). In the time of π-2π, e2b is a positive voltage to D2, D2 is turned on, and the voltage obtained on Rfz is still up positive and down negative voltage, therefore e2a is a reverse voltage to D1, and D1 is not conductive (see figure (c). Figure 5. Full-Wave Rectifier Circuit Wave Repeated this way, because the two rectifier elements D1 and D2 conduct electricity in turn, the result is that the load resistor Rfz has the same direction of current at the positive and negative half cycles, as shown in Figure(b). This is full-wave rectification, which not only uses the positive half-cycle, but also cleverly uses the negative half-cycle. Full-wave rectifier greatly improves the rectification efficiency. Figure 6. Full-Wave Rectifier Circuits This circuit requires the transformer to have a secondary center tap that makes the two ends symmetrical, which brings a lot of trouble to the production. In addition, in this circuit, the maximum reverse voltage that each rectifier diode can withstand is twice the maximum value of the transformer secondary voltage, so diodes should withstand higher voltages. 6.3 Bridge Rectifier Circuit Figure 7. Bridge Rectifier Circuit The bridge rectifier circuit is the most used rectification circuit. It has the advantages of a full-wave rectifier circuit as long as two diode ports are connected to form a bridge structure, so its shortcomings are overcome to a certain extent.The bridge rectifier circuit is as follows: Figure 8. Bridge Rectifier Circuit (a) When e2 is a positive half cycle, D1, D3 and the direction voltage, D1, D3 are turned on; D2, D4 are applied with reverse voltage, they are turned off. E2, Dl, Rfz, and D3 are energized a loop in the circuit. On Rfz, a positive and negative half-wave washing voltage is formed. When e2 is a negative half cycle, a positive voltage is applied to D2 and D4, and they are turned on; Apply reverse voltage to D1 and D3, they are cut off. E2, D2Rfz, and D4 are energized a loop in the circuit, and the other half-wave rectified voltage is also formed on Rfz. Figure 9. Bridge Rectifier Circuit (b) If repeated, a full-wave rectified voltage at Rfz is made. The waveform diagram is the same as the full-wave rectifier. It is not difficult to see from the figure that the reverse voltage of each diode in the bridge circuit is equal to the maximum value of the secondary voltage of the transformer, which is half smaller than the full-wave cleaning circuit. Ⅶ High-frequency Rectifier Diodes The rectifier diode in the switching power supply must have the characteristics of low forward voltage reduction and fast recovery, and should also have sufficient output power. The following three types of high-frequency diodes can be used: fast recovery rectifier, ultra-fast recovery rectifier, and Schottky diode rectifier.Fast recovery and ultra-fast recovery rectifier diodes have moderate and high forward voltage drop, and the range is from 0.8 to 1.2V. These two types of rectifier diodes also have higher cut-off voltage parameters. Therefore, they are particularly suitable for use in low-power auxiliary power circuits with output voltages around 12V.Compared with general rectifier diodes, the reverse recovery time difference between fast recovery rectifier diodes and ultra-fast recovery rectifier diodes is reduced to the nanosecond level, thus greatly improving the efficiency of the power supply. According to experience, when choosing a fast recovery rectifier diode, its reverse recovery time should be at least 1/3 of the rise time of the switching transistor. These two kinds of rectifier diodes also reduce the switching voltage spike, because it will affect the ripple of the output DC voltage.Whether fast recovery rectifier diodes and ultra-fast recovery rectifier diodes used in switching power supplies need a heat sink, which depends on the maximum power of the circuit. Under normal circumstances, the allowable junction temperature is 175°C during manufacture. The manufacturer has a technical parameters provided for the designer to calculate the maximum output operating current, voltage, and case temperature. Even under the action of a large forward current, the forward voltage drop of Schottky rectifier diodes is very low, only about 0.4V. Moreover, as the junction temperature increases, its forward voltage drop decreases. Therefore, Schottky rectifier diodes are particularly suitable for low-voltage output circuits around 5V. Its reverse recovery time is negligible, because this device is a semiconductor device with majority carrier. During the switching process of the device, there is no need to remove the stored charge of the minority carrier.Schottky rectifier diodes have two major shortcomings: First, the reverse cut-off voltage tolerance is low, about 100V; second, the reverse leakage current is large, making the device more susceptible to have heat breakdown than other types of rectifier devices. Of course, these shortcomings can also be overcome by adding a transient overvoltage protection circuit and appropriately controlling the junction temperature. Ⅷ FAQ 1. How does a rectifier diode work?A rectifier is a device that converts an Alternating Current (AC) into a Direct Current (DC) by using one or more contact diodes. ... In simple words, a diode allows current in just one direction. This unique property of the diode allows it to act sort of a rectifier by converting an alternating current to a DC source. 2. What is a function of rectifier diode?A rectifier diode is an electrical device that converts alternating current (AC), which periodically reverses direction, to direct current (DC). 3. What is the function of diode in rectifier circuit?A characteristic of diodes is that current flows (forward direction) or current does not flow (reverse direction) depending on the direction of applied voltage. This works to convert alternating current (AC) voltage to direct current (DC). 4. Which is used as rectifier?We know that the core use of rectifier is to convert AC current into DC current. The rectifier consists of semiconductor diodes to do this function. 5. What is the limitation of a diode rectifier?Disadvantages of Full Wave Bridge RectifierIt needs four diodes. The circuit is not suitable when a small voltage is required to be rectified. It is because, in this case, the two diodes are connected in series and offer double voltage drop due to their internal resistance. 6. What is the ideal rectifier diode efficiency?It is the ratio of DC output power to the AC input power. The rectifier efficiency of a full-wave rectifier is 81.2%. 7. What is a fast recovery rectifier?Definition: Fast Recovery Diode is a semiconductor device which possesses short reverse recovery time for rectification purpose at high frequency. A quick recovery time is crucial for rectification of high-frequency AC signal. Diodes are mostly used in rectifiers because they possess ultra-high switching speed. 8. Which diode is fast recovery diode?FRD stands for fast recovery diodes. They offer high-speed support and generally have a trr of approximately 50 to 100 ns. With a VF of approximately 1.5V, it is rather large when compared to general rectifying diodes. Another generic term for the FRD type would be a “High-speed Diode.” 9. What is ultra fast recovery diode?A fast diode is a faster-than-standard current rectifier. ... A fast rectifier typically recovers ten times faster than a standard rectifier, and an ultrafast designation is usually applied to rectifiers designed to beat the standard rectifier recovery by being more than fifty times faster. 10. What is the difference between a Schottky diode and a rectifier diode?Schottky diode, also known as barrier diode is mainly used in low voltage circuits because the forward voltage drop of Schottky diode(Vf) is less than a rectifier diode. The forward voltage drop of a Schottky diode is typically in the range of . 25 to 0.5 V whereas the Vf of a rectifier diode is around 0.7 volts. 11. What is Schottky barrier rectifier?The Schottky diode or Schottky Barrier Rectifier is named after the German physicist Walter H. Schottky, is a semiconductor diode designed with a metal by the semiconductor junction. It has a low-forward voltage drop and a very rapid switching act. ... Actually, it is one of the oldest semiconductor devices in reality.
kynix On 2021-10-22
IntroductionMany embedded designs use single board computer based on micro-processor and micro-controller(SBC) and modular system (SoM). However, people with more embedded applications can't bear the delay caused by the response time associated with software. Only the custom hardware can achieve the higher performance that these applications required, and the quickest way to develop custom hardware is to use FPGA. This article will introduce the advantages of using SoM to develop embedded systems that require higher processing power from FPGA, and will also cover the various FPGA SoM, and also discuss how they work when embedded in design and development.What is an FPGA? Intro for BeginnersCatalogs CatalogsFPGA: The Role of Modular SystemNew SoM based on SoC with processor and FPGAFunctions of SoM and SBCConclusion FPGA: The Role of Modular SystemThe modular system (SoM) can help designers to develop special shape size embedded systems with custom interfaces without having to develop kernel processing systems from scratch. Designers can insert SoM which has pre-designed and tested into pre-designed or customized cards to create embedded designs with the same functions as fully customized designs, but take much less time to develop hardware.Using SoM has several advantages over developing hardware from scratch as follows:1) Saving cost( in the process of developing and debugging the circuit board based on SoC, the non-recurrent engineering cost will be very high.)2) Multiple choices(benefiting the insertion ability of SoM)3) Developing hardware and software at the same time4) Reducing design risks5) Small packagesThe market, once dominated by microprocessors and micro-controllers, is now replaced by SoM, with through holes and socket components losing their leading role. Pin compatibility allows designers to select from a range of compatible processors that have the correct clock speed and appropriate on-chip memory capacity. However, with the increase of the number of pins and the adoption of surface mount packaging technology, this design method has become obsolete. And SoM has emerged as the times require, its shape size and substrate surface have the same function as the previous series of pin compatible micro-controllers.If SoM is used as the computing platform of the project, the design engineer can concentrate his energy and resources to develop the final application without being lost in the details of designing computing platform. For example, at the clock speed of hundreds of megahertz (MHz), the layout of the SDRAM circuit board connected to the application processor becomes increasingly difficult due to differential wire delay, noise, crosstalk and many other challenges. However, SoM vendors have done a lot of design work before the start of the project, which can solve these problems and cut the time of product launch.To select the appropriate SoM series for embedded development projects, we must carefully analyze various factors, including the expected requirements of embedded resources, as well as the design extendibility, future adaptability and ease of use. This helps to select the appropriate shape and substrate size of SoM, providing alternative options to meet known challenges and unexpected future challenges. If the selected SoM family includes multiple product members and has compatible appearance dimensions and connector base surfaces, the selection of the designers can be expanded to make the product better able to withstand the test of the future. New SoM based on SoC with processor and FPGASoM usually uses SoC which includes multiple application processors, but a new embedded processor, SoC, integrating FPGA, applies to the SoM design either, like the Zynq®-7000 SoC, Xilinx’s fully programmable processor. Xilinx Zynq-7000 SoC integrates the software programmability of Arm Cortex-A9 application processors with the hardware programmability of FPGA. Arm microprocessor, built in Zynq SoC, combines enhanced peripherals with SDRAM memory controllers (called Zynq SoC's "processing systems" or "PS"), and performs all the software-based tasks typically handled by embedded microprocessors or microcontrollers, while integrated FPGA (known as Zynq SoC's PL: Programmable Logic) provides hardware I / O response time and hardware acceleration for embedded tasks that require faster execution speed.Xilinx Zynq SoC offers a variety of processor configurations and speeds, with even more options for FPGA structures on a chip. Choosing the SoM family based on hybrid processor FPGA SoC can expand the selection range and improve the future adaptability of the product, like Xilinx Zynq-7000 series. One example of such a SoM series is the use of the TE0782 family from Trenz Electronic (Fig.1) and the SoM supporting test panel TEBT0782-01 which adopts the Xilinx Zynq-7000. Three Members of the SoC FamilyTE0782-02-035-2I based on Xilinx Zynq Z-7035 SoCTE0782-02-045-2I based on Xilinx Zynq Z-7045 SoCTE0782-02-100-2I based on Xilinx Zynq Z-7100 SoCAll three SoMs have the same connector substrate, including three Samtec LSHM nonpolar connectors and hundreds of I / O pins, in addition, there are power and grounding pins between the SoM and the board.Fig.1 Trenz Electronic TE0782 SoMFig.1: TE0782 SoM from Trenz Electronic uses one of three Xilinx Zynq Z-7000 SoC models, as well as providing 1GB SDRAM and other non-volatile memory.The best way to see the flexibility of SoM design is to look at the TE0703 carrier board of the TE0782 SoM family, and then go back to SoM through the I / O pins to see SoM's resources.Fig.2: Trenz TE0703 Board Divides Many I / O Pins from the Relevant 4 x 5 cm SoM Boards to the Rest of the Embedded System.Many of the important I / O functions separated from the SoM board are shown in the block diagram of TE0703 as follows:1 Gbit/s EthernetUSB and Micro-USBHundreds of I/O pins(it can be configured as a singular I / O pin, or as a low-voltage differential signal pair.)Fig.3 Physical Map of Trenz TE0703-05( Trenz TE0703 family) Functions of SoM and SBCProcessing speed, response time and I / O capability are significant characteristics of SoM. However, embedded systems often integrate SBC, such as Arduino Uno and Raspberry Pi, because these products also have wide-ranging technique support. So Trenz Electronic also offers related versions of Arduino and Raspberry Pi: TE0723-03M ArduZynq and TE0726-03M ZynqBerry based on Xilinx Zynq-7000 SoC. These SBC bridges many existing plug-in cards, such as the expansion boards of Arduino and various Raspberry.The FPGA capacity of Zynq Z-7010 SoC integrated into TE0723-03M ArduZynq and TE0726-03M ZynqBerry SBC is significantly different from that of FPGA integrated into three Trenz Electronic SoMs (using Zynq Z-7035 Zynq Z-7045 and Zynq Z-7100 SoC ). Although all Zynq-7000 SoC apply dual-core Arm Cortex-A9 processor, their FPGA on components are different. Volume of the Xilinx Zynq SoC Programmable Logic Unit Block RAM (MB) DSP slices is Z-701028K2.180Z-7035275K17.6900Z-7045350K19.2900Z-7100444K26.52020, Xilinx Zynq-7000 SoC (Z-7035, Z-7045 and Z-7100) used in Trenz Electronics SoM provides more FPGA resources than that of Zynq Z-7010 used in Trenz Electronic ArduZynq and ZynqBerry SBC.Xilinx Zynq-7000 SoC (Z-7035, Z-7045 and Z-7100) used in Trenz Electronics SoM provides more FPGA resources than that of Zynq Z-7010 used in Trenz Electronic ArduZynq and ZynqBerry SBC. In addition, TE0723-03M ArduZynq and TE0726-03M ZynqBerry SBC provide only 512-MB on-board SDRAM, while TE0782 SoM provides 1GB.Trenz Electronic provides various boards for its SoM, including TE0703-05, TE0706-02, TE0701-06, and TEB0745-02, which provide a lot of standardized I / O functionality. A certain card may be suitable for a particular embedded application, but the embedded system design can also be split into a customized design board that can accept SoM series products to meet different processing requirements. This flexibility highlights the advantages of using the SoM family as the basis for embedded design. And consistent standardized connector substrate allows SoM to be easily interchangeable to accommodate changes in system specifications. ConclusionSoM can significantly cut the time requirement of prototype embedded systems and reduce project risk. As long as the SoM profile and connector substrate are supported, more FPGA resources of SoM can be inserted to meet the growing demand. In addition, a variety of compatible SoM based on Xilinx Zynq-7000 SoC combine the processing power of dual-core Arm Cortex-A9 processor with FPGA resources, which is helpful to accelerate the development of embedded design. The embedded design method based on SoM can not only shorten the time required to develop the hardware part, but also allow the software development to start earlier in the project, thus reducing the design cost. FAQ1. What is a FPGA used for?Image result for FPGA and ProcessorFPGAs are mainly used to design application-specific integrated circuits (ASICs). First, you design the architecture of such a circuit. Then, you use an FPGA to build and check its prototype. Errors can be corrected. 2. Is an FPGA a processor?With an FPGA, there is no chip. The user programs the hardware circuit or circuits. The programming can be a single, simple logic gate (an AND or OR function), or it can involve one or more complex functions, including functions that, together, act as a comprehensive multi-core processor. 3. What is difference between FPGA and processor?CPUs offer the most versatility and so are the best suited to perform general purpose computing. FPGAs can be used to perform more specific and specialized tasks but are not ideal for general computing purposes. 4. How many times can you reprogram an FPGA?Altera guarantees you can reprogram windowed EPROM-based devices at least 25 times. Altera does not specify the number of times you can reprogram or reconfigure FPGA devices because these devices are SRAM-based. An SRAM-based device can be reconfigured as often as a design requires; there is no specific limit. 5. What is SoM FPGA?The CompactRIO System on Module (SOM) is a small, flexible, embedded computer for industrial applications that require high performance and reliability. It combines an ARM processor, the NI Linux Real-Time OS, a programmable Xilinx FPGA, and a high-density connector to interface with application-specific I/O. You May Also LikeDiscussion on the influencing factors of clock in FPGA designTo Solve the Problems of Cloud Skyrocket--Edge Processing
kynix On 2018-08-30
Ⅰ Introduction What exactly is a microprocessor? As our lives are becoming increasingly tech-centric and thus tech-dependent, we have to examine this critical component closely. After all, microprocessors are built into computers, laptops, and smartphones, as well as smart home devices, gaming consoles, and self-driving cars. Microprocessors are what allow these devices to function. In this blog, we will discuss microprocessor basics and their applications across industries. Catalog Ⅰ Introduction Ⅱ What is a Microprocessor? Ⅲ Microprocessor Related Video: Ⅳ Features of Microprocessor Ⅴ Evolution of Microprocessors Ⅵ Microprocessor Types Ⅶ Characteristics of CISC and RISC Ⅷ Differences Between CISC and RISC Ⅸ Applications of Microprocessor 9.1 Practical Diagram Examples Ⅹ Microprocessor vs. Integrated Circuit--What’s the Difference? Ⅺ FAQ Ⅱ What is a Microprocessor? A microprocessor is a Central Processing Unit (CPU) built on a single Integrated Circuit (IC) in a computer. A microcomputer is a digital computer with one microprocessor that serves as the CPU. It is a programmable, multipurpose, clock-driven, register-based electronic device that reads binary instructions from memory, accepts binary data as input, processes data according to those instructions, and outputs the results. The microprocessor is composed of millions of tiny components that work together, such as transistors, registers, and diodes. Figure1:Block Diagram of a Microcomputer A microprocessor contains three parts: an ALU , a control unit, and a register array. The ALU performs arithmetic and logical operations on data from an input device or memory. The control unit manages the computer's instructions and data flow. Furthermore, a register array is composed of registers denoted by letters such as B, C, D, E, H, L, and accumulator. Ⅲ Microprocessor Related Video: How to easily use HMC5883L Compass Sensor Microprocessor Video Description: In this video, we will understand the difference between microprocessor and microcontroller. Visually both microprocessor and microcontroller almost look identical but they are different in many aspects. They are different in terms of the application in which they are used, processing power, memory, cost and power consumption. So, in this video, you will understand the difference between microprocessor and microcontroller in all these aspects. Ⅳ Features of Microprocessor Ⅴ Evolution of Microprocessors We can classify microprocessors based on generation or size: First Generation (4 - bit Microprocessors ) Intel Corporation introduced the first generation of microprocessors in 1971-1972. Because it was a 4-bit processor, it was dubbed the Intel 4004 . It was a single-chip processor. It was capable of performing basic arithmetic and logical operations such as addition, subtraction, Boolean OR, and Boolean AND. I had a control unit that could fetch an instruction from storage memory, decode it, and then generate control pulses to execute it. Second Generation (8 - bit Microprocessor) Intel introduced the second generation of microprocessors in 1973. It was the first eight-bit microprocessor capable of performing arithmetic and logic operations on 8-bit words. It was known as the Intel 8008 , and an improved version was known as the Intel 8088 . Third Generation (16 - bit Microprocessor) The third generation microprocessors, introduced in 1978, were Intel's 8086, Zilog Z800, and 80286, which were 16-bit processors with minicomputer-like performance. Fourth Generation (32 - bit Microprocessors ) The 32-bit microprocessor was introduced by several companies, but the most popular is the Intel 80386. Fifth Generation (64 - bit Microprocessors) From 1995 to the present, we have been in the fifth generation. Following 80856, Intel released a new processor, the Pentium processor, followed by the Pentium Pro CPU. which enables multiple CPU s in a single system to achieve multiprocessing. Celeron, Dual, Quad, and Octa-Core processors are also improved, 64-bit processors. Ⅵ Microprocessor Types Microprocessors are classified into three types: CISC (Complex Instruction Set Computer) The instructions are in a complex format, as the name implies. This means that a single instruction can contain several low-level instructions. Loading data from memory, storing data in memory, performing basic operations, and so on. Furthermore, a single instruction can have multiple addressing modes. Furthermore, because there are many operations in a single instruction, they use a small number of registers. Intel 386, Intel 486 , Pentium, Pentium Pro, Pentium II, and other CISC processors are examples. RISC (Reduced Instruction Set Computer) As the name implies, the instructions in this are quite simple, and thus they execute quickly. Furthermore, the instructions are completed in a single clock cycle and only use a few addressing modes. Furthermore, it employs multiple registers, resulting in less interaction with memory. Examples include the IBM RS6000, DEC Alpha 21064, DEC Alpha 21164, and others. EPIC (Explicitly Parallel Instruction Computing) It enables parallel computation of instructions through the use of compilers. Furthermore, the complex instructions operate at lower clock frequencies. It also encodes the instructions in 128-bit bundles. Each bundle contains three instructions encoded in 41 bits each, as well as a five-bit template. This 5-bit template specifies the type of instructions and which instructions can be executed concurrently. Ⅶ Characteristics of CISC and RISC Characteristics of CISC are as follows: Because the instructions are complex, so is the decoding of instructions.The size of instructions is larger than the size of a single word.It is possible for an instruction to take more than one clock cycle to execute.Because most operations are performed in memory, the number of registers is reduced.Address modes are also complicated.There are more data types. Characteristics of RISC are as follows: Because the instruction is simple, so is the decoding of instructions.The size of the instructions is less than one word.It takes one clock cycle to execute an instruction.The number of registers has increased.The address modes are also straightforward.There are fewer data types.It has the potential to be used for pipelining. Ⅷ Differences Between CISC and RISC RISCCISCIt focuses on the software.It focuses on the hardware.Uses the hardwired control unit.It uses a hardwired as well as a microprogrammed control unit.Uses transistors for more registers.Transistors are used for storing the complex instructions.The instructions have a fixed size.The size of instructions vary.It performs only register to register arithmetic operations.Besides the register to register operations, it can also perform register to memory or memory to register operations.Fewer registers are used.It requires more number of registers.As the instructions are individual the code is large.Multiple operations are present in single instruction hence, the code is small.Executes in one clock cycle.Takes more than one clock cycle for execution.Instructions have a size of one word.The size of instructions is greater than the one-word size.Examples are IBM RS6000, DEC Alpha 21064, DEC Alpha 21164, etc.Examples of CISC are Intel 386, Intel 486, Pentium, Pentium Pro, Pentium II, etc. Ⅸ Applications of Microprocessor Household DevicesIndustrial Applications of MicroprocessorsTransportation IndustryComputers and ElectronicsIn MedicalsInstrumentationEntertainmentEmbedded Systems at HomeOffice Automation and PublicationCommunication 9.1 Practical Diagram Examples As stated by the term microprocessor typically refers to a microcomputer's central processing unit (CPU), which contains the arithmetic logic unit (ALU) and control units. Typically, it is implemented on a single LSI chip. This separates the operation's "brains" from the rest of the computer's units. An example of microprocessor architecture The arithmetic logic unit (ALU) and the control unit for a microcomputer are housed in the microprocessor. It is linked to memory and I/O via buses, which transport data between the units. Figure2: microprocessor architecture Microcomputer Example A microprocessor unit (MPU), a clock, and interfaces to memory and external input/output devices are typical components of a microcomputer. The units are linked by buses that transfer data between them. Figure3: Microcomputer Buses: The exchange of information Information is transferred between microcomputer units via buses, which are groups of conductors. Each bit of information to be passed will have one conductor, e.g., 16 lines for a 16-bit address bus. Address, control, and data buses will be present. Figure4: microcomputer units via buses Ⅹ Microprocessor vs. Integrated Circuit--What’s the Difference? Integrated Circuit An integrated circuit is a semiconductor chip component that contains thousands to billions of transistors. It's difficult to imagine how this is possible, but it's not done by shrinking scores of typical 3-legged NPN transistors. An integrated circuit is instead constructed by assembling the basic structure of MOS transistors on a small piece of the silicon wafer. The MOS transistors are connected in such a way that they perform the same function as a larger setup. Microprocessor An integrated circuit is a microprocessor, but not all integrated circuits are microprocessors. The microprocessor, like Professor X, is an intelligent piece of integrated circuits. It serves as the brain of circuits that require computing power. The first microprocessors had thousands of transistors on a silicon wafer, but the number has now reached billions. The AMD Epyc Rome chip, which was released in 2019, contains over 39 billion transistors. A microprocessor, unlike other integrated circuits, serves as a computing brain. It can execute logical and arithmetic instructions that have been programmed into it. A microprocessor is made up of three parts: an arithmetic and logic unit (ALU), a control unit. and a register array. Microprocessor vs. Integrated Circuit in Electronics Design Figure5: Mind the speed when working with a microprocessor. In electronics design, you're likely to work with integrated circuits. Working with a microprocessor can be a herculean task on occasion. It's a mistake to think that designing with a microprocessor is the same as designing with traditional integrated circuits. If you skip a couple of best practices in PCB design, you can still create a successful design if you're working with common ICs like differential transceivers or logic gates. In terms of power supply and speed, these passive ICs are typically quite robust. However, if you make the same mistakes in a design with a microprocessor, you will almost certainly encounter a slew of problems in the prototype. Microprocessors are notoriously power-hungry devices that typically operate at hundreds of Hertz or Gigahertz. It should go without saying that a microprocessor is extremely sensitive to the voltage applied to it. Ripples or a sudden drop in voltage can have a significant impact on the microprocessor's stability. Because the microprocessor communicates with memory via high-speed data buses, EMI is also a concern. High-speed data exchange can be a source of EMI, affecting nearby sensitive components. When designing with a microprocessor, you can't afford to make even the smallest mistake, so using the right PCB design and analysis software is essential. Cadence OrCAD supports high-speed signal simulation to identify problems early in the design process, as well as a plethora of other tools to help you get the job done right the first time. Ⅺ FAQ 1. What is microprocessor in simple terms? A microprocessor is an electronic component that is used by a computer to do its work. It is a central processing unit on a single integrated circuit chip containing millions of very small components including transistors, resistors, and diodes that work together. 2. Are microprocessors used today? One or more microprocessors are used today in everything from the smallest embedded systems and handheld devices to the largest mainframes and supercomputers. 3. Are microprocessors in phones? Smartphones and other mobile devices have multiple microprocessors and microcontrollers. The main processor is a microprocessor with a bus to communicate with memory on separate chips (although often included in the same IC package) and buses to communicate with the rest of the equipment. 4. Do phones have RAM? Android phones have jumped from 4GB to 8GB RAM as standard, and we're now seeing phones with 12GB and 16GB of RAM — but Apple's iPhone has always gotten by with less. 5. How do microprocessors execute instructions? The instructions which are to be executed by microprocessor are first stored in the memory of the processor and then executed. But the processor does not execute the instructions directly. It reads the instruction byte by byte and then executes it. 6. What is microprocessor chips? Microprocessor chips (MPU) are silicon devices that serve as the central processing unit (CPU) in computers. They contain thousands of electronic components and use a collection of machine instructions to perform mathematical operations and move data from one memory location to another.
kynix On 2021-12-29
Introduction As a beginner, what the functions of capacitors in a circuit? A Capacitor is a passive electronic component that stores and releases the energy. Its unique characteristic is blocking direct current while allowing alternating current to pass. The main functions of capacitors are based on these characteristics. The use of capacitors is also based on this. Here are collecting 20 questions about capacitor use in electronics enclosed with details. Let you have a more comprehensive understanding of the use of capacitors. How Capacitors Work? 20 Questions about the Role of Capacitors in Circuits Help you learn about capacitors functions in 30 minutes. These questions forcus on how capacitors work, where capacitors are used, why capacitors are used, the different types. 1) What is the function of a capacitor connected in parallel with the positive and negative terminals of the voltage source?When cap used in a rectifier circuit, it has a good filtering effect. When the voltage is alternating, the voltage at both ends cannot be changed suddenly due to the charging effect of the capacitor, which ensures the stability of the voltage. When cap used as a battery power supply, it is equivalent to short-circuiting the battery's AC signal, avoiding the increase in battery internal resistance and parasitic oscillation of the circuit due to the battery voltage drop. 2) A capacitor in series or in parallel can achieve the effect of coupling in the circuit. What is the difference between whether there is a capacitor in the circuit?In the AC multi-stage amplifying circuit, because of the different gains and powers of each stage, the DC working offset values of each stage are different. If the levels are directly coupled, it will cause the bias values of all levels to be mixed and unable to work normally. The “Pass AC, Block DC” characteristic not only solves the coupling of inter-stage exchanges, but also isolates the inter-stage biased value intermixing. 3) The two coupling capacitors in the basic amplifying circuit, the positive pole of the capacitor and the DC positive pole are connected to pass the AC and block the DC. Can the reverse connection also have this function?If the connection is reversed, the electrolytic capacitor will leak, which will change the DC operating point of the circuit and make the amplifying circuit abnormal or unable to work. 4) What is the role of the capacitor in the resistance-capacitance coupling amplifier circuit?Block the DC signal so that the static operating points of adjacent amplifying circuits are independent of each other and do not affect each other. 5) Can the analog circuit amplifier do not have a coupling capacitor? The theory in amplifier circuit adds a coupling capacitor between the transformer secondary coil and the transistor. Turn the output of the former stage into the input of the latter stage, so that two stages do not affect. The former stage is alternating current, so does the latter stage, so there no mutual influence.The former stage is indeed alternating current, but the latter stage is alternating current superimposed direct current. The transistor needs a DC bias. If there is no capacitor to block the DC, the coil of the transformer will bypass the DC bias of the transistor (because the inductor passes DC). 6) In the basic amplifier circuit, can the coupling capacitor be non-polar?In the basic amplifying circuit, the coupling capacitor depends on the frequency. When the frequency is high, a non-polar capacitor is needed. It is characterized by relatively stable, high withstand voltage, small size and capacity. Its biggest use is to block direct current and pass alternating current. Coupling capacitor is widely used in high-frequency alternating current paths, bypass, resonance and other circuits. (high-pass)When the frequency is low, since the capacitance of the non-polar capacitor is relatively low, the capacitive reactance is relatively increased, so it is necessary to use a polar electrolytic capacitor. Because of the electrolyte inside, the capacity can be made large, allowing low-frequency alternating current to pass. However, because of the organic medium between the internal two poles, the withstand voltage is limited. Non-polar capacitor is mostly used in circuits such as low-frequency AC paths, filtering, decoupling, and bypassing. (low-pass) 7) In a battery-powered circuit, why does the capacitor charging and discharging have the delay effect?Capacitors accumulate electric charge. During the charging process, the voltage rises slowly, while discharging vice versa. During charging, at the beginning, the voltage across the capacitor is zero, as the time goes by, the voltage gradually rises to the voltage you set to control the switching of the circuit. Of course, the discharging process can also be used to achieve this. The delay time is related to capacitor capacity, capacitor leakage, charging resistance, voltage, and sometimes the load resistance is also taken into consideration. 8) The resistance-capacitance coupling amplifier circuit can only amplify AC signals, but cannot amplify DC signals?Capacitor is an electronic component that blocks DC and AC. Therefore, the resistance-capacitance coupling amplifier circuit can only amplify AC signals. A direct coupling amplifier circuit is used to amplify DC signals. 9) How to tell the coupling capacitor and the bypass capacitor in the amplifying circuit?The negative pole of the coupling capacitor is not grounded, but is connected to the input of the next stage, and the negative pole of the bypass capacitor is grounded. 10) How to choose coupling capacitor for the multi-stage AC amplifier circuit?Generally ceramic capacitors can be done, and tantalum capacitors can be used if the performance is good. According to the frequency range of your input signal, capacitance of 103,104 can be used for high frequencies, and also electrolytic capacitors of about 22uF can be used for lower frequency AC signals. 11) The amplifying circuit adopts direct coupling, and the feedback network is a pure resistor network. Why is the circuit only possible to produce high-frequency oscillation?The oscillation comes from the phase shift of the closed loop reaching 180 degrees and the loop gain at this time is greater than zero. Using a pure resistor network as a feedback network will definitely not have phase shift, which comes from the open loop circuit of the amplifier only. Using a direct-coupled open-loop amplifier, there will be no capacitive elements between stages that will cause phase shifts, but the capacitor inside the transistor or MOS tube will cause it. These capacitances are all fF, the maximum is pF. The resonant frequency of the circuit composed of these capacitors and the equivalent resistance of the circuit is quite high. Therefore, the amplifier adopts direct coupling, with a pure resistor feedback network, which can only produce high-frequency oscillations. 12) How to estimate the output resistance of the first-stage amplifier and the input resistance of the second-stage amplifier? When the amplitude of the signal source is too large, what will happen at the output of the two-stage amplifier? Shake the input end of the amplifier and observe the output end to see what appears? why?A. The input resistance of the second stage amplifier is the output resistance of the first stage amplifier. B. Have distortion. C. Cause clutter due to human body induction. 13) How to use the charge and discharge of capacitors to understand filtering, decoupling and bypassing?Capacitors block DC and pass AC. Blocking DC is easy to understand, but passing AC is not easy to understand. As long as you understand it, you can understand filtering, decoupling and bypass.Capacitors are charging and discharging, but the direction of alternating current changes alternately. The magnitude of the amplitude also changes periodically. The entire changing image is a sine curve.The capacitor is connected to the AC circuit, and due to the periodic change of the AC voltage, it is also periodically changes. There is a charging and discharging current in the line. This charging and discharging current has the same shape as the voltage except that the phase is 90 degrees ahead of the voltage, which is equivalent to the AC passing through the capacitor.The alternating current passing through the resistance consumes electric energy (heating) on the resistor. However, the capacitor only exchanges energy with the power supply. The power supply sends energy to the capacitor when charging, and the capacitor returns the electrical energy to the power supply when discharging. Therefore, the power generated by multiplying the voltage by the current here is called reactive power.What needs to be clear is that when the capacitor is connected to an AC circuit, the flowing electrons (current) do not really rush through the insulating layer, but generate current in the circuit. This is because in the circuit, reverse discharge and forward charge are in the same direction, the forward discharge and reverse charge either. Understand that the capacitor is connected to AC, then the AC component is bypassed to the ground, and also the filtering is completed. 14) How to use bypass capacitor, filter capacitor and decoupling capacitor respectively?These three types of capacitors are actually used for filtering, but they are used in different circuits, so their names and usages are different.Filter capacitor, this is the capacitor we usually use after power rectification. It is a capacitor that rectifies the AC of the rectifier circuit into a pulsating DC and smoothes it by charging and discharging. This type of capacitor is generally an electrolytic capacitor with a large capacity.Bypass capacitors are used to filter out the high frequency components in the input signal. They are mainly used to filter high frequency clutter. Usually, ceramic capacitors and polyester capacitors are used. The capacity is small and is at the picofarad level.The decoupling capacitor takes the interference of the output signal as the filtering object. It is equivalent to the battery and uses its charge and discharge so that the amplified signal will not be interfered by the sudden change of the current. Its capacity depends on the frequency of the signal and the degree of ripple suppression. 15) Regarding the function of the capacitor, under what circumstances use the coupling capacitor and under what circumstances use the filtering capacitor?After the alternating voltage is applied to the two ends of the capacitor, it will continue to charge and discharge with the alternating frequency of the current. At this time, there is an alternating current of the same frequency in the circuit, which is the passing characteristic of the capacitor.When the frequency is appropriate, the capacitor can be regarded as a path to the circuit, and the AC output of the previous stage can be transmitted to the subsequent circuit through the capacitor.For direct current, it is isolated, because when the voltage at both ends is charged to be equal to the circuit voltage, there will be no more charging current.When acting on the transmission of front and rear AC signals, it is coupling, and when acting on filtering out fluctuation components and useless AC components, it is filtering. 16) The capacitor filter of the rectifier circuit uses its charge and discharge, but sometimes the filter uses the capacitor to have a different capacitive reactance to the non-pass frequency signal, such as a bypass capacitor. So which point is used when analyzing capacitor filtering?The theoretical explanation of using capacitor characteristic is more general, and the theory using capacitive reactance is more in-depth. The role of capacitor is to use its charge and discharge characteristics, depending on what components you want to filter out. Use large capacitors to filter low frequencies and a small capacitor for high frequency. In theory, the filtering in the low-frequency rectifier circuit and the bypassing in the high-frequency circuit are the same, and the difference is the capacitive reactance. 17) After the filter capacitor is fully charged, it will discharge the back circuit and then in cycle?Such a working process in the circuit, capacitor is related to the frequency of the signal. First of all, it depends on what you want to put the capacitor in the circuit. When used as a filter, it filters out a certain frequency signal to the ground. For example, the capacitors at the front end of the chip power supply are decoupling. The phenomenon you mentioned is like the filter capacitor before the voltage regulator is turned off and the filter capacitor of the switching power supply. 18) What is the specific coupling of capacitors? Is there any difference compared with filtering?Coupling refers to the process of signal transmission from the first stage to the second stage, and usually refers to AC coupling when it is not specified. Decoupling refers to taking further filtering measures on the power supply to remove the influence of mutual interference between the two levels of signals through the power supply. The coupling constant refers to the time constant corresponding to the product of the coupling capacitance value and the second-stage input impedance value.Decoupling has three purposes: D.Remove the high-frequency ripple in the power supply, and cut off the high-frequency signal of the multi-stage amplifier through the crosstalk path of the power supply.E.When the large signal is working, the circuit's demand for the power supply increases, causing the power supply fluctuations, here decoupling reduces the impact of power fluctuations on the input stage/high voltage gain stage during large signals.F. Form a floating ground or floating power supply, and complete the coordination of various parts of the ground or power supply in a complex system.The high-frequency switching noise generated by the active device during switching will propagate along the power line. The main function of the decoupling capacitor is to provide a local DC power supply to the active device to reduce the noise on the board and to guide it to the ground. 19) How to distinguish whether the capacitor in the circuit is a filter capacitor or a bypass capacitor?The filter capacitor is in the power circuit; the bypass capacitor is in the signal circuit.In fact, their function is basically the same. The filter capacitor: Bypasses or filters out the pulsating current components and plays the role of charging and discharging. Bypass capacitor: Filter or bypass high frequency or low frequency components in the circuit. 20) Is the coupling capacitor a decoupling capacitor?It is completely different. The coupling capacitor is for signal transmission, and the decoupling capacitor is for reducing interference.
Lydia On 2021-09-28
Introduction: Drones, also known as unmanned aerial vehicles (UAVs), have revolutionized various industries by providing innovative solutions to complex problems. They are equipped with advanced technology and rely on a combination of mechanical, electrical, and electronic components to achieve flight and perform specific tasks. Among these components, the electronic components play a crucial role in controlling and coordinating the drone's operations. Drones have become increasingly popular in various industries, from aerial photography to package delivery. These unmanned aerial vehicles rely on a complex system of electronic components to function efficiently. In this report, we will explore the core electronic components found in a drone and discuss their functionalities and importance. Understanding these components is essential for anyone interested in drone technology or working with drones in different applications.Core electronic components:This report aims to provide an overview of the core electronic components found in a drone and explain their functionalities.1.Flight Controller:The flight controller is the brain of a drone. It is a microcontroller board that processes sensor data and commands from the pilot or an autonomous system to control the drone's flight. The flight controller uses an array of sensors, such as accelerometers, gyroscopes, and magnetometers, to measure the drone's orientation, speed, and position in real-time. It then adjusts the motor speeds and other control surfaces to maintain stability and achieve the desired flight maneuvers. 2.Electronic Speed Controllers (ESCs):ESCs are responsible for controlling the speed and direction of the drone's motors. They receive signals from the flight controller and convert them into specific voltage and current levels to drive the motors accordingly. ESCs play a vital role in maintaining stability, responsiveness, and overall flight performance. Modern drones often utilize electronic speed controllers with built-in firmware that provides advanced features like motor synchronization, motor braking, and support for various motor types. Fig 1: Electronic Speed Controllers3. Brushless Motors:Brushless motors are commonly used in drones due to their efficiency, durability, and high power-to-weight ratio. Unlike brushed motors, they do not rely on physical brushes for commutation, resulting in reduced friction and wear. Brushless motors generate rotational force by synchronizing the energization of multiple windings through electronic commutation. They are lightweight, compact, and provide precise control over motor speed and torque, making them ideal for drone applications.Fig 2: Brushless Motors4. Multi-Rotor control board: In this study, the drone has controlled via a Multi-Rotor control board. The multi-rotor's flying is managed by this controller. Its purpose is to stabilise the aircraft during flight and to do this, it takes signals from on-board gyroscopes (roll, pitch and yaw) and passes these signals to the Atmega324PA processor, which processes signals according the users designated firmware and passes the control signals to the mounted ESCs (Electronic Speed Controllers) and the mixture of these signals commands the ESCs to make fine adjustments to the motors rotational speeds which stabilises the craft. The Multi-Rotor control board additionally utilises radio signals via a receiver and transmits these signals, together with stabilisation signals, to the Atmega324PA IC via the user demand inputs for the aileron, elevator, throttle, and rudder. This information is analysed and delivered to the ESCs. It controls each motor's rotational speed to regulate the direction of flight (up, down, backwards, forwards, left, right, and yaw).Fig 2: Multi-Rotor control board5. Batteries and Power Distribution:Drones require a reliable power source to operate. Lithium-polymer (LiPo) batteries are commonly used due to their high energy density and lightweight characteristics. The battery provides electrical energy to the flight controller, ESCs, and other electronic components. To distribute power effectively, drones utilize power distribution boards (PDBs) or power management systems that regulate the voltage and current supplied to various components, ensuring stable and efficient operation. 6. Radio Control System:The radio control system allows the drone to be controlled remotely by a pilot or an autonomous system. It consists of a transmitter, receiver, and antennas. The pilot uses the transmitter to send commands to the drone, which are then received and decoded by the receiver on the drone. The radio control system operates on specific frequency bands and employs various modulation techniques to ensure reliable communication and minimize interference. 7. Sensors and Imaging Systems:Drones often incorporate a range of sensors and imaging systems to gather data about the environment or perform specific tasks. These can include cameras, infrared sensors, LiDAR (Light Detection and Ranging), GPS (Global Positioning System), altimeters, and more. Cameras and sensors provide visual and environmental feedback to the flight controller, enabling features such as aerial photography, mapping, obstacle avoidance, and autonomous flight modes.Drones incorporate a variety of sensors to gather data about the environment and aid in flight control. Some common sensors found in drones include:Accelerometers: Measure acceleration forces to determine the drone's orientation and movement.Gyroscopes: Measure angular velocity to help stabilize the drone and maintain its orientation.Magnetometers: Detect magnetic fields to assist in orientation and navigation.Barometers: Measure atmospheric pressure to estimate altitude and assist in altitude hold and altitude change functions.GPS: Global Positioning System sensors provide accurate positioning and navigation data.Infrared Sensors: Detect obstacles and aid in obstacle avoidance during flight. 8. Onboard Computing Systems:Many drones incorporate onboard computing systems to process data, perform complex calculations, and execute autonomous flight algorithms. These systems may include microprocessors, microcontrollers, and graphic processing units (GPUs). The onboard computing systems enable real-time decision-making, data analysis, and control algorithms for tasks such as autonomous navigation, object recognition, and collision avoidance. 9. Communication Systems:Drones often require communication systems to transmit data, telemetry, and control signals to and from the ground station or other drones. Wireless communication technologies such as Wi-Fi, Bluetooth, or radio frequency (RF) systems are commonly used. These systems ensure reliable and secure communication, enabling remote control, real-time video streaming, and swarm coordination in the case of multiple drones operating together.10. Safety and Redundancy Systems:To enhance safety and reliability, drones may incorporate various electronic components and systems. These can include redundant power systems, redundant flight controllers, backup sensors, and fail-safe mechanisms. Redundancy helps mitigate the risk of component failures and ensures that critical functions can continue operating in case of a system fault, improving the overall safety and resilience of the drone. 11. Transmitter and Receiver:The transmitter and receiver form the radio control system of a drone, enabling remote control and communication between the pilot and the drone. The transmitter is the handheld device held by the pilot, while the receiver is installed on the drone itself.Key aspects of the transmitter and receiver electronics components include:Transmitter: The transmitter is the control interface held by the pilot. It consists of control sticks, switches, buttons, and other input mechanisms. These controls allow the pilot to send commands and inputs to the drone, such as adjusting throttle, controlling direction, changing flight modes, or activating specific features. The transmitter typically operates on specific frequency bands and employs various modulation techniques to ensure reliable communication with the receiver.Receiver: The receiver is the counterpart of the transmitter installed on the drone. It receives the commands sent by the pilot through the transmitter and decodes them into control signals that are understood by the drone's flight controller. The receiver is connected to the flight controller or autopilot system, allowing the drone to interpret and execute the pilot's commands accurately.Antennas: Both the transmitter and receiver have antennas for transmitting and receiving radio signals. These antennas ensure the effective transmission and reception of control signals between the pilot and the drone. They can be external or internal, depending on the design of the drone and the radio system used. 12. Landing Gear:Landing gear provides support and protection for the drone during takeoff, landing, and ground operations. The design of the landing gear may vary depending on the drone's purpose, size, and terrain it operates in. Key aspects of drone landing gear include:Legs: The landing gear consists of legs that are attached to the drone's frame. The number and length of the legs depend on the drone's configuration and purpose. Most landing gears have three or four legs for stability.Material: Landing gear is typically made of lightweight and durable materials such as plastic, carbon fiber, or aluminum. These materials provide sufficient strength to support the weight of the drone while minimizing the additional weight.Shock Absorption: Some landing gears incorporate shock-absorbing mechanisms or dampeners to absorb the impact of landings and reduce vibrations. These features help protect the drone's components from damage and ensure a smooth landing experience.Retractable Landing Gear: Certain drones, especially professional photography or cinematography drones, may feature retractable landing gear. This allows the landing gear to be raised or retracted during flight, providing an unobstructed view for cameras or sensors mounted on the drone.Skids or Feet: The lower ends of the landing gear legs often have skids or feet that provide stability and grip during landing and ground operations. These skids or feet prevent the drone from tipping over or slipping on surfaces and help protect the drone's components from direct contact with the ground.Landing gear components are crucial for safe takeoffs, landings, and ground operations. They provide stability, protect the drone's components from damage, and ensure a smooth landing experience. The design of the landing gear is influenced by factors such as the drone's size, weight, intended use, and operating environment.Conclusion: Drones rely on a complex system of electronic components to achieve stable flight, perform specific tasks, and provide valuable functionalities across various industries. Understanding the core electronic components discussed in this report provides a foundation for comprehending the inner workings of drones. As drone technology continues to advance, these components will evolve, enabling drones to become more intelligent, versatile, and efficient in their operations.
Karty On 2023-05-17
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