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
ⅠIntroduction RTC is an abbreviation for Real-Time Clock. RTC modules are simply TIME and DATE remembering systems with a battery setup that keeps the module running in the absence of external power. This keeps the TIME and DATE current. As a result, we can get accurate TIME and DATE from the RTC module whenever we want. Catalog ⅠIntroduction Ⅱ RTC Module Explaintion 1.1 What is RTC module? 1.2 Timing Ⅲ DS1302 RTC Module Basics 3.1 DS1302 RTC Module Pinout 3.2 DS1302 Pin Configuration 3.3 Features 3.4 Technical Specifications 3.5 Block Diagram of DS1302 RTC Chip Ⅳ DS1302 RTC Module with Arduino 4.1 Setting up the Hardware 4.2 Making the Code Ⅴ FAQ Ⅱ RTC Module Explaintion 1.1 What is RTC module? A real-time clock (RTC) is an electronic device that measures the passage of time (typically in the form of an integrated circuit). Although the term is most commonly associated with devices found in personal computers, servers, and embedded systems, RTCs can be found in almost any electronic device that requires an accurate time of day. A real-time clock mechanism and a long-lasting battery are used by an RTC module to keep track of the time. On a small board with five pins, the module contains a 3V lithium-ion battery, a 32 kHz crystal, and a DS1302 chip. The DS1302 chip is extremely power efficient and can run for up to 5 years on a 3V lithium battery. Figure1:RTC Module The power supply voltage is 5 volts. The serial I2C communication protocol is used by the RTC module. which makes interfacing with the microcontroller very simple. Aside from VCC and GND, only two pins (CLK and DAT) are required for interfacing with Arduino . CLK and DAT are the required SCL and SDA pins for I2C communication, respectively, while RST is the reset pin (optional). 1.2 Timing The majority of RTCs use a crystal oscillator,[8][9] but some can use the power line frequency. The crystal frequency is typically 32.768 kHz, which is also the frequency used in quartz clocks and watches. It is a convenient rate to use with simple binary counter circuits because it is exactly 215 cycles per second. The low frequency saves power while remaining above the range of human hearing. The temperature has little effect on the size of these crystals' quartz tuning forks, so the temperature has little effect on their frequency. Some RTCs employ a micromechanical resonator on the RTC's silicon chip. This reduces the size and cost of an RTC by reducing the number of parts. Micromechanical resonators are much more temperature-sensitive than quartz resonators. So, using an electronic thermometer and electronic logic, compensate for temperature changes. Typical crystal RTC accuracy specifications range from 100 to 20 parts per million (8.6 to 1.7 seconds per day), but temperature-compensated RTC ICs are available with accuracy as low as 5 parts per million. In practice, this is adequate for celestial navigation, the traditional function of a chronometer. Chip-scale atomic clocks became available in 2011. Despite being significantly more expensive and power-hungry (120 mW vs. 1 W), they keep time to within 50 parts per trillion. Ⅱ RTC Module Related Video: What is RTC and how it is working || real time clock|| diyproject || graspelectronics RTC Module Video Description: what is rtc ? and how it is working ? RTC stands for real tme clock. RTC module code is ds3231 the code is given in the datasheet for all components . it is work in 3.3v 5v may kill the module. it is used to maintain accurate time keeping when main power to the device is interrupted. The rtc maintan maintains second,hours, day,date, month and year information. Real time clockThe date at end of the month is automatically adjusted for month with fewer then 31 days including corrections for leap years. Ⅲ DS1302 RTC Module Basics Before we start this project, we will have a look at basics of DS1302 RTC Module. 3.1 DS1302 RTC Module Pinout Figure2: Pinout 3.2 DS1302 Pin Configuration Pin No. Pin Name Description 1 Vcc2 Second supply input, when Vcc2 is greater than Vcc1 + 0.2V, DS1302 powers through this pin 2,3 X1 and X2 For connecting external crystal oscillator of 32.768kHz 4 GND Ground 5 CE This pin set to HIGH during a Read or a Write 6 I/O (Data Line) This is the bi-directional data pin to 3-wire interface 7 SCLK(Serial Clock) Used to synchronize data movement on the serial interface 8 Vcc1 Rechargeable energy source connected to this pin 3.3 Features Minutes, seconds, date, hours, month, day of the week, year, and leap-year compensation up to 2100 are all counted in real-time.Single and multiple (Burst mode) data transfers for Clock or RAM data read and write31*8 general-purpose battery-powered RAMSimple interface based on three TTL-compatible wiresFull operation from 2V to 5.5VSmall sizepin DIP and 8-pin SO packages are available. 3.4 Technical Specifications 3.3V is the typical supply voltage.Voltage range (concerning ground) on any pin: -0.5V to 7.0°CTemperature range (commercial): 0°C to +70°CTemperature range (Industrial): -40°C to +85°CTemperature range for storage: -55°C to +125°CTemperature for Soldering: 260°C Note: The DS1302 Datasheet, which is linked at the bottom of this page, contains all of the technical information. 3.5 Block Diagram of DS1302 RTC Chip Figure3:Diagram 3.6 How to Use a DS1302 Chip? A typical DS1302 operating circuit is shown below. The DS1302 has two power inputs, one from the cell and one from the controller. To generate the required frequency, a crystal oscillator with a frequency of 32.768 kHz is used. The data line, reset pin, and serial-clock pins of the DS1302 are connected to the microcontroller for interfacing. Figure4:Example Ⅳ DS1302 RTC Module with Arduino 4.1 Setting up the Hardware Pins A4 and A5 on the Arduino are dedicated to I2C communication. However, with the assistance of software code, any pin can be used to serve the purpose. This is known as a software I2C bus. For our purpose, we will use the "Rtc by Makuna" library, which can be found in the Arduino IDE's Tools -> Manage Libraries... menu. Following installation, the examples provided with the library can be used to learn more about the functions and initialization methods. Figure5:Library Manager Arduino To use the following code, connect the RTC module's DAT, CLK, and RST pins to Arduino's digital pins 6, 7, and 8. 4.2 Making the Code Now we must write the C code to set the current date and time in the RTC module, read from the module, and write to the serial monitor every second. Figure6 :Code for connection with RTC Module The line ThreeWire DatClkRst (6,7,8); creates a bundle of three wires that will be used to initialize the object Rtc from the RtcDS1302 class using the command RtcDS1302ThreeWire> Rtc(DatClkRst); The function SetDateTime resets the DS1302 chip's date and time. The date and time at the time of Arduino's C code compilation are saved in the RtcDateTime object "compiled." The loop() method has a one-second delay. Date and time are read from the RTC module and displayed on the serial monitor in each iteration. To learn how to use this RTC module, remove the line and flash the Arduino with the updated code again. Even if the Arduino's power is turned off or the RTC module is disconnected and reattached, the Arduino will be able to read and display the correct real-time. Ⅴ FAQ 1. Which RTC module is best? Choosing The Right RTC For Your Project The DS-1307 is often the default choice for an RTC. ...The DS3234 has the distinction of using an SPI interface instead of I2C. ...The RV-1805 draws so little power that this Sparkfun module gets by without a backup battery at all. 2. What is RTC module DS3231? The DS3231 is a low-cost, extremely accurate I2C real-time clock (RTC) with an integrated temperature- compensated crystal oscillator (TCXO) and crystal. The device incorporates a battery input, and maintains accurate timekeeping when main power to the device is interrupted. 3. What is RTC in mobile phone? A real-time clock (RTC) is an electronic device (most often in the form of an integrated circuit) that measures the passage of time. 4. What is RTC in laptop? The real-time clock, or RTC, maintains the internal clock … in real time. That is how the laptop knows the time as well as the date whenever you turn it on. ... Or you can keep the laptop plugged into an AC source. 5. Does RTC work without battery? The RTC module accurately keeps time with a precise oscillator and is maintained with a small battery (not included). 6. How does RTC module work? An RTC maintains its clock by counting the cycles of an oscillator – usually an external 32.768kHz crystal oscillator circuit, an internal capacitor based oscillator, or even an embedded quartz crystal. Some can detect transitions and count the periodicity of an input that may be connected. 7. What is the difference between DS1307 and DS3231? The main difference between the DS3231 and DS1370 is the accuracy of time-keeping. DS1307 comes with an external 32kHz crystal for time-keeping whose oscillation frequency is easily affected by external temperature. This usually results with the clock being off by around five or so minutes per month.
kynix On 2021-12-18
The circuit that converts analog signals into digital signals is called analog-to-digital converter (abbreviated as a/d converter or adc, analog to digital converter). The function of A/D conversion is to convert time-continuous and continuous-amplitude analog quantities It is converted into a digital signal with discrete time and discrete amplitude. Therefore, A/D conversion generally involves four processes: sampling, holding, quantization, and encoding. In actual circuits, some of these processes are combined. For example, sampling and holding, quantization and coding are often implemented simultaneously during the conversion process. A short video introducing a/d converter: Electronic Basics: ADC (Analog to Digital Converter) Catalog I What is A/D converter? II Wiring Layout of Successive Approximation A/D Converter III Wiring Layout of High-precision ∑-△ A/D Converter IV Conclusion FAQ I What is A/D converter? The process of converting analog to digital is called the analog-to-digital converter, and the circuit that completes the conversion is called the A/D converter (abbreviate ADC). Its function is making the analog signal whose time and amplitude are continuously converted to discrete digital signal whose time and amplitude are also discrete. Fig. 1 Basic operation of an A/D converter The conversion accuracy of monolithic integrated A/D converters is described by resolution and conversion errors, and the layout of A/D converter is also changing as the conversion accuracy of AD converters increases. Specifically, the resolution rate of A/D converter refers to the number of discrete digital signals that can be output for analog signals within the allowable range, and the conversion error is usually given in the form of the maximum output error. In general, it represents the difference between the actual output of the A/D converter and the theoretical output. The multiples of the lowest significant bits are commonly represented it. For example, the relative error between −1/2 LSB and +1/2 LSB, shows that the error between the actual output digital quantity and the theoretical output digital quantity should be less than half a word of the lowest bit. Fig. 2 Relationship between analog input and digital output At first, A/D converters originated in the analog paradigm, in which most of the physical silicon was analog. With the development of new design topology, this paradigm has evolved into a digital component as the main part in low-speed A/D converters. Although the leading role of the A/D converter change from analogue to digital, the wiring criterion of it has not changed. When cabling designers design mixed-signal circuits, basic wiring knowledge is still needed to achieve efficient wiring. In this paper, we take the successive approximation A/D converters and ∑-type A/D converters as examples to discuss the PCB routing strategy for the A/D converters. Fig. 3 An 8-level ADC coding scheme II Wiring Layout of Successive Approximation A/D Converter The successive approximation A/D converters have 8-bit, 10-bit, 12-bit, 16-bit, and 18-bit resolution. Initially, the process and structure of these converters were bipolar with R-2R trapezoidal resistor networks. However, these devices have been transferred to the CMOS process by using the capacitance-charge distribution topology recently. But this migration does not change the system routing strategy of these converters. Except for high resolution devices, the basic wiring methods are consistent. For these devices, special care is needed to prevent digital feedback from converter serial or parallel output interfaces. From the point of view of circuits and on-chip resources dedicated to different fields, analog plays a dominant role in successive approximation A/D converters. Fig. 4 is a block diagram of a 12-bit CMOS successive approximation A/D converter. Fig. 4 Block diagram of a 12-bit CMOS successive approximation A/D converter This converter uses the charge distribution formed by the capacitor array. In this block diagram, most of the sample/hold, comparator, digital-to-analog converter (DAC) and 12-bit successive approximation A/D converter are simulated. The rest of the circuit is digital. Therefore, most of the energy and current needed for this converter are used in internal analog circuits. This device requires very small digital current, only D/A converters and digital interfaces will have a small amount of switch-on and off. In addition, these types of converters can have multiple ground and power connection pins. The names of pin are often misunderstood because pin labels used to distinguish analog and digital connections. These labels are not intended to describe system connections to PCB, but to determine how digital and analog currents flow out of the chip. Knowing that this information and main resources consumed in the chip are analog, you will understand the significance of connecting the power supply and the ground pin on the same plane, such as the analog plane. Fig. 5 The successive approximation A/D converter, regardless of its resolution, usually has at least two connecting ends: AGND and DGND. Take Microchip's A/D converters, MCP3201 and MCP3008, as the examples in this article. Fig. 5 Pin configurations for typical 10-bit and 12-bit converters More details about these devices, two grounding pins are usually pulled out of the chip: AGND and DGND. The power supply has one lead, when using these chips for PCB wiring, AGND and DGND should be connected to the analog ground plane. And the analog and digital power pins should also be connected to the analog power plane or at least to the analog power rail, in general, every power pin is connected closely to an appropriate bypass capacitor as close as possible. But the devices such as MCP3201 have only one ground pin and one positive power pin, the only reason for this is due to the limitation of the number of packaged pins. However, isolating the grounding can improve the converter's performance and the repeatable accuracy. For the power strategy of all these converters, the analog plane should connect all ground, positive and negative power pins. Also, a “COM” pin or an “IN” pin associated with an input signal should be connected as close to the signal grounding as possible. For higher-resolution successive approximation A/D converters (16-bit and 18-bit converters), separate digital noise from "quiet" analog converters and power supply planes requires additional attention. So external digital buffers should be used for noise-free operation when these devices are interfaced with single-chip computers. Although these types of successive approximation A/D converters usually have internal double buffers on the digital output side, external buffers are still needed to further isolate the analog circuits in the converters from the digital bus noise. Fig. 6 Correct power policy for this system For high-resolution successive approximation A/D converters, the power and grounding of the converter should be connected to the analog plane. Then, the digital output of the A/D converter should be buffered with external tristate output buffers. These buffers have the function of isolating the analog and digital sides in addition to the high-drive capability. Fig. 7 Layout block diagram of successive approximation A/D converter III Wiring Layout of High-precision ∑-△ A/D Converter Fig. 8 Schematic diagram of high-precision ∑-△ type A/D converter The main part of a silicon board in high precision ∑-△ type A /D converter is digital. In the early stage of converter production, the shift in the example prompted users to use PCB planes to isolate digital and analog noise. Like successive approximation A/D converters, these types of A/D converters may have multiple analog grounding, digital grounding, and power pins. Digital or analog design engineers tend to separate the pins and connect them to different planes. However, this is wrong, especially if you try to solve the serious noise problem of 16-bit to 24-bit precision devices. For a high-resolution ∑-△ type A/D converter with 10Hz data rate, the clock (internal or external) added to the converter may be 10MHz or 20MHz. This high-frequency clock is used for switching modulators and over-sampling engines. For these circuits, the AGND and DGND pins are connected on the same ground plane as the successive approximation A/D converters. Also, analog and digital power pins are best connected on the same plane. The requirement of analog and digital power plane is the same as that of high-resolution successive approximation A/D converter. There must be a ground plane, which means that at least two panels are required. On this double panel, the ground plane should cover at least 75% of the total panel area. The purpose of the ground plane layer is to reduce the grounding impedance and inductance, and to provide shielding that against electromagnetic interference (EMI) and radio frequency interference (RFI). If an internal connection line is required on the ground plane side of the circuit board, the line should be as short as possible and perpendicular to the earth current loop. IV Conclusion For low-precision A/D converters, such as six-bit, eight-bit or maybe even 10-bit A/D converters, the analog and digital pins are not separated. But when the converter accuracy and resolution of the selected converters increase, wiring requirements become more stringent. High-resolution successive approximation A/D converters and ∑-△ type A/D converters need to be directly connected to low-noise analog ground and power plane. FAQ 1. How does an AD converter work? Analog-to-Digital converters (ADC) translate analog signals, real world signals like temperature, pressure, voltage, current, distance, or light intensity, into a digital representation of that signal. This digital representation can then be processed, manipulated, computed, transmitted or stored. 2. What are ad DA converters used for? DACs are commonly used in music players to convert digital data streams into analog audio signals. They are also used in televisions and mobile phones to convert digital video data into analog video signals. These two applications use DACs at opposite ends of the frequency/resolution trade-off. 3. What is the main role of an ADC? In more practical terms, an ADC converts an analog input, such as a microphone collecting sound, into a digital signal. An ADC performs this conversion by some form of quantization – mapping the continuous set of values to a smaller (countable) set of values, often by rounding. 4. What is the difference between AD and DA converters? A D/A converter takes a precise number (most commonly a fixed-point binary number) and converts it into a physical quantity (example: voltage or pressure). ... An ideal D/A converter takes abstract numbers from a sequence of impulses that are then processed by using a form of interpolation to fill in data between impulses. 5. Why is a DAC needed? Any time you want to listen to a digital audio signal (like an MP3 or the audio from a digital video) through an analog output (like wired headphones and speakers), you need a DAC to convert the digital signal from the source into an analog signal at the point of connection. ... This is why you need a separate DAC. 6. How are AD converters categorized? Main Types of ADC Converters. Successive Approximation (SAR) ADC. Delta-sigma (ΔΣ) ADC. Dual Slope ADC. Pipelined ADC. 7. Which is fastest ADC? flash ADC. The flash ADC is the fastest type available. A flash ADC uses comparators, one per voltage step, and a string of resistors. A 4-bit ADC will have 16 comparators, an 8-bit ADC will have 256 comparators. 8. What is better analog or digital signal? The smooth analog signal matches the recorded sound wave better than the steps of a digital recording. However, the analog medium (vinyl or magnetized tape) the recording is imprinted on can have tiny imperfections that cause cracking and popping noise. 9. Why are ADC and DAC required in an embedded system? An embedded system uses the ADC to collect information about the external world (data acquisition system.) The input signal is usually an analog voltage, and the output is a binary number. 10. Why ADC is used in microcontroller? An analog-to-digital converter (ADC) is used to convert an analog signal such as voltage to a digital form so that it can be read and processed by a microcontroller. Most microcontrollers nowadays have built-in ADC converters. It is also possible to connect an external ADC converter to any type of microcontroller.
kynix On 2018-09-20
Introduction The laser displacement sensor is a device that uses laser technology for measuring. It consists of a laser, a laser detector and a measuring circuit. It is a new type of measuring instrument. For example, it can accurately measure the position and displacement of a object in a non-contact method.The laser has the excellent characteristics of good straightness, so the same laser displacement sensor has higher accuracy than the known ultrasonic sensor. However, the laser generating device is relatively complex and large in size. Therefore the application range of the laser displacement sensor is strict. Catalog Introduction Ⅰ Basic Working Principle 1.1 Measurement Objects 1.2 Measurement Methods Ⅱ Measurement Applications in Product Line Ⅲ Laser Displacement Sensors Advantages Ⅳ Alternative Types of Laser Displacement Sensor Ⅴ Laser Displacement Sensors Suppliers Ⅵ FAQ Ⅰ Basic Working Principle 1.1 Measurement Objects The laser beam emitted by the laser diode is irradiated to the surface of the object to be measured, and the reflected light passes through a set of lenses and is projected onto the photosensitive element matrix. The photosensitive part can be a CCD(charge-coupled device), CMOS(complimentary metal oxide semiconductor) or a PSD(position-sensitive detector) element. And the intensity of the reflected light depends on the surface characteristics of the measured object. The laser displacement sensor can also measure thickness, vibration, distance, diameter and other geometric quantities of the detected object. displacement sensor working state" width="294" height="222" /> Figure 1. Laser Displacement Sensor Working State 1.2 Measurement Methods According to the measurement principle, there are laser triangulation method and laser echo analysis method. The former method is generally suitable for high-precision and short-distance measurement, while the latter method is used for long-distance measurement. The following are the details of there methods.🔺Triangulation MethodThe simplest triangular displacement measurement system is to emit a beam of light from the light source to the surface of the object, and observe the position of the reflection point through imaging in the other direction, so that the displacement of the object can be detected. Since the incident and reflected light form a triangle, this method is called triangulation. According to the relationship between the angle between the incident light and the surface of the object to be measured, it can be divided into direct type and inclined type.The light emitted by the laser, after being focused by the condenser lens, is vertically incident on the surface of the measured object, and the movement of the object or the surface change causes the incident light spot to move along the incident optical axis. Receive the scattered light from the incident point of the lens and image it on the sensitive surface of the position detector (such as PSD, CDD) of the light spot. However, the laser beam of the sensor is perpendicular to the measured surface. So there is only one accurate focus position, and the images at the other positions are in different degrees of high focus state. In addition, high focus will cause the dispersion of the image point, thereby reducing the measuring accuracy. Figure 2. Light Path (direct-injection type) In order to improve accuracy, θ1 and θ2 must meet: tgθ1=Utgθ2In the formula, U is the lateral magnification. At this time, the side points within a certain depth of field can be imaged on the detector in focus to ensure accuracy.If the displacement of the light spot on the imaging surface is x', using the proportional relationship between the sides of similar triangles. The displacement of the measured surface can be obtained according to the following formula: In the formula, α is the distance from the intersection of the laser beam optical axis and the receiving optical axis to the front main surface of the receiving lens, and b is the distance from the rear main surface of the receiving lens to the center point of the imaging surface. θ1 is the angle between the optical axis of the laser beam and the optical axis of the receiving lens, and θ2 is the angle between the measured normal line and the optical axis of the receiving lens. Figure 3. Light Path (inclined type) The light emitted by the laser is incident on the measured surface at a certain angle with the normal direction of the measured surface, and the scattered light or reflected light of the measured surface of the light spot is also received by the receiving lens. The conditions should be satisfied at: tg(θ1+θ2)=Utgθ3If the image of the light spot moves x'on the sensitive surface of the detector, using the proportional relationship of similar triangles, the moving distance of the object surface along the normal direction is: Where, θ1 is the angle between the optical axis of the laser beam and the normal of the measured surface. θ2 is the angle between the optical axis of the imaging lens and the normal of the measured surface. θ3 is the angle between the optical axis of the detector and the optical axis of the imaging lens. The laser transmitter shoots the visible red laser light to the surface of the object to be measured through the lens. The laser light scattered by the surface of the object passes through the receiver lens and is received by the internal CCD linear camera. According to different distances, the camera can be set at different angles to trace this light spot. Based on this angle and the known distance between the laser and the camera, the digital signal processor can calculate the distance between the sensor and the measured object.And meanwhile, the position of the light beam at the receiving element is processed by analog and digital circuits, and the corresponding output value is calculated by the microprocessor analysis. Finally, the standard data signal is output proportionally in the analog window set by the user. If the switch output is used, it will be turned on within the set window and turned off outside the window. In addition, the analog quantity and the switch quantity output can set up the detection window independently.The maximum linearity of the laser displacement sensor adopting the triangulation method can reach 1um, and the resolution can reach the level of 0.1um. For example, the ZLDS100 type sensor can achieve high resolution of 0.01%, high linearity of 0.1%, high response of 9.4KHz, and can adapt to harsh environments. 🔺The Echo AnalysisThe laser displacement sensor uses the principle of echo analysis to measure the distance to achieve a certain degree of accuracy. The inside of the sensor is composed of a processor unit, an echo processing unit, a laser transmitter, and a laser receiver. The laser displacement sensor emits one million laser pulses per second through the laser transmitter to the detection object and returns to the receiver. The processor calculates the time required for the laser pulse to meet the detection object and return to the receiver to calculate the distance. The output value is the average output of thousands of measurement results. It is measured by the so-called pulse time method. The laser echo analysis method is suitable for long-distance detection, but the measurement accuracy is lower than that of the laser triangulation method, and the farthest detection distance can reach 250m. Figure 4. Laser Displacement Sensor Application Ⅱ Measurement Applications in Product Line Laser displacement sensors are often used to measure physical quantities such as length, distance, vibration, speed, and orientation, and can also be used for flaw detection and atmospheric pollutant monitoring.1) Size determinationPosition identification of small parts, monitoring of the presence of parts on the conveyor belt, detection of material overlap and coverage, control of the robot position (tool center position), device status, device position (through small holes), liquid level monitoring, thickness measurement, vibration analysis, crash test measurement, automobile related test, etc.2) Thickness Measurement of Metal Flakes and Thin PlatesThe laser sensor measures the thickness of a thin metal sheet (thin plate). Detection of changes in thickness can help find wrinkles, small holes or overlaps to avoid machine malfunctions.3) Simultaneous MeasurementGetting more values includes angle, length, inner and outer diameter eccentricity, conicity, concentricity and surface profile.4) Stuff Length MeasurementPut the measured stuff on the conveyor belt at the designated position, the laser sensor detects the it and measures it simultaneously with the triggered laser scanner, and finally obtains the length.5) Inspection of UniformityPlace several laser sensors in a row in the tilt direction of the workpiece to be measured, and directly output the measurement value through one sensor. In addition, you can also use a software to calculate the measurement value and read the result according to the signal or data.6) Inspection of Electronic ComponentsUse two laser scanners to place the component under test between them, and finally read the data through the sensor to detect the accuracy and completeness of the component size.7) Inspection of Filling Level on the Production LineThe laser sensor is integrated into the manufacturing of the filling product. When the product passes the sensor, it can be detected whether it is full. The sensor uses the extended program of the laser beam reflection surface to accurately identify whether the filling product is qualified and the quantity of the product.8) Measuring the Straightness of the ObjectFirst, 2-3 laser displacement sensors are needed to perform combined measurement. Then install them on a straight line parallel to the production line, and determine the distance between the three laser displacement sensors according to the measurement accuracy you need. Finally, you need to make this object move in a direction parallel to the installation line.When the production line and the sensor installation line are parallel, the greater the difference between the distances measured by the three sensors, the worse the straightness of the object, and the smaller the difference between the distances measured by the three sensors, indicating the straightness of the object. A straightness percentage can be established based on the length of the object and the distance between the three sensors, so as to obtain a quantified signal output, which has got the quantified signal output of detecting the object straightness. Figure 5. Light Receiver of Laser Displacement Sensor Ⅲ Laser Displacement Sensors Advantages 1) High Resolution and RepeatabilityEven in a larger working range, the sensor can still maintain a higher resolution and repeatability.2) Stable PerformanceThe sensor is less affected by the material and surface characteristics of the measured object, and it can directly measure the highly reflective, diffuse reflective and rough surfaces of different materials without spraying developer powder (Except for a few special materials).3) Measurement of Holes and Complex Geometric SurfacesThe coaxiality of the laser sensor enables high-precision measurement of deep holes, narrow slots, grooves and blind holes.4) Large Measurable AngleThe maximum measurable angle range of the laser sensor is 170° (±85°) in space. This technology enables the sensor to truly restore every minute detail of the complex surface of the measured object without causing any damage to the measured object. Ⅳ Alternative Types of Laser Displacement Sensor 1) Eddy Current Displacement SensorResolution: The maximum resolution of the eddy current sensor can reach 0.1um, which is basically equivalent to the laser displacement sensor.Linearity: The linearity of the eddy current sensor is generally low, about 1% of the range, and the high-end laser displacement sensor is generally 0.1%.Measurement Conditions: The eddy current sensor requires the measured object to be a conductor and non-magnetic, that is, a non-magnetic conductor, such as aluminum, copper, etc., The laser displacement sensor is suitable for whether the measured object is magnetic or conductive. There are intersections between the two.2) Capacitive Displacement SensorThe accuracy of capacitive displacement sensors is very higher than laser displacement sensors, but the range of them is very small and generally less than 1mm, and the range of laser displacement sensors can be up to 2m.3) Fiber Optical Displacement SensorThe measurement principle of the fiber optical displacement sensor is measuring the change of the light flux and light intensity reflected on the surface of the object due to the displacement. And the probe is composed of two parts: a transmitting fiber and a receiving fiber. For the displacement and vibration of small objects, the conventional non-contact displacement sensor is limited by the reflection area and the measuring result is not ideal, while the optical fiber displacement sensor can be made into a very small probe (minimum 0.2mm diameter). What’s more, it can also be made into a form of linear transmission and reception. The displacement value can be calculated by measuring the degree of obstruction of the optical fiber during the displacement process. The accuracy can reach 0.01um, and the range can be up to 4mm. Figure 6. Fiber Optical Displacement Sensor Ⅴ Laser Displacement Sensors Suppliers Suppliers IFM Efector, Inc. MTI Instruments, Inc. Kinequip, Inc. LMI Technologies Inc. Mod-Tronic Instruments Limited Digi-Key Micro-Epsilon Diamond Technologies, Inc. Wenglor sensoric LLC Ergonomic Partners Automation Products Group, Inc. Schmitt Industries, Inc. Polytec, Inc. Baumer Ltd. Limab Rockwell Automation Baumann Machinery RIEGL USA, Inc. Linear Measurement Instruments Corp. Steven Engineering Zygo Corporation PICS INC Industrial Controls Finch Automation Ⅵ FAQ 1. What is laser displacement sensor?The principle of laser displacement sensor ranging is a method where triangulation is applied by combining the emitting element and the position sensitive device (PSD) to perform ranging (detecting the amount of displacement). ... The laser light is focused through the emitting lens and projected on an object. 2. How does a displacement sensor work?A Displacement Sensor measures and detects changes (displacement) in a physical quantity. The Sensor can measure the height, width, and thickness of an object by determining the amount of displacement of that object. A Measurement Sensor measures the position and dimensions of an object. 3. Which sensor is used to measure the displacement?Inductive sensors – this technology uses alternating currents and is used to measure linear displacement. 4. Where are displacement sensors used?A displacement sensor (displacement gauge) is used to measure travel range between where an object is and a reference position. Displacement sensors can be used for dimension measurement to determine an object's height, thickness, and width in addition to travel range. 5. What are the types of displacement sensors?Displacement Sensor Types:Linear Displacement SensorsRotary Displacement SensorsEncodersCable Extension TransducersMembrane Potentiometers 6. Which laser sensor is used for measuring very long distances?LDM301 laser distance sensor series – fast measurement of long distances. The laser distance sensors of the LDM301 series use a measured time-of-flight principle to measure distances of 300 m for natural surfaces and 3,000 m for reflective surfaces. 7. What are the different laser sensors?The different types of laser sensors include charge-coupled devices (CCD), complimentary metal oxide semiconductors (CMOS), position-sensitive detectors (PSD), and photoelectric sensors. 8. How do laser position sensors work?The laser emits a laser beam to the target as shown above. The light reflected off the target is concentrated by the receiver lens and forms an image on the light receiving element. When the distance changes, the concentrated light reflects at a different angle and the position of the image changes accordingly. 9. How can sensors be used to detect objects?Ultrasonic sensors use sound waves to detect objects. Most ultrasonic sensors detect objects and measure distance by listening for the return echo of an emitted sound wave reflecting off of a target or background condition. 10. How do position sensors work?In Hall-effect position sensors, a moving part is linked to a magnet housed with a sensor shaft thereby forming a Hall element. With the movement of the body or its part the magnet also moves which leads to the formation of magnetic field and hence Hall voltage.
kynix On 2021-11-08
Ⅰ Introduction1.1 What is RAM ?RAM is a hardware component that is used to store temporary data for applications operating on computers, cellphones , gaming consoles , and other devices . Operating systems (such as Windows and Mac OS) require a particular amount of RAM to boot up. 1.2 What does RAM do?RAM can be thought of as your computer's short-term memory. It provides temporary storage space for data and program codes that are now being used by your computer. Memory is used by your computer to launch programs, execute activities, load features, and so on. While both your hard disk and RAM are measured in gigabytes (GB), they serve completely distinct functions. Consider your hard drive to be your computer's long-term memory, where all of your files and programs are stored when not in use, When you power off your computer, however, all data saved in RAM is erased. To put it another way, your computer's RAM is similar to the papers you have on your desk while working. Your hard disk storage space, on the other hand, is analogous to all of the papers in your file cabinets, desk drawers, and so on. RAM on your computer is many times faster than the finest long-term storage drives available today. RAM holds frequently utilized data that your applications, apps, or processes require when they are idle. In this manner , your computer's memory can swiftly retrieve information and pass it on to your central processor unit until (CPU). 1.3 How much RAM do I need?To run simple apps like Microsoft Word or surf the web, you'll need at least 2 GB of RAM. If you wish to open more than one or two tabs at once, you should have at least 4 GB of RAM. If you do a lot of multitasking or utilize heavy apps, you may require 8-16 GB of RAM or more. How much RAM do you actually need? Depending on what kind of computer you have, you can replace or upgrade your RAM sticks at any time. As a general rule, the more RAM you have, the faster your programs will run, and the more programs you can run at the same time. However, your computer’s memory is only one part of the equation, and your computer and operating system (OS) are only designed to handle a certain amount of RAM. Your computer’s overall performance will also depend on other hardware and software. To get the best performance out of your computer, it is recommended that you purchase memory sticks in pairs with the exact same specs and from the same manufacturer. This is because most computers these days come with dual-channel memory slots, which allows you to use two or more RAM modules simultaneously. CatalogⅠ Introduction1.1 What is RAM?1.2 What does RAM do?1.3 How much RAM do I need?Ⅱ KB vs. MB vs. GB vs. TB2.1 Byte2.2 KiloByte (KB)2.3 MegaByte (MB)2.4 GigaByte (GB)2.5 TeraByte (TB)2.6 Frequently Asked questionsⅢ 8 GB RAM3.1 Basic Information about 8 GB RAM3.2 Frequently Asked Questions about 8 GB RAMⅣ 16 GB RAM4.1 Basic Information about 16 GB RAM 4.2 Frequently Asked Questions about 16 GB RAMⅤ 32 GB RAM5.1 Basic Information about 32 GB RAM5.2 Frequently Asked Questions about 32 GB RAMⅥ 64 GB RAM6.1 Basic Information about 64 GB RAM6.2 Frequently Asked Questions about 64 GB RAMⅦ 128 GB RAM7.1 Basic Information about 128 GB RAM7.2 Frequently Asked Questions about 128 GB RAMⅧ ConclusionⅡ KB vs. MB vs. GB vs. TB2.1 ByteA byte is a unit of data in computer systems that is eight binary digits long. A byte is a unit of measurement used by computers to represent a character such as a letter, number, or typographic symbol (such as "h", "7", or "$"). A byte can also hold a string of bits that are required in some larger units of application activities (e.g., the stream of bits that composes a visual image for a program that represents images or the string of bits that composes the machine code of a computer program). A byte is denoted by a capital "B," but a bit is denoted by a lowercase "b." Computer storage is often measured in byte multiples. A 640 MB hard disk, for example, carries 640 million bytes – or megabytes – of data. Byte multiples are composed of exponents of two and are typically stated as a "rounded off"decimal number. Two megabytes, or two million bytes, are really 2, 097, 152 (decimal) bytes. Bits, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes 2.2 KiloByte (KB)The kilobyte is the smallest memory measuring unit, but it is larger than a byte. A kilobyte is 103 or 1,000 bytes, denoted by the letters 'K' or 'KB'. It predates the Megabyte, which stores one million bytes. Because one kilobyte is officially 1,000 bytes, kilobytes are frequently used interchangeably with kibibytes, which contain exactly 1, 024 bytes (210). Kilobytes are typically used to quantify the size of small files. A simple text document, for example, may contain 10 KB of data and so have a file size of 10 kilobytes. Small website graphics are frequently between 5 KB and 100 KB in size. Individual files normally need at least four kilobytes of storage space. 2.3 MegaByte (MB)One megabyte is equivalent to 1,000 KBs and predates the gigabyte (GB) memory measurement unit. A megabyte (MB) is 106 or 1,000,000,000 bytes and is abbreviated as "MB." Because 1 MB is technically 1,000,000 bytes, megabytes are frequently used interchangeably with mebibytes, which contain exactly 1, 048, 576 bytes (220). Megabytes are typically used to quantify the size of huge files. A high-resolution JPEG image, for example, could be 1-5 megabytes in size. A 3-minute song stored in compressed format may be around 3MB in size, whereas an uncompressed version may occupy up to 30 MB of storage space. The capacity of a Compact Disk is measured in megabytes (about 700 to 800 MB), whereas the capacity of most other types of media drives, such as hard drives and flash drives, is measured in gigabytes or terabytes. 2.4 GigaByte (GB)One gigabyte (GB) is equivalent to 1,000 megabytes (MBs) and comes before the terabyte (TB) unit of memory measurement. A gigabyte (GB) is 109 or 1,000,000,000,000,000 bytes and is abbreviated as "GB." Because 1 GB is technically 1, 000, 000, 000 bytes, gigabytes are used interchangeably with gibibytes, which hold exactly 1, 073, 741, 824 bytes (230). Gigabytes, which are sometimes shortened as "gigs," are commonly used to quantify the capacity of storage devices. A normal DVD drive, for example, can hold 4.7 GBs of data. Terabytes are storage devices that contain 1,000 GB or more of data. 2.5 TeraByte (TB)One terabyte is equal to 1,000 gigabytes (GB) and comes before the petabyte (PB) memory measurement unit. A terabyte is 1012 or 1, 000, 000, 000, 000 bytes and is abbreviated as “TB”. Because 1 TB is officially 1 trillion bytes, terabytes and tebibytes are used interchangeably, and contain exactly 1, 099, 511, 627, 776 bytes (1, 024 GB) (240). The storage capacity of big storage devices is often measured in TeraBytes. Around 2007, consumer hard drives surpassed 1 TeraByte capacity. HDDs are now measured in Terabytes. A standard internal HDD, for example, may carry 2 Terabytes of data, although certain servers and high-end workstations with numerous hard drives may have a combined storage capacity of more than 10 Terabytes. 2.6 Frequently Asked questions1. What is KB MB GB TB?One kilobyte (KB) equals 1,000 bytes, and one megabyte (MB) equals 1,000 kilobytes. A gigabyte (GB) is 1,000 megabytes, while a terabyte (TB) is 1,000 gigabytes. 2. Is 1 MB a large file?Megabytes can be thought of in terms of music or Word documents: A single 3-minute MP3 is typically roughly 3 megabytes; a 2-page Word document (only text) is about 20 KB, thus 1 MB would carry approximately 50 of these. Gigabytes, which is probably the most familiar size to you, are quite large. 3.What is GB size?1 Gigabyte (GB) = 1,024 MB.1 Terabyte (TB) = 1,024 GB. 4.Is 1 MB 1000 KB or 1024 KB?KB is actually equal to 210 bytes in practical information technology, making it equal to 1024 bytes. 5.How do I calculate sound file size?To calculate the file size of an audio file, multiply the bit rate by the audio's duration in seconds. As a result, we have file sizes in kilobits and megabits. Ⅲ 8 GB RAM3.1 Basic Information about 8 GB RAMMany of the most regularly used applications do not consume a large amount of RAM on their own. However, it is fairly typical for users to run multiple of these applications at the same time. Many individuals also like to open many browser tabs at once so that they may access websites with a lot of graphics, run different online applications, and play video. All of this means that available RAM can soon be depleted. The main line is that if you're a big multitasker who opens a lot of tabs, you'll need more RAM. For most individuals, this means setting a machine with at least 8GB of RAM, which is why this amount is increasingly becoming an option even for low-cost PCs. If you're buying a notebook that doesn't allow you to upgrade the RAM, 8GB is a good starting point. 8 GB RAM 3.2 Frequently Asked Questions about 8 GB RAM1.Is 8 GB of RAM enough?8GB: This is the most common memory size seen in entry-level notebooks. At lower settings, this is adequate for basic Windows gaming, but it quickly runs out of steam. 16GB: Ideal for Windows and Mac OS computers, as well as gaming, especially if it has fast RAM. Gamers will also notice a slight performance boost in some demanding games. 2.Is 8 GB good enough?Most users will only require roughly 8 GB of RAM, but if you wish to utilize many programs at the same time, you may require 16 GB or more. If your computer does not have enough RAM, it will run slowly and apps will lag. Although having enough RAM is vital, adding more will not necessarily result in a significant boost. 3.How much is 8 GB exactly?A data package of 8GB will allow you to browse the internet for around 96 hours, stream 1,600 songs, or watch 16 hours of standard-definition video. Nowadays, the primary distinction between mobile phone pricing plans is the amount of data included. 4.Is 8 GB a lot for a computer?For the majority of users, 8GB of RAM is the sweet spot, providing adequate RAM for nearly all productivity tasks and less demanding games. If you're running demanding apps like video editing and CAD, or if you're a serious gamer, we recommend starting with 16GB and working your way up. Ⅳ 16 GB RAM4.1 Basic Information about 16 GB RAM Some applications, such as Adobe 's creative apps, numerous computer-aided design (CAD) solutions, and extremely demanding games, can consume a significant amount of RAM on their own. If you're a photographer who uses Adobe Photoshop or another complex photo processing tool, a videographer who uses Adobe Premiere or another video editor, or you use something like Auto CAD. 8GB of RAM may not be enough. We recommend at least 16GB for those persons. The same is true for die-hard gamers and even demanding productivity users who know they'll be running a large number of applications at the same time. Starting with 16GB gives a buffer for most people while also allowing them to deal with very large spreadsheets and databases. 4.2 Frequently Asked Questions about 16 GB RAM1.Is 16 GB RAM overkill?For a gaming PC, 16GB of RAM is the best place to start. Few games, even the most recent ones, will take full advantage of a full 16GB of RAM. Instead, the increased capacity allows you to run other applications while your games are running. 16GB is plenty for the great majority of gamers. 2.Is it good to have 16 GB RAM?Most users will only require roughly 8 GB of RAM, but if you wish to utilize many programs at the same time, you may require 16 GB or more. If your computer does not have enough RAM, it will run slowly and apps will lag. Although having enough RAM is vital, adding more will not necessarily result in a significant boost. 3.Is 16GB RAM necessary for gaming?There are customized cases for 16GB and more RAM that are suitable for gamers. So, if you are an ardent player who occasionally streams games, 16GB of RAM is the ideal choice. 8GB of reasonably fast RAM should enough for casual and hardcore gamers who don't use the PC for much more than gaming. 4.Is 16GB RAM future proof?Now, 16GB is the standard. FS2020 would be an exception in terms of recommendations. If you want to play at 4k on Ultra (or close to it), I propose 32GB with FS2020; otherwise, 16GB is more than plenty. I'm currently running with 16GB and have had no problems. Ⅴ 32 GB RAM5.1 Basic Information about 32 GB RAMMoving up to 32GB gives you a lot more freedom in terms of leaving programs (and / or a number of browser tabs) open without a care in the world. None of the games I tried used more than 16GB, let alone 32GB. Some productivity users who work with huge files or many files at once might consider 32GB or more. There are certainly circumstances in which more than 16GB can be used, which would, of course, push the user to the next tier of 32GB. However, this is not a regular occurrence for many (if not the majority) of people. So, what can we do with the extra storage space that 32GB provides if we aren't going to use it on a daily basis? Portion movie and photo editing activities (among others), particularly in 4K+ resolutions, can benefit from a RAM disk, which converts some of the ultra-fast volatile RAM capacity into a drive. That drive can then be used as a scratch disk for projects, which is far faster than having it on a standard drive—even an extremely recent PCIe SSD. In some circumstances, having a RAM disk can shorten project timelines and improve overall speed (such as scouring through an unrendered video project). 32 GB RAM 5.2 Frequently Asked Questions about 32 GB RAM1.Is 32GB RAM useless?However, 32GB is still excessive for gaming. Nothing is useless; it all depends on how you put it to use. It is really simple to develop a software that will fill up the memory. 2.Is 32 GB RAM fast?If you desire ultimate top-notch performance with no stuttering, lag, or other graphical or performance glitches, 32GB of RAM may be your ideal. When you consider the lifetime that 32GB of RAM may provide for your system, you may end up saving money by not purchasing or upgrading new technology. 3.Do I need 32GB RAM for streaming?A streaming configuration requires 32GB of RAM, which is more than adequate. In fact, it's excessive. But why not if you have enough money for a 32GB RAM setup? If money is a concern, you may always go with a 16GB kit. 4.How long is 32GB video 4K?As an example, the most compressed, lowest frame rate, and lowest bit rate 4K video will record for approximately 75 minutes on a 32GB SD card, whereas the highest quality footage will fill the card in approximately 10 minutes. 5.Will 32GB RAM improve FPS?No, in a word. Most of the time, 8gb is sufficient. If you are a power user that enjoys running numerous games at once or running a VM or server while gaming, the extra ram will come in handy. Ⅵ 64 GB RAM6.1 Basic Information about 64 GB RAMWith CAD becoming more complicated over time and video editing software solutions becoming more demanding, there will come a time when even 64 GB RAM would not suffice. If you're wondering whether you need 64GB of RAM, the answer is actually rather easy. This amount of RAM is required. However, you only need this much RAM if you plan on developing, rendering, or running numerous programs at the same time. If all you want to do is play games, then 16GB of RAM will be more than plenty for you and will not cause any problems. 16GB vs 32GB vs 64GB RAM 6.2 Frequently Asked Questions about 64 GB RAM1.Is 64GB A lot of memory for a laptop?12GB RAM laptops, 16GB RAM laptops, 32GB RAM laptops, and even 64GB RAM laptops are significant possibilities for individuals who wish to push the limits of a PC's capabilities and run numerous huge apps at once. Outside of severe data processing, you probably won't require more than 8 to 12GB of laptop RAM if you're a typical PC user. 2.Is 64GB a lot for iPhone?The 64GB iPhone 11 / Pro / Max has more than enough storage space for all of your apps, endless hours of video footage, and tens of thousands of images. You should select a larger storage choice if you intend to record a lot of 4K films and download a lot of movies, games, and music to your phone. 3.Is 64GB RAM overkill?Perhaps 64GB is likely overkill for gamers: 16GB will suffice for new title releases in the foreseeable future. It's what else is on your PC hogging memory that could be used for something else. Browsers can consume several gigabytes, especially if you have a lot of tabs active and plugins loaded. 4.How many photos can 64GB hold?A 64gb card can carry around 2,184 photographs if a picture takes up 30 megabytes, which is the average file size in RAW format photos. This means that even on the longest photoshoots, a 64-gigabyte memory card can save considerably more shots than you're likely to capture. 5.Is 64GB enough space for an iPad?If you rarely capture or store photos and videos on your iPad, 64GB should plenty. Consider one of the bigger storage options, such as 512GB or 1TB, if you intend to edit and store photos or movies, particularly 4K footage. Ⅶ 128 GB RAM7.1 Basic Information about 128 GB RAMRAM is essential in today's computer systems, with most games and software becoming quite memory hungry. To some extent, more RAM means faster performance. After that point, the speed will not increase. A database server with 128 GB of RAM is utilized for low or intermediate level data access. 128GB of RAM is not for everyone. Obviously, eight memory slots are required. You'll also need a DDR4-capable CPU. The final component is a motherboard with a BIOS that supports 128GB of RAM. 128 GB RAM7.2 Frequently Asked Questions about 128 GB RAM1.What can 128 GB of RAM do?You can run numerous high-end games as well as some demanding apps on 128GB. Buy 128GB only if you intend to run heavy software and heavy games at the same time. 2.What does 128GB memory mean?In summary, when a computer is promoted as having a 128GB SSD, it indicates the manufacturer includes a 128GB solid-state drive for storage with the machine. Depending on your use case, this may or may not be sufficient. 3.How many apps can 128GB hold?Then 128GB is more than sufficient for you. You can save between 1280 and 5000 applications. You won't run out of storage capacity very soon with 128GB. The iPad Mini and iPad 2019 both have this storage capacity. 4.Does gaming require 128GB RAM?Buy 128GB only if you intend to run heavy software and heavy games at the same time. Except that 128GB is a colossal waste of money. Furthermore, the price of a 128 GB stick is higher than that of a core i5 processor. Choose a better GPU with more than enough RAM. 5.Is 128GB RAM enough?For today's recommendations, 64GB of RAM is sufficient, but increasing higher is also acceptable! Regarding storage capacity, 64GB of SSD or 128GB of SSD is recommended. Ⅷ ConclusionDifferent RAMs are used in various ways, so you should determine which one you truly require before purchasing one.Our recommendation is as follows:1)While 8GB will suffice for basic email/web browsing, you could definitely get away with 4GB;2)You can get 8-16GB for general office use and low-end gaming.3)You can use 16-32GB for high-end gaming or VR.4)You can purchase 32Gb for development, especially if you plan on operating numerous VMs.5)You can utilize 128Gb-512Gb for database servers with low or mid-level data access.6)For database servers with strong workloads, you can utilize as much Tb as you can afford.7)You can acquire 256Gb-several Tb for a data center host machine running several VMs.
kynix On 2022-04-09
CatalogIntroductionⅠ What is a Fuse?Ⅱ What is the Fuse TesterⅢ Dedicated Fuse TesterⅣ How to Test the Fuse4.1 How Plug Fuses Work4.2 Professional Advice for Testing a Fuse4.3 Replacing a Fuse Can Be Expensive4.4 Test Your Fuse First to Make Sure It's Blown4.5 How to Test Cartridge Fuses4.6 Using a Continuity Tester4.7 Testing a Fuse With a Multimeter4.8 How to Use a VoltmeterⅤ Choosing the Correct Fuse For your Tester5.1 Why does a Tester Need Fuses?5.2 When does a Fuse Tester Become a Grenade?5.3 The plasma fireball5.4 Using the Proper FuseIntroductionThe fuse tester is appropriate for fixing cars, trucks, SUVs, and motorcycles, among other things. The fuse tester's led light can assist you in determining the condition of a blown fuse. The circuit tester is appropriate for all types of cars, motorcycles, electric vehicles, boat switch panels, and so on. Furthermore, the tester is a useful tool for offering quick and convenient circuit testing. Furthermore, the tester can help you detect the condition of your car's power supplies and conserve fuel. You can use the fuse tester to determine the quality and safety of your vehicle. Meanwhile, the tester has an LED display that detects blown fuses and the accompanying amperage value. Furthermore, the tester will save you time and speed up the job by allowing you to determine whether the circuit is broken or damaged. A fuse tester is an automatic circuit protection device used in automobiles, electrical appliances, and other devices. We know that a fuse is designed to open when a certain amount of current is surpassed. This safeguards us against electric shock and fires caused by the overheated wire. Some fuses, however, safeguard us from a much more serious threat.Ⅰ What is a Fuse?A fuse is essentially a short length of wire enclosed in a specific housing that is meant to burn in half in the event of an electrical overload. All we have to do now is see if the cable is still intact.Some fuses feature a small window through which the wire can be viewed, although the view is often poor, the wire is frequently quite small, and mistakes are common. A 30-second test is foolproof and will reveal the truth with no room for error.Ⅱ What is the Fuse TesterA fuse tester is nothing more than a gadget that checks for continuity. It could be a multimeter, a continuity tester, or a dedicated fuse tester.In all circumstances, the goal is to pass a little current through the fuse; if it passes through, the fuse is good. If it does not, the fuse has blown and must be replaced. This indicates that a battery is required to deliver that modest current, and every fuse tester will include one.If a fuse tester indicates that a fuse is blown, the next step is to inspect the fuse tester. This is achieved by touching the test leads together or, for testers without leads, by passing a piece of metal (wire, coin, dinner spoon, or anything metal) across the probes. If it does not show "good," the battery should be replaced.How To Use a Fuse Tester Made by EATONⅢ Dedicated Fuse TesterIn general, these testers will have a light that will illuminate if the fuse is good. There will always be some way to connect a probe of some kind to each fuse contact. When using dedicated testers, always read and follow the manufacturer's instructions because different fuse testers may operate differently.Ⅳ How to Test the Fuse4.1 How Plug Fuses WorkInside plug fuses is a metal alloy ribbon that conducts the circuit's current. In the event of a short or overload, which causes an excessive current to flow, the ribbon will melt ("blow") and open the circuit. When this occurs, no current can flow through the circuit, and the circuit is unplugged from the power supply. This prevents short circuits and overloads, which can damage electrical wiring and cause house fires.When a plug fuse bursts due to a circuit overload or short circuit, the metal fuse element inside the view panel is typically seen melted through, or the glass panel is fogged or charred. However, if in doubt, a multimeter can be used to check the fuse.4.2 Professional Advice for Testing a FuseI've had to test a lot of fuses in my nearly 20 years as an electrician. It's a common troubleshooting strategy that helps me avoid simply changing fuses that I'm not certain are blown.4.3 Replacing a Fuse Can Be ExpensiveMost of us have had a blown fuse at some point and simply changed it. Some fuses, however, aren't inexpensive, and if a replacement isn't nearby, a trip to the auto parts or home improvement store is required.4.4 Test Your Fuse First to Make Sure It's BlownIt's better to test a fuse first to verify if it's genuinely blown before making a special journey to buy and install a new one. Testing a fuse to see if it has blown is a simple task that requires only a few basic items and can save both money and time.4.5 How to Test Cartridge FusesWhile a few cartridge fuses feature a window on the side through which you may sometimes see if the fuse has blown, this is uncommon. Cartridge fuses almost always need to be tested with a meter to see whether they are good or not.Although there are hundreds of distinct cartridge fuses, they all have one thing in common: a metal on either end where electrical contact is made with the fuse holder. These metal ends are the contacts; to test the fuse, touch a probe to each end.The small AGC glass tube fuse frequently used in automobiles is a form of cartridge fuse; larger ones differ chiefly in that they are made of paper or another substance rather than glass. They are tested in the same way that the glass fuse is shown in the photo below.To the best of the author's knowledge, this article is accurate and true. The content is provided solely for informational or entertainment reasons and is not intended to replace personal counsel or expert assistance in commercial, financial, legal, or technical problems.4.6 Using a Continuity TesterContinuity testers will be equipped with two test leads and a tiny light that will illuminate when the leads are touched together. To test a fuse, connect one lead to each of the fuse's electrical contacts; if the light bulb illuminates, the fuse is good.4.7 Testing a Fuse With a MultimeterA multimeter, like a continuity tester, has two leads. A multimeter, on the other hand, has numerous settings for measuring amperage, voltage, and resistance in various ranges. Some multimeters are auto-ranging (no need to select a range), while others are digital meters with a needle to display the measurement.The first step with any multimeter is to set it to measure resistance, or. If multiple ranges are available, select the lowest range (K on the dial signifies thousand, so 2K equals 2000) - usually around 200. Touch one probe to each contact on a fuse and monitor the reading, just like a continuity tester.An extremely low value of 1 ohm or less indicates that the fuse is good; if it is blown, the reading will be infinite, or the maximum the meter will display. An intermediate measurement of several ohms indicates that you aren't making good contact; wiggle the probes on the fuse contacts or clean them and try again.4.8 How to Use a VoltmeterA Voltmeter, as the name suggests, measures voltage. Some types, known as multimeters, can also measure ohms and amperage. Analog and digital meters are both accessible.Step 1Insert the probes into the meter. Red represents the positive (+) and black represents the negative (-).Step 2Turn the selector dial or switch to the desired measurement type. Use DCV to measure direct current, such as in a battery. ACV is used to measure alternating current, such as that found in a wall outlet.Step 3Select a range setting. Options on the dial may range from 5 to 1000 on the DCV side and 10 to 1000 on the ACV side. The setting should be set to the maximum voltage reading. This option is not available on all voltmeters.Step 4Turn the meter on.Step 5Touch the red probe to the positive side of a DC circuit or either side of an AC circuit while holding the probes by the insulated handles. Use the black probe to touch the other side.Step 6Read the digital display or analog dial.Ⅴ Choosing the Correct Fuse For your Tester5.1 Why does a Tester Need Fuses?On the market, fuse testers range from simple voltage detectors to highly sophisticated digital multimeters.Voltage testers contain a high input impedance, which makes an overcurrent condition uncommon. As a result, voltage measurement inputs are typically constructed with overvoltage protection rather than fuse protection. However, if the same tester is intended to measure current as well, fusing is required.Inputs for measuring current typically use a simple shunt through which the measured current flows. The resistance of this shunt is on the order of 0.01 ohms. Add the resistance of the test leads (about 0.04 ohms) and you have a short of less than 0.1 ohms. When you connect this short in series with another load to evaluate the circuit's current, this resistance is adequate. It's a different situation when you connect this circuit to a voltage source, such as the plug outlet in your living room. This is a common error made by persons who measure both voltage and current. After measuring current with the test leads in the current input jacks, the user attempts to measure voltage while forgetting the leads are in the amps jacks. This creates a short across the voltage source. This error nearly damaged the meter movement (the needle wrapped around the top peg) and the internal circuitry years ago, when analog meters were the primary instrument for making these measurements. To prevent this typical occurrence, meter manufacturers began connecting a fuse to the meter's test lead jacks, providing an inexpensive and effective remedy to a relatively basic error. The majority of manufacturers still design their testers with fuse protection in the current measuring circuits nowadays. The science of fuse design has advanced alongside technological advancement. Although people who create testers understand the entire implications of fusing, most tester users do not. When you make the easy error of putting voltage across the current jacks and blowing the fuse, you're initially relieved that you didn't destroy the meter. However, you may become irritated if you have to look for a new fuse and change it before taking your next current measurement. Even more aggravating is when you share meters with other individuals in your shop and someone else blows a fuse and puts the meter away, only for an unwary user to discover the problem.5.2 When does a Fuse Tester Become a Grenade?Manufacturers specify the appropriate amperage, interrupt, and voltage ratings for replacement fuses in manuals and, in certain cases, on the meter. If you choose a fuse without these ratings, or worse, wrap a wire around the fuse connections, you have just made a thermal hand bomb. It only takes the correct conditions to set it off. Working on a printer, computer, copier, or other pieces of equipment with its power source is unlikely to result in an explosion (CAT I). You could even work on branch circuits (CAT II) without setting it off. These two environments utilize relatively little energy and frequently include fuse protection, circuit breakers, and over-current protection circuits. However, this is neither a good idea nor a safe manner of working. The protective circuits vary dramatically when you move to an electrical distribution cabinet (CAT III) or principal feed-lines (CAT IV). Instead of the 15, 20, or 30 amp breaker on a branch circuit, the distribution panel has breakers rated at hundreds of amps between you and the power provider. The protection is now at the utility pole or substation when measuring the voltage on the input side of a breaker panel at a dwelling. These breakers can handle thousands of amps before opening and take much longer than a branch circuit breaker to open. As a result, if you leave the leads in the amps jacks and connect the meter leads to one of these voltage sources without using a properly fused tester, your life is at great risk.5.3 The plasma fireballThe test leads and the short represented by the faulty fuse (or the wire wrapped around the fuse connections) are fed by an almost infinite amount of energy in this condition. The fuse's metal element (or wire) warms up quickly and begins to evaporate, causing a small explosion. The fuse enclosure may break open as a result of the intensity of the explosion, allowing a limitless amount of oxygen to feed a plasma flame.The test leads may also begin to melt, causing molten metal to splash across your hands, arms, face, and clothing. The severity of your injuries will be determined by how long the energy is delivered to the tester, the amount of oxygen available, and the presence of safety equipment such as face shields and heavy gloves. This everything happens in milliseconds, leaving very little time to correct the error. You might be thrown free of the leads or fuse tester and therefore break the circuit if you're lucky. But luck isn't much of a factor, especially since the situation might have been avoided entirely if the right fuse had been used.5.4 Using the Proper FuseSpecially engineered "high-energy" fuses are designed to contain the energy created by an electrical short within the fuse enclosure, preventing electric shock and burns to the user. The length of time the energy is applied and the amount of oxygen available for burning are both limited by these high-energy fuses. Fuses can be engineered to open not just at a constant current but also a high current in an instant. "Minimum interrupt current" is the name given to this high current. Fluke's testers use fuses with minimum interrupt ratings of 10,000 and 17,000 amps. The series resistance of roughly 0.1 ohms (0.01 for the shunt, 0.04 for the test leads, and 0.05 for the fuse and circuit board wires) exists between the leads of a CAT III 1000 V meter with the test leads in the amps jacks. Now, if you inadvertently connect the leads to a 1,000-volt source, you'll get a current of 10,000 amps (E/R=I, 1,000/0.1 = 10,000) thanks to Ohms Law. You'll need a fuse tester that can swiftly break that current.The high-energy fuse is packed with sand in addition to the specifically constructed fuse element. The sand will not only absorb the shock energy caused by the explosive element, but it will also melt and convert to glass due to the high temperatures (up to 10,000 °F) generated by the energy. By blocking off the available oxygen, the glass coats the element and smooths the fireball, keeping you and the tester safe. As you can see, fuses with the same amperage and voltage rating are not all created equal. Make sure the fuses you use are the ones the engineer designed into the tester for your safety. To verify you have the correct fuse, always consult the tester's handbook or contact the manufacturer. Replacement fuses for Fluke testers may always be obtained by ordering the part number stated in the tester's handbook. Your safety is far more valuable than the cost of the right fuse for which the fuse tester was built.
kynix On 2022-05-11
CatalogⅠ IntroductionⅡ What is PoE?Ⅲ What is a PoE Switch?Ⅳ How does a PoE Switches Work?Ⅴ Types of PoE Switches5.1 Number of PoE-enabled Ports5.2 Network Speed5.3 Managed or Unmanaged5.4 LCD Display Option5.5 PoE BudgetⅥ Benefits of PoE SwitchesⅦ Limitations of PoE SwitchesⅧ Applications of PoE Switches8.1 Low Watt PoE devices8.2 High Watt PoE devicesⅨ PoE Switch VS. Non-PoE SwitchⅩ PoE Switch VS. PoE InjectorⅪ Thing to Consider When Choosing PoE Switches11.1 How many ports do I need?11.2 How much speed will my POE switch provide?11.3 What type of redundancy will I need for my network?11.4 What level of technical support will I need?Ⅻ Frequently Asked Questions About the PoE SwitchⅠ IntroductionThe large number of devices utilized by industrial applications such as transportation, public facilities, and manufacturing automation will result in disordered cables. With industrial devices growing increasingly power-hungry, PoE technology gains favor among users for its ability to offer more power while reducing the number of cords necessary. This post will explain what a PoE switch is, why you should use one, and how to utilize one. Ⅱ What is PoE?PoE, or Electricity over Ethernet, is a technology that allows an Ethernet cable to supply power. Thus, power sourcing equipment (PSE) can simultaneously transport data and power to powered devices (PD) via a single connection. On network switches, PoE is available in two standards: IEEE 802.3 af/at. The former original PoE standard was created in 2003, and it offers PDs with a power budget of 15.4 W. (12.95 W available for accessing). The newer PoE+ /PoE Plus standard, introduced in 2009, has a power capacity of up to 30 W (25.5 W). What is PoE? Structured cabling can also be used to transport electric power via Power-over-Ethernet (PoE) technology, which is one of its other advantages. PoE is useful for equipment like wireless network repeaters or IP security cameras that are frequently positioned high on walls or ceilings, far from the nearest power source. They can use a single Ethernet cable for voice, data, and power when using PoE. What is PoE? Power over Ethernet Explained Of course, adopting PoE simplifies device installation while also lowering associated costs. There is no need to run additional wires or install extra power outlets. PoE uses lower voltage than mains voltage, making it safe to use; nonetheless, it can still damage equipment not meant to use it, therefore installation must be done carefully. Ⅲ What is a PoE Switch?PoE switches are one of two types of PoE implement PSEs: endspan switches and midspan PoE injectors. A switch is a device that allows network devices to connect with one another. Power over Ethernet functionality is implemented into a PoE switch. This means that network cables can be used to power devices. What is a PoE Switch? A PoE switch supplies electricity that can be used to power other devices connected via Ethernet cabling. If your network contains dispersed switches, PoE pass-through switches are also an option. These are powered by PoE from a central source, but they can also power endpoint devices such as cameras or phones. Ⅳ How does a PoE Switches Work? Because of its basic design, a power over ethernet (PoE) switch configuration is straightforward to grasp. The switch has many ethernet connections to ensure that devices linked to it receive steady power and network connectivity. These switches can be configured in any of the following ways: How do POE switches work? Mode A Configuration: In this mode, the switch sends both power and data over the same wire. Mode B Configuration: In this mode, the switch distributes power and data via separate cables. The majority of industrial PoE switches have 5 or 8 ports, but non-industrial PoE Ethernet switches can have 8, 24, or 48 ports. Ⅴ Types of PoE SwitchesPoE switches are classified according to the following characteristics: 5.1 Number of PoE-enabled PortsPoE switches can supply four to 48 PoE output ports, which are sometimes known as PSE(or "Power Sourcing Equipment") ports. 5.2 Network Speed The majority of Power over Ethernet switches offer Gigabit speeds (1000 Mbps) to connected devices. However, Fast-Ethernet (100 Mbps) is still available, which is sufficient for many PoE edge devices. 5.3 Managed or UnmanagedA managed PoE switch may do much more than just direct traffic and power devices to fulfill more complex network requirements. A managed PoE switch, among other things, can partition network traffic into groups and provide considerably more visibility into the network's state, connected clients, and power condition. 5.3.1 Managed PoE SwitchUsed for: enterprise networks and data centersBenefits: offer full management capabilities and security features Managed switches offer advanced network security, control, and management. They're suitable for businesses that require round-the-clock monitoring and remote access control from a remote location. Managed switches are the most expensive, but they are well worth the money and pay for themselves over time. These switches' scalability allows networks to expand. Advanced functions include:prioritizing user trafficpartitioning a networkconnecting different types of networksmonitoring traffic as it passes through the system. Managed switches can improve network performance and resource consumption. Because administrators administer resources via a text-based command-line interface, some advanced knowledge is required to set up and run. 5.3.2 Smart or Hybrid PoE SwitchUsed for: business applications such as VoIP and smaller networks Benefits: offers no-frills management, security features and costs less than managed Smart switches are similar to controlled switches, however they have less features that may be accessible via the Internet. Setup and operation do not require highly trained personnel. Their interface is simpler than that of managed switches. They do provide features like as Quality of Service (QoS) and VLANs. They are ideal for VoIP phones, tiny VLANs, and workgroups in environments such as labs. Smart switches allow you to configure ports and create virtual networks, but they lack the sophistication to support network monitoring, troubleshooting, and remote access. 5.3.3 Unmanaged PoE SwitchUsed for: home networks /small business offices or shops Benefits: plug-and-play, affordable and simple Because these switches cannot be changed or handled, there is no need to enable or disable interfaces. They're ideal for businesses without IT administrators or junior technologists. They don't have any security features, but they're adequate for use in your house or a small network of fewer than 5-10 PCs. We recommend going with something more secure if a company handles sensitive information, such as an accountancy firm or a bank. 5.4 LCD Display OptionOn the front panel of certain unmanaged PoE switches is an LCD display. These LCD status screens show network administrators real-time power information such as how much power each connected PoE device consumes, the total consumed power of all connected devices, and the total power available. It is also highly important in providing alarms and cautions for potential problems such as overload, high temperature, short-circuit protection, and others. 5.5 PoE BudgetThe Power over Ethernet switch's ability to power connected devices is mostly limited by the amount of its power supply, which can range from slightly more than 50 watts to well over 500 watts. This power budget has a direct impact on how much power the switch can give to connected devices per port. Ⅵ Benefits of PoE SwitchesData Collection - Data identifying vacant work spaces and shutting down HVAC and LED lighting services is only one cost-saving example of leveraging data dynamically. Enhanced Productivity - A little-known but much-appreciated bonus is packed within the LED-lighting system; by programming the lights to mimic natural frequencies and spectrums occurring in nature, workers experience heightened awareness, creative surges, better collaboration, and overall work with a greater sense of well-being. Safer Installations - Because PoE Type-3 voltages are less than 60 watts and Type-4 voltages are less than 100 watts, conduits and metal claddings are not required for installation, making connecting and laying cables safe and simple. Installation Cost Savings - It is quite expensive to deliver conventional power to areas where there is none. Assume you wish to install cameras in a section of a warehouse that lacks power outlets. Without PoE, you'd need to engage a certified electrician because a network administrator is unlikely to be able to finish the electrical installation. Anyone, however, can wire network cables (or PoE network cables) from the cameras to a PoE switch using the low-voltage application of Power over Ethernet. Using PoE eliminates the need to build power outlets, electrical wiring, and breaker boxes, saving you even more money. Greater Flexibility - PoE edge devices can be simply installed in areas where there are no power outlets. Those formerly difficult to reach spots can now be accessed with greater ease now that they are no longer limited by the requirement of a standard outlet to function. Installing a PoE network camera on a high wall or roof is no longer a frightening undertaking because you just need one network cable to acquire power and network connectivity. (Remote) Power Management - The ability to access controlled PoE switches over the Internet or local network is a highly useful feature. This access includes the ability to remotely power-cycle failing edge devices. The network camera that has failed or the VoIP phone that has to be rebooted no longer require physical involvement from a person on the premises. All that is required to restart either device is to initiate one through the switch management interface. PoE Watch Dog / Guard / Powered Device Monitor - Some Managed Power over Ethernet Switches can monitor all connected PoE devices and automatically restart a device that has not communicated for an extended period of time. Such a function is very beneficial if, for example, a security camera fails in the middle of the night. Ⅶ Limitations of PoE SwitchesDevice Compatibility - Although not all devices are compatible with PoE switches, a modest patch in the form of an injector or splitter can frequently resolve this issue: *Injector - This method links a PoE-enabled network device to a non-PoE device and provides the necessary power. *Splitter - Power is provided, however it is separated from data and transmitted to a non-PoE device via a separate input device. Physical Distance - Although power is not limited by cable length, data transfer is limited to 100 meters, which can limit operations in larger spaces; fortunately, this limitation is easily overcome with the use of a PoE Ethernet Extender, which extends the limit to 400 meters, making it more palatable for larger enterprises, campuses, and even large retail shopping malls. Power Rates - The power rates for any PoE device are determined by its IEEE 802.3 generation, with four distinct power budgets, as shown below: *15.4W - accommodates thin clients, biometric access control, and 802.11n (for WLAN communications) *30.8W - supports RFID readers, Video IP phones, and alarm systems *60W - can power laptops, information kiosks, and point of sales systems *90-95W - performs the bulk of the work for video conferencing, televisions, high-power wifi, and larger computer systems Ⅷ Applications of PoE SwitchesMany different devices can be powered by PoE. However, the quantity of electricity required can vary. 8.1 Low Watt PoE devicesVoIP and Video PhonesIP camerasWireless Access PointsAudio DevicesRemote Computer Terminals and Thin Clients 8.2 High Watt PoE devicesTVsComputer MonitorsLaptops Ⅸ PoE Switch VS. Non-PoE SwitchPoE Switch VS. Non-PoE Switch Non-PoE switches, as the name implies, are standard switches that can only deliver data to network devices. There is no PoE in a standard switch to provide electrical power to end users over Ethernet. The main distinction between a PoE switch and a non-PoE switch is PoE accessibility. As previously stated, the PoE switch is PoE enabled, whilst the non-PoE switch is not. You can connect PoE and non-PoE devices to the same PoE switch. Because if no power is required, you can turn off the PoE of the PoE switch and use it as a conventional witch. Non-PoE switches, on the other hand, cannot handle the mixing of PoE and non-PoE devices. Non-PoE switches can be made PoE ready by adding a PoE injector and powering a few devices. The injector can add electrical power and then simultaneously send data and power to power devices. Users will need one more cable to connect power outlets. If a PoE injector fails in this solution, it only affects one device. However, if the PoE in a PoE switch fails, all PoE devices fall offline. Ⅹ PoE Switch VS. PoE InjectorPower is delivered via PoE from two types of power source equipment (PSE): Midspan: These are PoE injectors, which are installed in-line in the Ethernet connection and inject data on the relevant Ethernet cable pairs. PoE injectors contain two ports: one for "data" and one for "data+power" to connect to the powered device. PoE injectors include an AC to DC transformer and can be inserted into a standard power outlet. They are useful when just powering one or two gadgets at a time. PoE injectors are typically passive, which means they always give power when hooked in. This has the potential to damage equipment that is either not designed for PoE or is anticipating PoE at a different voltage level. Reversing the "data" and "data+power" connections is the most common wiring error. PoE injectors should be put in a NEMA enclosure when used outdoors or in other severe situations to protect the cable connections from the elements. PoE Injector Endspan: These are PoE switches that are network switches that also provide PoE power on specific ports. PoE switches are normally active, thus they will only deliver power if they detect 25 k resistance across the associated powered pairs. This prohibits electricity from being given to network devices such as PCs that do not support PoE. PoE switches are often beneficial for bigger deployments requiring the interconnection of more than two devices. There are industrial switches designed for outdoor use or tough industrial locations, although it is normally recommended to place the switch inside a NEMA enclosure to protect the wire connections from the weather. Indoor switches are intended to be put in climate-controlled areas such as data closets and can be configured for desktop or rack-mount operation. PoE Switch The number of PoE devices you need to connect determines whether you use a PoE switch or a PoE injector. Individual PoE devices, such as the odd network IP camera at the construction site or a single wireless Access Point, can be linked without trouble using PoE injectors. When you need to connect additional PoE devices, a PoE switch is a better option. If a new network is being established, using managed PoE switches, which can power all VoIP phones as well as isolate and prioritize voice traffic, is a solid method to future-proof the system. PoE switches are all-in-one boxes that require no additional appliances to manage both network and power. While a PoE injector can be added to existing networks without changing the switch and can be mounted anywhere, Which one to select is entirely dependent on the exact requirements. As an example: If you only need to power a few things, PoE injectors are ideal. When compared to a PoE switch, the cost is lower. If the PoE in a PoE switch fails, all PoE in the switch fails. However, if a PoE injector fails, it only impacts one device. If you do need to replace a PoE injector, you can simply replace the defective injector without disrupting production elsewhere in the network. Ⅺ Thing to Consider When Choosing PoE Switches11.1 How many ports do I need?Switches range in size from four to fifty-four ports. This decision is based on the number of users/devices supported by your network. Keep in mind that the Internet of Things is still in its early stages (IoT). The more ports you need, the larger your network will be. Is there a sufficient number of interfaces to support the company/network as it grows? You should choose a switch with more interfaces than you require. It is preferable to have it and not need it than to need it and not have it. L2 functionalities for managed switches are included in this recommendation. The increase of the workforce isn't the sole factor influencing network size. Display screens, digital signage, wireless access points, heating and cooling systems, SMART lighting, security systems, and even appliances such as refrigerators are all on the way. 11.2 How much speed will my POE switch provide?Will 10/100 interfaces suffice?Gigabit interfaces are incorporated into the majority of PCs and network equipment, and they are quickly becoming the standard. This issue may also fall under scalability if the company/network does not grow but there is a need for quicker links. 11.3 What type of redundancy will I need for my network?Should I go with a 16-port switch or two 8-port switches? This is a common question that might be subjective depending on the importance of uptime, financial budget, network administration, and available space. If most variables are not a concern, then use two switches rather than a single switch. If the entire network is dependent on a single switch and the unit fails catastrophically, the entire network goes down. If one of the two switches fails, just half of the network is offline, but it can still function until a replacement is found. As previously said, if you are servicing clients with servers that will manage financial or personal data, redundancy is a key component to the operation's success. 11.4 What level of technical support will I need?How simple is it to set up the move, and is there a local help team in my country if I have any problems? Make sure you have access to technical support. For certain businesses, not being able to get help when you need it is a deal-breaker, as projects may only allow a limited amount of time to configure/troubleshoot devices. If the time allotted for configuring/troubleshooting a switch is exceeded, you may need to explore contacting alternative technical support providers inside your country. Be warned: due to time zone differences and language barriers, outsourced support centers may not work. Determine the level of assistance you will receive ahead of time and plan accordingly. It will save time and increase uptime. Ⅻ Frequently Asked Questions About the PoE Switch1. How much power can PoE devices supply?PoE+ devices can deliver up to 30 watts per port, while PoE devices can deliver up to 15.4 watts per port. However, some power is constantly lost throughout the cable's length, and more power is lost along longer cable runs. The PD's minimum guaranteed power is 12.95 watts per port for PoE and 25.5 watts per port for PoE+. PSEs also have a maximum power budget, which is the total amount of power (measured in watts) that they can give to PDs at one time. Because most users do not demand that much power, most PSEs do not have a large enough power budget to give the maximum potential power to all PoE-capable ports. When purchasing for a PoE-capable PSE, make sure to thoroughly assess your required power budget for all of the PDs you intend to connect. 2. What is PoE+?The IEEE 802.3 at standard, often known as PoE+. is the most recent update to the PoE standard. The primary distinction between 802.3af (PoE) and 802.3at (PoE+) PSEs is that PoE+ PSEs can deliver nearly twice as much power over a single Ethernet cable. PoE+ PSEs can power both PoE and PoE+ PDs, but PoE PSEs can only power PoE PDs. PoE+ PDs necessitate more power than PoE PSEs can supply. 3. Can I mix PoE and non-PoE devices in my network?PoE devices can coexist alongside non-PoE devices in a network, but non-PoE devices cannot power PDs or be powered by PSEs. Non-PoE devices require a separate power supply. 4. What Is the Max PoE Distance? How Can I Extend the Maximum Distance of PoE?Ethernet cable distances for data and power transmission are limited to 100 meters in standard PoE, whether for IEEE 802.3af (PoE) or 802.3at (PoE+). If you want to increase the maximum distance, gadgets like PoE extenders and media converters can increase the range to 100 meters or more, up to 300 meters. 5. Can I Connect a PoE Switch to Another PoE Switch?You certainly can. The PSE only supplies power to the PD when it detects that the device is capable of handling it. Because the two PoE switches are both PSEs, they will only be used for data transmission. 6. Do I Need Special Cables for PoE Switches?No. In general, the Ethernet cables that need be used for PoE switches are determined solely by the data rate of the PoE port; for example, 10/100M can utilize Cat3 or better connections, whereas 1000M requires Cat5/Cat5e/Cat6 cables. In the future, you may need Cat6a or greater cables to deploy 2.5G/5G/10G PoE devices. However, purchasing high-quality Ethernet cables made of oxygen-free copper is never a bad idea.
kynix On 2022-05-16
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