Current: Difference between revisions

From Physics Book
Jump to navigation Jump to search
No edit summary
(Wiki Resource Submission JJS Spring 2022)
 
Line 1: Line 1:
Claimed by spencer
Claimed by Jack Serketich Spring 2022


Explanation of Current Through a Wire
Current is the rate of flow of charged particles through a conductive material, such as metal. These charged particles can be many different things, but for this curriculum, you only need to be aware of electrons. This flow goes from an area of high electric potential to low electric potential. Current is measured in Amperes (A).


==The Main Idea==
==The Main Idea==
The electric current is the rate of flow of electric charge through an area. It is important to note that the charge in the circuits you will be dealing with are not in equilibrium, but instead, in the steady state. The distinction between equilibrium and the steady state is as follows. In equilibrium, a metal contains no mobile charges in motion (average drift velocity = 0). In the steady state, the particles may be moving however they please, but their average drift velocity stays constant.
[[File:Neg cur.png|300px|thumb|right|Negative Charge Carriers]]
[[File:Convetional Current.png|400px|thumb|right|The difference between conventional current and electron current]]


Another important distinction to make is the difference between the electron current and the conventional current. The electron current is denoted by a lowercase i, describes the number of electrons per second to enter or leave a section of a conductor, and has units of electrons per second. The direction of the electron current is described as the direction the electrons inside a wire are moving. This is true in most cases since electrons, not protons, are the mobile charge carriers in circuits.  
Most commonly used in circuits and magnetic field problems, current is a driving force for many occurrences in physics. The flow of electrons can power devices through its transfer of energy or create a cylindrical [[Magnetic Field|magnetic field]] due to its numerous moving charges. Current is denoted by an uppercase I and is measured in the SI unit of Amperes, or amps (A), which describe the amount of charge that passes a cross-section of a wire per second, and therefore has units of coulombs per second. In circuits, current is created by a battery or voltage source creating a potential difference in either end of a wire(s). This puts the circuits you will largely be focusing on in a [[Steady State|steady state]], not equilibrium.


[[File:Neg cur.png|300px|thumb|right|Negative Charge Carriers]]
Current is commonly described in its conventional form. Conventional current was coined by Benjamin Franklin before the true direction of current was found. He made the convention of current in a simple sircuit flowing from an area of high electric potential to low electric potential, believing protons were the charge carriers. However, it was later discovered that electrons are the charge carriers and flow from an area of low electric potential to high electric potential. This means the conventional current and electron current oppose each other. Charge carriers can also be positive, however, such as a semiconductor which can have positive or negative carriers. Physicists ultimately decided to continue with conventional current to prevent confusion. For the sake of this curriculum, we will follow the conventional current model unless specified otherwise.


On the other hand, the conventional current is denoted by an uppercase I, describe the amount of charge that passes a cross-section of a wire per second, and therefore has units of coulombs per second, or amperes (abbreviated as A). Since the conventional current is described by a positive charge, the direction of the conventional current will be opposite to the direction of the electron current. If the mobile charges were positive, they would move in the direction of the conventional current.
Current is a major component in [[Ohm's Law|Ohm's Law]], helping us understand how electrons move within circuits. [[Magnetic Field of a Long Straight Wire|Its magnetic fields]] are frequently used throughout the course.


[[File:Pos cur.png|300px|thumb|right|Positive Charge Carriers]]
===A Mathematical Model===


Before scientists knew that electrons were the common charge carriers, they discovered current. And, with only two choices, they chose to treat the moving charges as positive. This may seem annoying at first, but there are some benefits to using the conventional current over the directly opposed "electron current". For one, it flows from the positive end of a battery toward the negative end, and from high to low energy.
In this curriculum, current will only need to be calculated in terms of [[Ohm's Law|Ohm's Law]] and [[Magnetic Field of a Long Straight Wire|its magnetic field]]. While you do not need to understand the following equations to understand the course's material, it may aid in your understanding.


===A Mathematical Model===
[[File:Current Calc.png|500px|thumb|right|Calculating i for current]]


Assume uniform density <math>n</math> of mobile electrons (uniform current) moving with an average drift speed <math>v</math> in a wire of cross-sectional area <math>A</math>
Assume uniform density <math>n</math> of mobile electrons (uniform current) moving with an average drift speed <math>v</math> in a wire of cross-sectional area <math>A</math>
Line 26: Line 27:
<math>electrons/m^3⋅m^2⋅m/s=electrons/s</math>
<math>electrons/m^3⋅m^2⋅m/s=electrons/s</math>


Since I (conventional current) is defined as the amount of charge moving pass a point per second, we multiply the number of electrons by positive charge <math>|q|</math> to get:
Since I (conventional current) is defined as the amount of charge moving past a point per second, we multiply the number of electrons by positive charge <math>|q|</math> to get:


<math>I = |q|⋅i = |q|nAv </math>
<math>I = |q|⋅i = |q|nAv </math>
Line 32: Line 33:
with units of
with units of


<math>coulombs⋅electrons/s = C/s = Ampere</math>
<math>coulombs⋅electrons/s = C/s = Amperes</math>


Another way to express the formulas for current is in terms of the electron mobility <math>μ</math>of the wire and the electric field <math>E</math> inside the metal. This can be done by recognizing that the average drift speed <math>v = μE</math>. Substituting this into the equations for electron and conventional current, we get:
Another way to express the formulas for current is in terms of the electron mobility <math>μ</math>of the material and the electric field <math>E</math> inside the metal. This can be done by recognizing that the average drift speed <math>v = μE</math>. Substituting this into the equations for electron and conventional current, we get:


<math>i = nAv = nAμE</math> (electron current)
<math>i = nAv = nAμE</math> (electron current)
Line 69: Line 70:


<math> P = I⋅ΔV </math>
<math> P = I⋅ΔV </math>
===A Computational Model===
To view this code, go to [https://glowscript.org/#/user/jserketich3/folder/MyPrograms/program/WikiResourceCurrent GlowScript.org].
[[File:CurrentGif.gif|500px|thumb|right|Computational Model Results]]
    # GlowScript 1.1 VPython
   
    n = 10 #number of electrons
    r = 1.5 #radius of wire
    A = pi * r**2  #area of wire
    v = 2 #drift velocity
    q = 1.602e-19
   
    #calculate current
    I = q * n * A * v
    print("Current Calculation: q * n * A * v")
    print("Current Calculation: " + q + " * " + n + " * (" + A + ") * " + v)
    print("Current is: " + I)
   
    #the wire that the current will flow through
    wire = cylinder(pos=vec(-5, 0, -5), axis=vec(5, 0, 5), radius = r)
   
    #make electrons
    lengthOffset = vec(8 / sqrt(2) / n, 0, 8 / sqrt(2) / n)
    rotateList = [vec(0, 0.65, 0) * r, vec(-0.2 * sqrt(2), -0.4, 0.2 * sqrt(2)) * r, vec(0.2 * sqrt(2), -0.2, -0.2 * sqrt(2)) * r]
    electronList = []
    for i in range(0, n):
        electronList.append(sphere(pos = rotateList[i % 3] - lengthOffset * i, radius = 0.2, color = color.blue, og = rotateList[i % 3]))
   
    #move electrons
    while True:
        rateNum = 100
        rate(rateNum) #this says 100 calculations per second
   
        for electron in electronList:
            electron.pos = electron.pos + vec(v * (1/rateNum) / sqrt(2),0,v * (1/rateNum) / sqrt(2))
            if sqrt(electron.pos.x**2 + electron.pos.z**2) > 8:
                electron.pos = electron.og


==Examples==
==Examples==


Be sure to show all steps in your solution and include diagrams whenever possible
===Simple===


===Simple===
One type of problem you are sure to encounter involves a battery and resistor. You can read more about that section on the [[RC Circuit|RC circuit]] or [[Ohm's Law|Ohm's Law]] page of this wiki, but here's how to solve one now:
One type of problem you are sure to encounter involves a battery and resistor. You can read more about that section on the RC page of this wiki, but here's how to solve one now:


Using your formula sheet, notice that <math>I =  {|ΔV|\over R}</math>. where R is the resistance in the circuit and |ΔV| is the voltage.
Using your formula sheet, notice that <math>I =  {|ΔV|\over R}</math>. where R is the resistance in the circuit and |ΔV| is the voltage.
Line 108: Line 148:


==Connectedness==
==Connectedness==
A current is something which exists is any circuit and affects many other attributes. For example, currents also create magnetic fields. A major application of current is in transformers, since transformers rely on inductance to convert the amount of current and potential difference while maintaining the same amount of power. Fields that deal directly with electricity and circuits, such as electrical and computer engineering may often find themselves dealing with currents.
 
Current is a fundamental principle in anything electric. It powers circuits, moves motors, lights up lightbulbs, and so much more. It is integral to electrical and computer engineering. To look at a specific example, the magnetic force created by a current-carrying wire is what causes an electric motor to rotate. Layer and layers of wound wire circle around the inside of the motor, creating a very strong magnetic field. The shaft of this motor is attached to an electromagnet. This magnet experiences a magnetic force from the wire, but just as it reaches its apex, the electromagnet switches poles to move quickly to the other side. This is done rapidly to spin the shaft incredibly quickly.
 
To link it directly to my major, Computer Engineering, the computer hardware that I will manufacture utilizes current to power devices and perform logic. This flow of electrons is the blood flow of circuitry. It is the only reason computers function. One of the smallest and most integral parts of computers, the transistor, uses current to determine if its output terminals will produce another current.
 
An interesting application of current that many people know of but don't often think about is the body's own electric current. Nerve cells utilize electric current to send signals to other cells. There are times where are nerve cells can't communicate with necessary organs, such as cardiac arrest. Defibrillators are designed to utilize electric currents to send a signal to the muscles in our heart to pump blood again. This flow of charged particles helps keep us alive.
 
==History==
==History==
A giant leap in our understanding of electric charge and current was advocated by Benjamin Franklin who tried many different experiments with charges. He was the first to coin the terms positive and negative charges. However, evidence and electric currents was not provided until around 1800 when batteries were invented and currents could be investigated further. Initially, scientists thought that charges and currents were different phenomena, but today we understand that currents are simply moving charges.
 
[[File:Ben100.jpg|thumb|right|Benjamin Franklin on the $100 bill]]
 
As stated earlier in this page, Benjamin Franklin was a pioneer in researching electricity. He was responsible for defining conventional current and many early breakthroughs. However, he didn't know everything as evident in the mistakes of conventional current. Current would not be easily analyzable until a battery was created. The first electric cell was created by Alessandro Volta in 1800. By observing a chemical reaction occur between zinc, salt water soaked paper, and copper, he recorded an electric current. The many secrets of current would not be discovered until Michael Faraday discovered induction by passing a magnet over a copper wire, sending a current through the wire.


==See also==
==See also==
[[Ohm's Law|Ohm's Law]] is a defining characteristic of circuits involving current.
[[RC Circuits|RC Circuits]] are basic circuits that involve a resistor and capacitor to create current.
[[Magnetic Field of a Long Straight Wire|The magnetic field of a wire]] describes how a current can apply a magnetic field to the surrounding system.
[[Steady State|The steady state]] explains how circuits can be steady without reaching equilibrium and still hold a current.
[[Faraday's Law|Faraday's Law]] describes a fundamental concept of current, inducing a current through a change in magnetic field.


===Further readings===
===Further readings===
Chabay, Ruth W., and Bruce A. Sherwood. Matter & Interactions. N.p.: n.p., n.d. Print.
Chabay, Ruth W., and Bruce A. Sherwood. Matter & Interactions. N.p.: n.p., n.d. Print.
===External Links===
===External Links===
http://physics.info/electric-current/
http://physics.info/electric-current/


Line 122: Line 184:


==References==
==References==
https://en.wikipedia.org/wiki/Electric_current
https://en.wikipedia.org/wiki/Electric_current


Line 134: Line 197:
http://practicalphysics.org/electric-charge-and-current-short-history.html
http://practicalphysics.org/electric-charge-and-current-short-history.html


[[Category:Which Category did you place this in?]]
[[Category:Current]]

Latest revision as of 23:32, 17 April 2022

Claimed by Jack Serketich Spring 2022

Current is the rate of flow of charged particles through a conductive material, such as metal. These charged particles can be many different things, but for this curriculum, you only need to be aware of electrons. This flow goes from an area of high electric potential to low electric potential. Current is measured in Amperes (A).

The Main Idea

Negative Charge Carriers
Error creating thumbnail: sh: /usr/bin/convert: No such file or directory Error code: 127
The difference between conventional current and electron current

Most commonly used in circuits and magnetic field problems, current is a driving force for many occurrences in physics. The flow of electrons can power devices through its transfer of energy or create a cylindrical magnetic field due to its numerous moving charges. Current is denoted by an uppercase I and is measured in the SI unit of Amperes, or amps (A), which describe the amount of charge that passes a cross-section of a wire per second, and therefore has units of coulombs per second. In circuits, current is created by a battery or voltage source creating a potential difference in either end of a wire(s). This puts the circuits you will largely be focusing on in a steady state, not equilibrium.

Current is commonly described in its conventional form. Conventional current was coined by Benjamin Franklin before the true direction of current was found. He made the convention of current in a simple sircuit flowing from an area of high electric potential to low electric potential, believing protons were the charge carriers. However, it was later discovered that electrons are the charge carriers and flow from an area of low electric potential to high electric potential. This means the conventional current and electron current oppose each other. Charge carriers can also be positive, however, such as a semiconductor which can have positive or negative carriers. Physicists ultimately decided to continue with conventional current to prevent confusion. For the sake of this curriculum, we will follow the conventional current model unless specified otherwise.

Current is a major component in Ohm's Law, helping us understand how electrons move within circuits. Its magnetic fields are frequently used throughout the course.

A Mathematical Model

In this curriculum, current will only need to be calculated in terms of Ohm's Law and its magnetic field. While you do not need to understand the following equations to understand the course's material, it may aid in your understanding.

Error creating thumbnail: sh: /usr/bin/convert: No such file or directory Error code: 127
Calculating i for current

Assume uniform density [math]\displaystyle{ n }[/math] of mobile electrons (uniform current) moving with an average drift speed [math]\displaystyle{ v }[/math] in a wire of cross-sectional area [math]\displaystyle{ A }[/math]

[math]\displaystyle{ i=density⋅area⋅length/time = nAv }[/math]

with units of

[math]\displaystyle{ electrons/m^3⋅m^2⋅m/s=electrons/s }[/math]

Since I (conventional current) is defined as the amount of charge moving past a point per second, we multiply the number of electrons by positive charge [math]\displaystyle{ |q| }[/math] to get:

[math]\displaystyle{ I = |q|⋅i = |q|nAv }[/math]

with units of

[math]\displaystyle{ coulombs⋅electrons/s = C/s = Amperes }[/math]

Another way to express the formulas for current is in terms of the electron mobility [math]\displaystyle{ μ }[/math]of the material and the electric field [math]\displaystyle{ E }[/math] inside the metal. This can be done by recognizing that the average drift speed [math]\displaystyle{ v = μE }[/math]. Substituting this into the equations for electron and conventional current, we get:

[math]\displaystyle{ i = nAv = nAμE }[/math] (electron current)

and

[math]\displaystyle{ I = |q|nAv = |q|nAμE }[/math] (conventional current)

If a charge distribution of density [math]\displaystyle{ ρ }[/math] moves with the velocity [math]\displaystyle{ v }[/math], the charge per unit time through [math]\displaystyle{ ΔA }[/math] is [math]\displaystyle{ ρv⋅nΔA }[/math] [math]\displaystyle{ Δq=ρv⋅nΔAΔt }[/math]. [math]\displaystyle{ ρ = Nq }[/math]

The charge per unit time is then [math]\displaystyle{ ρv⋅nΔS }[/math], from which we get the current density to be [math]\displaystyle{ Nqv }[/math]

The current I through the surface is [math]\displaystyle{ I=∫Nqv⋅dA }[/math]

Other useful mathematical relationships of [math]\displaystyle{ I }[/math] in circuits are

[math]\displaystyle{ I = ΔV/R }[/math]

where [math]\displaystyle{ ΔV }[/math] is the potential difference and [math]\displaystyle{ R }[/math] is the resistance in ohms. and

[math]\displaystyle{ P = I⋅ΔV }[/math]

where [math]\displaystyle{ P }[/math] is the power of a circuit component.

In summary,

[math]\displaystyle{ i = nAv = nAμE }[/math] (electron current)

[math]\displaystyle{ I = |q|nAv = |q|nAμE }[/math] (conventional current)

[math]\displaystyle{ I = ΔV/R }[/math]

[math]\displaystyle{ P = I⋅ΔV }[/math]

A Computational Model

To view this code, go to GlowScript.org.

Error creating thumbnail: sh: /usr/bin/convert: No such file or directory Error code: 127
Computational Model Results
   # GlowScript 1.1 VPython
   
   n = 10 #number of electrons
   r = 1.5 #radius of wire
   A = pi * r**2  #area of wire
   v = 2 #drift velocity
   q = 1.602e-19
   
   #calculate current
   I = q * n * A * v
   print("Current Calculation: q * n * A * v")
   print("Current Calculation: " + q + " * " + n + " * (" + A + ") * " + v)
   print("Current is: " + I)
   
   #the wire that the current will flow through
   wire = cylinder(pos=vec(-5, 0, -5), axis=vec(5, 0, 5), radius = r)
   
   #make electrons
   lengthOffset = vec(8 / sqrt(2) / n, 0, 8 / sqrt(2) / n)
   rotateList = [vec(0, 0.65, 0) * r, vec(-0.2 * sqrt(2), -0.4, 0.2 * sqrt(2)) * r, vec(0.2 * sqrt(2), -0.2, -0.2 * sqrt(2)) * r]
   electronList = []
   for i in range(0, n):
       electronList.append(sphere(pos = rotateList[i % 3] - lengthOffset * i, radius = 0.2, color = color.blue, og = rotateList[i % 3]))
   
   #move electrons
   while True: 
       rateNum = 100
       rate(rateNum) #this says 100 calculations per second
   
       for electron in electronList:
           electron.pos = electron.pos + vec(v * (1/rateNum) / sqrt(2),0,v * (1/rateNum) / sqrt(2))
           if sqrt(electron.pos.x**2 + electron.pos.z**2) > 8:
               electron.pos = electron.og

Examples

Simple

One type of problem you are sure to encounter involves a battery and resistor. You can read more about that section on the RC circuit or Ohm's Law page of this wiki, but here's how to solve one now:

Using your formula sheet, notice that [math]\displaystyle{ I = {|ΔV|\over R} }[/math]. where R is the resistance in the circuit and |ΔV| is the voltage.

If you're given that the 50V battery is connected to a 100 [math]\displaystyle{ Ω }[/math] resistor, you simply substitute the values into your equation. [math]\displaystyle{ I = {50V\over 100 Ω} }[/math] [math]\displaystyle{ I = 0.5A }[/math]

Middling

Current will not always be what you solve for, though. In this problem, let's use the equations we've discussed to find the drift velocity [math]\displaystyle{ v }[/math]. Given the current is [math]\displaystyle{ 1A }[/math], the electron density is [math]\displaystyle{ 8 ⋅ 10^{27}m^{-3} }[/math], and the diameter of our wire is [math]\displaystyle{ 1mm }[/math].

Solution

First, let's find the area [math]\displaystyle{ {0.001\over 2}^{2}⋅π=7.85⋅10^{-7} }[/math]

Then, plug in the rest: [math]\displaystyle{ 1=|-1.6⋅10^{-19}|⋅5⋅10^{28}⋅7.85⋅10^{-7}⋅v, v = 9.9477.85⋅10^{-4}{m\over s} }[/math]

Difficult

The density of mobile electrons in aluminum metal is [math]\displaystyle{ 2.1 ⋅ 10^{29}m^{-3} }[/math]. You have a wire that is 20 cm long with a radius of 1.6 mm, and it takes 112.6 minutes for a single electron in the electron sea to drift from one end to the other. Given that the electron mobility of aluminum is [math]\displaystyle{ 0.0012 m^2/Vs }[/math], find the conventional current (I) and the electric field (E) in the wire.

Solution

First, find E. Since [math]\displaystyle{ v=μE, E = v/μ }[/math]. We can find [math]\displaystyle{ v }[/math] by realizing that [math]\displaystyle{ v=Δx/Δt }[/math]. [math]\displaystyle{ Δx = 0.20 m }[/math] and [math]\displaystyle{ Δt = 112.6 min = (112.6min)⋅(60 s/min) = 6756 s }[/math].

Then, [math]\displaystyle{ v=Δx/Δt = (0.20m) / (6756 s) = 2.96⋅10^{-5}m/s }[/math].

Therefore, [math]\displaystyle{ E = v/μ = ({2.96⋅10^{-5}m/s})/({0.0012 {m^2}/Vs}) = 0.0247 V/m }[/math]

Now, we can use [math]\displaystyle{ I = |q|nAv }[/math] to find the conventional current. Note that [math]\displaystyle{ A = πr^2 = π(0.0016)^2 = 8.04⋅10^{-6}m^2 }[/math] and [math]\displaystyle{ q= charge of electron = -1.6⋅10^{-19} C }[/math]

[math]\displaystyle{ I = |q|nAv = (1.6⋅10^{-19} C)⋅(2.1 ⋅ 10^{29}m^{-3})⋅(8.04⋅10^{-6}m^2)⋅(2.96⋅10^{-5}m/s)=8.00 A }[/math]

Connectedness

Current is a fundamental principle in anything electric. It powers circuits, moves motors, lights up lightbulbs, and so much more. It is integral to electrical and computer engineering. To look at a specific example, the magnetic force created by a current-carrying wire is what causes an electric motor to rotate. Layer and layers of wound wire circle around the inside of the motor, creating a very strong magnetic field. The shaft of this motor is attached to an electromagnet. This magnet experiences a magnetic force from the wire, but just as it reaches its apex, the electromagnet switches poles to move quickly to the other side. This is done rapidly to spin the shaft incredibly quickly.

To link it directly to my major, Computer Engineering, the computer hardware that I will manufacture utilizes current to power devices and perform logic. This flow of electrons is the blood flow of circuitry. It is the only reason computers function. One of the smallest and most integral parts of computers, the transistor, uses current to determine if its output terminals will produce another current.

An interesting application of current that many people know of but don't often think about is the body's own electric current. Nerve cells utilize electric current to send signals to other cells. There are times where are nerve cells can't communicate with necessary organs, such as cardiac arrest. Defibrillators are designed to utilize electric currents to send a signal to the muscles in our heart to pump blood again. This flow of charged particles helps keep us alive.

History

Benjamin Franklin on the $100 bill

As stated earlier in this page, Benjamin Franklin was a pioneer in researching electricity. He was responsible for defining conventional current and many early breakthroughs. However, he didn't know everything as evident in the mistakes of conventional current. Current would not be easily analyzable until a battery was created. The first electric cell was created by Alessandro Volta in 1800. By observing a chemical reaction occur between zinc, salt water soaked paper, and copper, he recorded an electric current. The many secrets of current would not be discovered until Michael Faraday discovered induction by passing a magnet over a copper wire, sending a current through the wire.

See also

Ohm's Law is a defining characteristic of circuits involving current.

RC Circuits are basic circuits that involve a resistor and capacitor to create current.

The magnetic field of a wire describes how a current can apply a magnetic field to the surrounding system.

The steady state explains how circuits can be steady without reaching equilibrium and still hold a current.

Faraday's Law describes a fundamental concept of current, inducing a current through a change in magnetic field.

Further readings

Chabay, Ruth W., and Bruce A. Sherwood. Matter & Interactions. N.p.: n.p., n.d. Print.

External Links

http://physics.info/electric-current/

http://hyperphysics.phy-astr.gsu.edu/hbase/electric/elecur.html

References

https://en.wikipedia.org/wiki/Electric_current

http://www.feynmanlectures.caltech.edu/II_13.html#Ch13-S2

http://hyperphysics.phy-astr.gsu.edu/hbase/electric/elecur.html

Chabay, Ruth W., and Bruce A. Sherwood. Matter & Interactions. N.p.: n.p., n.d. Print.

http://physics.info/electric-current/

http://practicalphysics.org/electric-charge-and-current-short-history.html