Skip to main content

WHAT IS METAL WHISKERS ??




METAL WHISKERS 

Metal whiskers are tiny hair-like growths that form on metals. When these electrically conductive whiskers appear on electronic assemblies, they can cause shorts or current leakage. The reason for their appearance is still hypothesized, but they are known to form mostly on pure tin or zinc finished surfaces. They can remain undetected, growing slowly out of your connectors until they destroy your cables and harnesses.
                                 Metal whiskers may vary in shape and size. Some emerge as straight while others may appear curved, forked, pyramidal, or grooved. Growth time can take anywhere from days to years, and can reach up to 10 mm.
                                                           Shorts and arcs are a symptom of metal whiskers. High Voltage, or Hipot, testing can detect metal whiskers and help you avoid serious problems in your products. To learn more about high voltage, check out Cirris’ article on Testing Cables with High Voltage.
                             Due to METAL WHISKERS the electronic circuit can be break after some time and this is cause is perform after electric shock. NASA satellite also not damage after some long time duration because on metal the whiskers grow very fast and make circuit usefulness.

Comments

Popular posts from this blog

Multiple Inheritance

Multiple Inheritance In multiple inheritance a class can access the property of more than one class. This inheritance is use for multiple accessing of properties. In multiple inheritance ambiguty is  occured when same name function is declare in both class and the object is confuse with function is called.  syntax − class derived-class: access baseA, access baseB.... Where access is one of public, protected, or private and would be given for every base class and they will be separated by comma as shown above. Let us try the following  example − #include <iostream.h> #include <conio.h>  // Base Class class Shape  {    public:       void getwidth(int w) {          width = w;       }       void getheight(int h) {          height = h;       }           prot...

CODD RULES of RDBMS

Codd’s rules for RDBMS (i)                 The information rule. (ii)              Guaranteed access of   data (iii)            Systematic treatment of null value. (iv)            On line DB support. (v)              Comprehensive sup-language rule. (vi)            The view update rule. (vii)         Insert update rule. (viii)       Physical data independence. (ix)            Logical data independence. (x)              Integrity rule (xi)  ...