Switch
Switch
Relevant topics on
Electrical installations
v
t
e
Contents
1Description
2Contacts
o 2.1Contact terminology
o 2.2Contact bounce
o 2.3Arcs and quenching
o 2.4Power switching
o 2.5Inductive loads
o 2.6Incandescent loads
o 2.7Wetting current
3Actuator
o 3.1Biased switches
o 3.2Rotary switch
o 3.3Toggle switch
4Special types
o 4.1Mercury tilt switch
o 4.2Knife switch
o 4.3Footswitch
o 4.4Reversing switch
5Light switches
6Slide switches
7Electronic switches
8Other switches
9See also
10References
11External links
Description[edit]
Electrical switches. Top, left to right: circuit breaker, mercury switch, wafer switch, DIP switch,
surface mount switch, reed switch. Bottom, left to right: wall switch (U.S. style), miniature toggle
switch, in-line switch, push-button switch, rocker switch, microswitch.
The most familiar form of switch is a manually operated electromechanical device with one or more
sets of electrical contacts, which are connected to external circuits. Each set of contacts can be in
one of two states: either "closed" meaning the contacts are touching and electricity can flow
between them, or "open", meaning the contacts are separated and the switch is nonconducting. The
mechanism actuating the transition between these two states (open or closed) are usually (there
are other types of actions) either an "alternate action" (flip the switch for continuous "on" or "off")
or "momentary" (push for "on" and release for "off") type.
A switch may be directly manipulated by a human as a control signal to a system, such as a
computer keyboard button, or to control power flow in a circuit, such as a light switch.
Automatically operated switches can be used to control the motions of machines, for example, to
indicate that a garage door has reached its full open position or that a machine tool is in a position
to accept another workpiece. Switches may be operated by process variables such as pressure,
temperature, flow, current, voltage, and force, acting as sensors in a process and used to
automatically control a system. For example, a thermostat is a temperature-operated switch used to
control a heating process. A switch that is operated by another electrical circuit is called a relay.
Large switches may be remotely operated by a motor drive mechanism. Some switches are used to
isolate electric power from a system, providing a visible point of isolation that can be padlocked if
necessary to prevent accidental operation of a machine during maintenance, or to prevent electric
shock.
An ideal switch would have no voltage drop when closed, and would have no limits on voltage or
current rating. It would have zero rise time and fall time during state changes, and would change
state without "bouncing" between on and off positions.
Practical switches fall short of this ideal; as the result of roughness and oxide films, they
exhibit contact resistance, limits on the current and voltage they can handle, finite switching time,
etc. The ideal switch is often used in circuit analysis as it greatly simplifies the system of equations
to be solved, but this can lead to a less accurate solution. Theoretical treatment of the effects of non-
ideal properties is required in the design of large networks of switches, as for example used in
telephone exchanges.
Contacts[edit]
A simple on-off
switch: The two
terminals are
either connected
Single pole,
SPST One-way Two-way together or
single throw
disconnected from
each other. An
example is a light
switch.
Equivalent to
Double pole, Double two SPST switches
DPST Double pole
single throw pole controlled by a
single mechanism.
Equivalent to
Double pole, two SPDT switches
DPDT
double throw controlled by a
single mechanism.
DPCO Double pole Schematically
changeover equivalent
or Double to DPDT. Some
pole, centre suppliers
use DPCO for
switches with a
stable center
position
and DPDT for those
without. A
DPDT/DPCO
switch with a
center position can
be "off" in the
center, not
off
connected to either
L1 or L2, or "on",
connected to both
L1 and L2 at the
same time. The
positions of such
switches are
commonly
referenced as "on-
off-on" and "on-on-
on" respectively.
DPDT switch
internally wired for
polarity-reversal
Intermediate Four-way applications: only
switch switch four rather than six
wires are brought
outside the switch
housing.
Changeover switch
with a COM
(Common), which
can connect to L1,
Two pole, six L2, L3, L4, L5, or
2P6T
throw L6; with a second
switch (2P, two
pole) controlled by
a single
mechanism.
Switches with larger numbers of poles or throws can be described by replacing the "S" or "D" with a
number (e.g. 3PST, SP4T, etc.) or in some cases the letter "T" (for "triple") or "Q" (for "quadruple").
In the rest of this article the terms SPST, SPDT and intermediate will be used to avoid the ambiguity.
Contact bounce[edit]
Snapshot of switch bounce on an oscilloscope. The switch bounces between on and off several times
before settling.
Contact bounce (also called chatter) is a common problem with mechanical switches and relays,
which arises as the result of electrical contact resistance (ECR) phenomena at interfaces. Switch
and relay contacts are usually made of springy metals. When the contacts strike together, their
momentum and elasticity act together to cause them to bounce apart one or more times before
making steady contact. The result is a rapidly pulsed electric current instead of a clean transition
from zero to full current. The effect is usually unimportant in power circuits, but causes problems in
some analogue and logic circuits that respond fast enough to misinterpret the on-off pulses as a
data stream.[5] In the design of micro-contacts controlling surface structure (surface roughness) and
minimizing the formation of passivated layers on metallic surfaces are instrumental in inhibiting
chatter.
The effects of contact bounce can be eliminated by use of mercury-wetted contacts, but these are
now infrequently used because of the hazards of mercury. Alternatively, contact circuit voltages can
be low-pass filtered to reduce or eliminate multiple pulses from appearing. In digital systems,
multiple samples of the contact state can be taken at a low rate and examined for a steady sequence,
so that contacts can settle before the contact level is considered reliable and acted upon. Bounce in
SPDT switch contacts signals can be filtered out using a SR flip-flop (latch) or Schmitt trigger. All of
these methods are referred to as 'debouncing'.
Software-based contact debouncing methods[6] are usually based onto a multiple polling with
simultaneously statistics storing. The simplest method is a similarity counting algorithm, that
continuously and periodically polls the contact. If the current instant read is equal to previous,
counter increments, otherwise, it clears. The contact considered as a trust closed-up, when the
similarity counter reaches some predefined threshold value. An improved method consists in
denoting one of a contact states as a desirable (target), which is difficult to get into (needs a
multiple equal values, which have inextricably inputted during threshold period) and easy to leave
(a single contact conjoin value leads to reset of trust state). In this case, a Mealy finite-state machine
(FSM) approach is suitable.
Auto-repeat is a feature when after the first contact closing-up condition is detected, the polling
FSM begins to periodically emit the addition closing-up signals of button pushing predominantly
with the decreasing of time period between emits. During auto-repeating FSM behaves itself (in
relation to the upper-level subroutine) similar to a pulse-frequency modulator. This feature is a
strongly necessity in such application as an input devices (for example, in remote control units,
RCU).
All electronic and software-based debouncing methods only mask (or filter) the bounce transient
process for sensitive or control digital circuits, or soften and shorten the trajectory of the electrical
component of the transient process.
By analogy, the term "debounce" has arisen in the software development industry to describe rate-
limiting or throttling the frequency of a method's execution. [7]
Actuator[edit]
The moving part that applies the operating force to the contacts is called the actuator, and may be
a toggle or dolly, a rocker, a push-button or any type of mechanical linkage (see photo).
Biased switches[edit]
A switch normally maintains its set position once operated. A biased switch contains a mechanism
that springs it into another position when released by an operator. The momentary push-
button switch is a type of biased switch. The most common type is a "push-to-make" (or normally-
open or NO) switch, which makes contact when the button is pressed and breaks when the button
is released. Each key of a computer keyboard, for example, is a normally-open "push-to-make"
switch. A "push-to-break" (or normally-closed or NC) switch, on the other hand, breaks contact
when the button is pressed and makes contact when it is released. An example of a push-to-break
switch is a button used to release a door held closed by an electromagnet. The interior lamp of a
household refrigerator is controlled by a switch that is held open when the door is closed.
Rotary switch[edit]
Main article: Rotary switch
A three-deck stacked rotary switch. Any number of switching elements may be stacked in this
manner, by using a longer shaft and additional spacing standoffs between each switching element.
A rotary switch operates with a twisting motion of the operating handle with at least two positions.
One or more positions of the switch may be momentary (biased with a spring), requiring the
operator to hold the switch in the position. Other positions may have a detent to hold the position
when released. A rotary switch may have multiple levels or "decks" in order to allow it to control
multiple circuits.
One form of rotary switch consists of a spindle or "rotor" that has a contact arm or "spoke" which
projects from its surface like a cam. It has an array of terminals, arranged in a circle around the
rotor, each of which serves as a contact for the "spoke" through which any one of a number of
different electrical circuits can be connected to the rotor. The switch is layered to allow the use of
multiple poles, each layer is equivalent to one pole. Usually such a switch has a detent mechanism
so it "clicks" from one active position to another rather than stalls in an intermediate position. Thus
a rotary switch provides greater pole and throw capabilities than simpler switches do.
Other types use a cam mechanism to operate multiple independent sets of contacts.
Rotary switches were used as channel selectors on television receivers until the early 1970s, as
range selectors on electrical metering equipment, as band selectors on multi-band radios and other
similar purposes. In industry, rotary switches are used for control of measuring
instruments, switchgear, or in control circuits. For example, a radio controlled overhead crane may
have a large multi-circuit rotary switch to transfer hard-wired control signals from the local manual
controls in the cab to the outputs of the remote control receiver.
Toggle switch[edit]
Toggle switches with the shared cover preventing certain forbidden combinations
A toggle switch or tumbler switch is a class of electrical switches that are manually actuated by a
mechanical lever, handle, or rocking mechanism.
Toggle switches are available in many different styles and sizes, and are used in numerous
applications. Many are designed to provide the simultaneous actuation of multiple sets of electrical
contacts, or the control of large amounts of electric current or mains voltages.
The word "toggle" is a reference to a kind of mechanism or joint consisting of two arms, which are
almost in line with each other, connected with an elbow-like pivot. However, the phrase "toggle
switch" is applied to a switch with a short handle and a positive snap-action, whether it actually
contains a toggle mechanism or not. Similarly, a switch where a definitive click is heard, is called a
"positive on-off switch".[15] A very common use of this type of switch is to switch lights or other
electrical equipment on or off. Multiple toggle switches may be mechanically interlocked to prevent
forbidden combinations.
In some contexts, particularly computing, a toggle switch, or the action of toggling, is understood in
the different sense of a mechanical or software switch that alternates between two states each time
it is activated, regardless of mechanical construction. For example, the caps lock key on a computer
causes all letters to be generated in capitals after it is pressed once; pressing it again reverts to
lower-case letters.
Special types[edit]
Light switches[edit]
Main article: Light switch
In building wiring, light switches are installed at convenient locations to control lighting and
occasionally other circuits. By use of multiple-pole switches, multiway switching control of a lamp
can be obtained from two or more places, such as the ends of a corridor or stairwell. A wireless light
switch allows remote control of lamps for convenience; some lamps include a touch switch which
electronically controls the lamp if touched anywhere. In public buildings several types of vandal
resistant switches are used to prevent unauthorized use.
Slide switches[edit]
Slide switches are mechanical switches using a slider that moves (slides) from the open (off)
position to the closed (on) position.
Electronic switches[edit]
Other switches[edit]
Centrifugal switch
Company switch
Dead man's switch
Fireman's switch
Hall-effect switch
Inertial switch
Isolator switch
Key switch
Kill switch
Latching switch
Light switch
Load control switch
Membrane switch
MEMS switch
Optical switch
Piezo switch
Pull switch
Push switch
Railroad switch
Sense switch
Slotted optical switch
Stepping switch
Thermal switch
Time switch
Touch switch
Transfer switch
Wire switches
Zero speed switch
See also[edit]
Circuit breaker
Commutator (electric)
Contact resistance
DIN rail
Electric switchboard
Fuse cutout
RF switch matrix
Switch access
Switchgear
References[edit]