answersLogoWhite

0

What is air break switch?

Updated: 12/17/2022
User Avatar

Wiki User

15y ago

Best Answer

An air break switch comprising one or more fixed contacts and one or more movable contacts which are movable between open and closed positions, and a coil which, preferably in conjunction with magnetically susceptible material acting as a flux director, provides a magnetic field in the vicinity of the separable contacts in a direction which is substantially normal to a shock front which tends to be set up by establishment of an arc between the separable contacts and has a value such as to cause the Alfven speed, at least in the vicinity of plasma associated with the arc, to be significantly in excess of the air speed attainable by such shock front, in order to hinder or prevent establishment of such shock front. The coil may surround an arc chamber containing runners defining chutes into which the arc moves under the normal blow-out magnetic field set up by the current through the contacts and in the arc.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is air break switch?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is difference bitween air break switch and load break switch?

Both are types of isolators of a power circuit. Load break switch is an isolator where circuit can be isolated on load. The quenching media could be air, oil or gas..... Air break switch is type isolator where isolation takes place in the air itself. (break contacts are not immersed in oil, gas ...) But whether these isolators can be opened on load or not can be said only by looking at the desgin data. Some isolators are designed to open and close on load.


Calling a function from switch in C?

Yes, you can call a function from within a switch statement in C. switch (i) { case 0: function1(i); break; case 1: function2(i); break; default: function3(i); break; } When the function returns, you will still be in the switch statement.


How can we use characters in the switch statements to select the cases java?

Switch statements in Java can only use integer values. This means that we can switch on char values (because chars are simply ints with a different output type), but we can not switch on Strings or any other objects. The following examples are both valid in Java. // switch 1 int x = 1; switch(x) { case 0: break; case 1: break; default: break; } // switch 2 char x = '1'; switch(x) { case '0': break; case '1': break; default: break; }


How do you break a loop in a switch case statement?

using break; statement


The break statement is required in the default case of a switch selection structure?

Ends the case statement. Without it, any code after where the break; is supposed to be will get executed as well until it does encounter a break; or the end of the switch.Code Example:char cTest = 'a';switch(cTest) {case 'a':/* Code here gets executed. */case 'b': //* Code here gets executed. */case 'c':/* Code here gets executed. */break;case 'd':/* Code here won't be executed. */default:/* Code here won't be executed. */}

Related questions

What is the difference between a load break switch and an air break switch?

The main difference is that air break switches lack a mechanism for suppression and load break switches do have them. They are both disconnect switches but have different uses.


What is difference bitween air break switch and load break switch?

Both are types of isolators of a power circuit. Load break switch is an isolator where circuit can be isolated on load. The quenching media could be air, oil or gas..... Air break switch is type isolator where isolation takes place in the air itself. (break contacts are not immersed in oil, gas ...) But whether these isolators can be opened on load or not can be said only by looking at the desgin data. Some isolators are designed to open and close on load.


What is the difference between an air break switch and an isolator?

An air-break link (ABL) switch is designed to interrupt normal load currents (but not fault currents). In order to do so, they usually incorporate some form of very simple arc-extinguishing feature.An isolator switch, on the other hand, is not designed to interrupt current, but to isolate equipment after that equipment has been disconnected (e.g. by opening a circuit breaker).


Can you switch from remeron to Paxil without a break in between?

can you switch from remeron to paxil without a break in between


What is the of a switch?

The function of a switch is to break and connect the flow of electricity.


Calling a function from switch in C?

Yes, you can call a function from within a switch statement in C. switch (i) { case 0: function1(i); break; case 1: function2(i); break; default: function3(i); break; } When the function returns, you will still be in the switch statement.


How can we use characters in the switch statements to select the cases java?

Switch statements in Java can only use integer values. This means that we can switch on char values (because chars are simply ints with a different output type), but we can not switch on Strings or any other objects. The following examples are both valid in Java. // switch 1 int x = 1; switch(x) { case 0: break; case 1: break; default: break; } // switch 2 char x = '1'; switch(x) { case '0': break; case '1': break; default: break; }


Where is your brake light switch on a 1996 Geo Prism?

The break light switch is located on the backside of the break peddle arm.


What is switch purpose?

A switch is used to make or break an electrical circuit.


What is a switch's purpose?

A switch is used to make or break an electrical circuit.


What is the function of a switch?

The function of a switch is to break and connect the flow of electricity.


How do you break a loop in a switch case statement?

using break; statement