````

Why Birds don't get electric shock while sitting on transmission lines?

Current flows in a loop (which means the circuit is closed). A bird sitting on a transmission line does not complete the circuit. If the same bird keeps one leg on one track and another leg (or any part of its body) on another line(or the neutral points), then it will get roasted.
Consider this circuit where a bird sits on the wire:
The values R1 and R2 are resistances of the line. Electricity takes the path of least resistance. The two legs of the bird which are perched on the same line do not complete the circuit. The R_Bird( resistance of the bird’s body) is much higher than that of the line, so the bird might not experience high current. The potential difference between the two legs of the bird is the same( since the resistance of the line is the same throughout). The current flows on. The bird is safe.
Now consider this scenario:
A bird sitting on a line decides to fly away and raises the wings. With one wing touching the neighboring line and the leg on the first line, this creates a closed circuit. Thus electricity (following the path of least resistance) will detect a potential difference between the wing (which touches the other line) and the leg(which is placed on the first line). The current tries to take on that path creating a short-circuit. Eventually, the bird gets zapped and falls off the line. Now the current will continue to flow on.

Related Posts:

  • Arduino - Operators An operator is a symbol that tells the compiler to perform specific mathematical or logical functions. C language is rich in built-in operators and provides the following types of operators − Arithmetic Operators Comparison… Read More
  • Arduino - If …else statement An if statement can be followed by an optional else statement, which executes when the expression is false. if … else Statement Syntax if (expression) { Block of statements; } else { Block of statements; } if…else … Read More
  • Arduino - Control Statements Decision making structures require that the programmer specify one or more conditions to be evaluated or tested by the program. It should be along with a statement or statements to be executed if the condition is determin… Read More
  • Arduino - If…else if …else statement The if statement can be followed by an optional else if...else statement, which is very useful to test various conditions using single if...else if statement. When using if...else if…else statements, keep in mind − An if … Read More
  • Arduino - Conditional Operator ? : The conditional operator ? : is the only ternary operator in C. ? : conditional operator Syntax expression1 ? expression2 : expression3 Expression1 is evaluated first. If its value is true, then expression2 is evaluated a… Read More

0 comments:

Post a Comment

 
Powered by Blogger