<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://www.physicsbook.gatech.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dsaxena8</id>
	<title>Physics Book - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://www.physicsbook.gatech.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Dsaxena8"/>
	<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/Special:Contributions/Dsaxena8"/>
	<updated>2026-05-11T17:35:12Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.7</generator>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Talk:Right_Hand_Rule&amp;diff=46681</id>
		<title>Talk:Right Hand Rule</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Talk:Right_Hand_Rule&amp;diff=46681"/>
		<updated>2024-12-03T16:47:11Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: Created page with &amp;quot;No Comp. Model&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;No Comp. Model&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46523</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46523"/>
		<updated>2024-11-25T21:27:39Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
View model here: https://trinket.io/embed/glowscript/922d8d312818&lt;br /&gt;
&lt;br /&gt;
[[File:Glowscriptmodel-ezgif.com-crop.gif]]&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 2 ohms of resistance and 3 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{3}{2}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{I = 1.5 \text{ Amps}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Question 2&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 6 ohms of resistance and 2 amperes of current, what is the voltage?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = IR}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 6*2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 12 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 3&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 18 ohms of resistance and 10 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{I}{V}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{18}{10}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 1.8 \text{ Ohms}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 4&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has 2 3 volt batteries powering it. The circuit has 4 light bulbs, each providing 2 ohms of resistance. Assuming all components add up, what is the magnitude of the flow of the circuit?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 2*3 = 6}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 4*2 = 8}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{6}{8} = 0.75 \text{ Amps}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 5&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has a constant current according to the total resistance, but the voltage drop is variable across each resistor according to its resistance and Ohm&#039;s law. A Circuit has a 10 volt battery at location 1, a 2 ohm resistor at location 2, a 3 ohm resistor at location 3, a 2 volt battery at location 4, a 5 ohm resistor at location 5, and a 6 ohm resistor at location 6 which connects back to the battery at location 1. What is the total current and the voltage drop at each location.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
&amp;lt;math&amp;gt;{V_{total} = 10+2 = 12}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R_{total} = 2+3+5+6 = 16}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I_{total} = \frac{12}{16} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
Voltage Drops:&lt;br /&gt;
&lt;br /&gt;
Resistor 1 (2 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 2 = 1.5 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 2 (3 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 3 = 2.25 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 3 (5 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 5 = 3.75 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 4 (6 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 6 = 4.5 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Checking answer (total voltage drop should be equivalent to total voltage provided, which as stated previously should be 12):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 1.5+2.25+3.75+4.5 = 12 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Correct! It is 12!&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46522</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46522"/>
		<updated>2024-11-25T21:27:23Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
View model here: https://trinket.io/embed/glowscript/922d8d312818&lt;br /&gt;
&lt;br /&gt;
[[File:Glowscriptmodel-ezgif.com-crop.gif]]&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 2 ohms of resistance and 3 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{3}{2}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{I = 1.5 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Question 2&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 6 ohms of resistance and 2 amperes of current, what is the voltage?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = IR}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 6*2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 12 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 3&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 18 ohms of resistance and 10 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{I}{V}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{18}{10}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 1.8 Ohms}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 4&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has 2 3 volt batteries powering it. The circuit has 4 light bulbs, each providing 2 ohms of resistance. Assuming all components add up, what is the magnitude of the flow of the circuit?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 2*3 = 6}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 4*2 = 8}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{6}{8} = 0.75 \text{ Amps}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 5&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has a constant current according to the total resistance, but the voltage drop is variable across each resistor according to its resistance and Ohm&#039;s law. A Circuit has a 10 volt battery at location 1, a 2 ohm resistor at location 2, a 3 ohm resistor at location 3, a 2 volt battery at location 4, a 5 ohm resistor at location 5, and a 6 ohm resistor at location 6 which connects back to the battery at location 1. What is the total current and the voltage drop at each location.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
&amp;lt;math&amp;gt;{V_{total} = 10+2 = 12}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R_{total} = 2+3+5+6 = 16}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I_{total} = \frac{12}{16} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
Voltage Drops:&lt;br /&gt;
&lt;br /&gt;
Resistor 1 (2 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 2 = 1.5 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 2 (3 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 3 = 2.25 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 3 (5 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 5 = 3.75 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 4 (6 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 6 = 4.5 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Checking answer (total voltage drop should be equivalent to total voltage provided, which as stated previously should be 12):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 1.5+2.25+3.75+4.5 = 12 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Correct! It is 12!&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46521</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46521"/>
		<updated>2024-11-25T21:26:57Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Difficult */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
View model here: https://trinket.io/embed/glowscript/922d8d312818&lt;br /&gt;
&lt;br /&gt;
[[File:Glowscriptmodel-ezgif.com-crop.gif]]&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 2 ohms of resistance and 3 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{3}{2}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = 1.5 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Question 2&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 6 ohms of resistance and 2 amperes of current, what is the voltage?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = IR}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 6*2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 12 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 3&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 18 ohms of resistance and 10 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{I}{V}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{18}{10}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 1.8 Ohms}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 4&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has 2 3 volt batteries powering it. The circuit has 4 light bulbs, each providing 2 ohms of resistance. Assuming all components add up, what is the magnitude of the flow of the circuit?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 2*3 = 6}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 4*2 = 8}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{6}{8} = 0.75 \text{ Amps}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 5&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has a constant current according to the total resistance, but the voltage drop is variable across each resistor according to its resistance and Ohm&#039;s law. A Circuit has a 10 volt battery at location 1, a 2 ohm resistor at location 2, a 3 ohm resistor at location 3, a 2 volt battery at location 4, a 5 ohm resistor at location 5, and a 6 ohm resistor at location 6 which connects back to the battery at location 1. What is the total current and the voltage drop at each location.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Current:&lt;br /&gt;
&amp;lt;math&amp;gt;{V_{total} = 10+2 = 12}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R_{total} = 2+3+5+6 = 16}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I_{total} = \frac{12}{16} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
Voltage Drops:&lt;br /&gt;
&lt;br /&gt;
Resistor 1 (2 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 2 = 1.5 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 2 (3 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 3 = 2.25 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 3 (5 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 5 = 3.75 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 4 (6 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 6 = 4.5 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Checking answer (total voltage drop should be equivalent to total voltage provided, which as stated previously should be 12):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 1.5+2.25+3.75+4.5 = 12 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Correct! It is 12!&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46520</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46520"/>
		<updated>2024-11-25T21:26:51Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Middling */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
View model here: https://trinket.io/embed/glowscript/922d8d312818&lt;br /&gt;
&lt;br /&gt;
[[File:Glowscriptmodel-ezgif.com-crop.gif]]&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 2 ohms of resistance and 3 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{3}{2}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = 1.5 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Question 2&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 6 ohms of resistance and 2 amperes of current, what is the voltage?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = IR}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 6*2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 12 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 3&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 18 ohms of resistance and 10 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{I}{V}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{18}{10}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 1.8 Ohms}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 4&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has 2 3 volt batteries powering it. The circuit has 4 light bulbs, each providing 2 ohms of resistance. Assuming all components add up, what is the magnitude of the flow of the circuit?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 2*3 = 6}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 4*2 = 8}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{6}{8} = 0.75 \text{ Amps}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 5&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has a constant current according to the total resistance, but the voltage drop is variable across each resistor according to its resistance and Ohm&#039;s law. A Circuit has a 10 volt battery at location 1, a 2 ohm resistor at location 2, a 3 ohm resistor at location 3, a 2 volt battery at location 4, a 5 ohm resistor at location 5, and a 6 ohm resistor at location 6 which connects back to the battery at location 1. What is the total current and the voltage drop at each location.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
Current:&lt;br /&gt;
&amp;lt;math&amp;gt;{V_{total} = 10+2 = 12}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R_{total} = 2+3+5+6 = 16}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I_{total} = \frac{12}{16} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
Voltage Drops:&lt;br /&gt;
&lt;br /&gt;
Resistor 1 (2 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 2 = 1.5 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 2 (3 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 3 = 2.25 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 3 (5 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 5 = 3.75 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 4 (6 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 6 = 4.5 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Checking answer (total voltage drop should be equivalent to total voltage provided, which as stated previously should be 12):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 1.5+2.25+3.75+4.5 = 12 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Correct! It is 12!&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46519</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46519"/>
		<updated>2024-11-25T21:26:43Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Middling */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
View model here: https://trinket.io/embed/glowscript/922d8d312818&lt;br /&gt;
&lt;br /&gt;
[[File:Glowscriptmodel-ezgif.com-crop.gif]]&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 2 ohms of resistance and 3 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{3}{2}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = 1.5 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Question 2&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 6 ohms of resistance and 2 amperes of current, what is the voltage?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = IR}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 6*2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 12 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 3&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 18 ohms of resistance and 10 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{I}{V}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{18}{10}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 1.8 Ohms}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 4&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has 2 3 volt batteries powering it. The circuit has 4 light bulbs, each providing 2 ohms of resistance. Assuming all components add up, what is the magnitude of the flow of the circuit?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 2*3 = 6}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 4*2 = 8}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{6}{8} = 0.75 \text{ Amps}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 5&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has a constant current according to the total resistance, but the voltage drop is variable across each resistor according to its resistance and Ohm&#039;s law. A Circuit has a 10 volt battery at location 1, a 2 ohm resistor at location 2, a 3 ohm resistor at location 3, a 2 volt battery at location 4, a 5 ohm resistor at location 5, and a 6 ohm resistor at location 6 which connects back to the battery at location 1. What is the total current and the voltage drop at each location.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
Current:&lt;br /&gt;
&amp;lt;math&amp;gt;{V_{total} = 10+2 = 12}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R_{total} = 2+3+5+6 = 16}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I_{total} = \frac{12}{16} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
Voltage Drops:&lt;br /&gt;
&lt;br /&gt;
Resistor 1 (2 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 2 = 1.5 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 2 (3 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 3 = 2.25 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 3 (5 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 5 = 3.75 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 4 (6 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 6 = 4.5 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Checking answer (total voltage drop should be equivalent to total voltage provided, which as stated previously should be 12):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 1.5+2.25+3.75+4.5 = 12 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Correct! It is 12!&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46518</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46518"/>
		<updated>2024-11-25T21:26:31Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Difficult */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
View model here: https://trinket.io/embed/glowscript/922d8d312818&lt;br /&gt;
&lt;br /&gt;
[[File:Glowscriptmodel-ezgif.com-crop.gif]]&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 2 ohms of resistance and 3 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{3}{2}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = 1.5 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Question 2&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 6 ohms of resistance and 2 amperes of current, what is the voltage?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = IR}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 6*2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 12 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 3&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 18 ohms of resistance and 10 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{I}{V}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{18}{10}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 1.8 Ohms}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 4&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has 2 3 volt batteries powering it. The circuit has 4 light bulbs, each providing 2 ohms of resistance. Assuming all components add up, what is the magnitude of the flow of the circuit?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 2*3 = 6}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 4*2 = 8}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{6}{8} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 5&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has a constant current according to the total resistance, but the voltage drop is variable across each resistor according to its resistance and Ohm&#039;s law. A Circuit has a 10 volt battery at location 1, a 2 ohm resistor at location 2, a 3 ohm resistor at location 3, a 2 volt battery at location 4, a 5 ohm resistor at location 5, and a 6 ohm resistor at location 6 which connects back to the battery at location 1. What is the total current and the voltage drop at each location.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
Current:&lt;br /&gt;
&amp;lt;math&amp;gt;{V_{total} = 10+2 = 12}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R_{total} = 2+3+5+6 = 16}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I_{total} = \frac{12}{16} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
Voltage Drops:&lt;br /&gt;
&lt;br /&gt;
Resistor 1 (2 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 2 = 1.5 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 2 (3 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 3 = 2.25 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 3 (5 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 5 = 3.75 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 4 (6 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 6 = 4.5 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Checking answer (total voltage drop should be equivalent to total voltage provided, which as stated previously should be 12):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 1.5+2.25+3.75+4.5 = 12 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Correct! It is 12!&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46517</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46517"/>
		<updated>2024-11-25T21:26:11Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Difficult */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
View model here: https://trinket.io/embed/glowscript/922d8d312818&lt;br /&gt;
&lt;br /&gt;
[[File:Glowscriptmodel-ezgif.com-crop.gif]]&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 2 ohms of resistance and 3 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{3}{2}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = 1.5 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Question 2&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 6 ohms of resistance and 2 amperes of current, what is the voltage?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = IR}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 6*2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 12 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 3&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 18 ohms of resistance and 10 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{I}{V}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{18}{10}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 1.8 Ohms}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 4&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has 2 3 volt batteries powering it. The circuit has 4 light bulbs, each providing 2 ohms of resistance. Assuming all components add up, what is the magnitude of the flow of the circuit?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 2*3 = 6}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 4*2 = 8}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{6}{8} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 5&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has a constant current according to the total resistance, but the voltage drop is variable across each resistor according to its resistance and Ohm&#039;s law. A Circuit has a 10 volt battery at location 1, a 2 ohm resistor at location 2, a 3 ohm resistor at location 3, a 2 volt battery at location 4, a 5 ohm resistor at location 5, and a 6 ohm resistor at location 6 which connects back to the battery at location 1. What is the total current and the voltage drop at each location.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
Current:&lt;br /&gt;
&amp;lt;math&amp;gt;{V_{total} = 10+2 = 12}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R_{total} = 2+3+5+6 = 16}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I_{total} = \frac{12}{16} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
Voltage Drops:&lt;br /&gt;
&lt;br /&gt;
Resistor 1 (2 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 2 = 1.5 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 2 (3 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 3 = 2.25 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 3 (5 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 5 = 3.75 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Resistor 4 (6 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 6 = 4.5 \text{ Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Checking answer (total voltage drop should be equivalent to total voltage provided, which as stated previously should be 12):&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 1.5+2.25+3.75+4.5 = 12 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Correct! It is 12!&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46516</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46516"/>
		<updated>2024-11-25T21:25:32Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Difficult */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
View model here: https://trinket.io/embed/glowscript/922d8d312818&lt;br /&gt;
&lt;br /&gt;
[[File:Glowscriptmodel-ezgif.com-crop.gif]]&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 2 ohms of resistance and 3 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{3}{2}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = 1.5 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Question 2&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 6 ohms of resistance and 2 amperes of current, what is the voltage?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = IR}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 6*2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 12 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 3&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 18 ohms of resistance and 10 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{I}{V}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{18}{10}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 1.8 Ohms}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 4&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has 2 3 volt batteries powering it. The circuit has 4 light bulbs, each providing 2 ohms of resistance. Assuming all components add up, what is the magnitude of the flow of the circuit?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 2*3 = 6}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 4*2 = 8}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{6}{8} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 5&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has a constant current according to the total resistance, but the voltage drop is variable across each resistor according to its resistance and Ohm&#039;s law. A Circuit has a 10 volt battery at location 1, a 2 ohm resistor at location 2, a 3 ohm resistor at location 3, a 2 volt battery at location 4, a 5 ohm resistor at location 5, and a 6 ohm resistor at location 6 which connects back to the battery at location 1. What is the total current and the voltage drop at each location.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
Current:&lt;br /&gt;
&amp;lt;math&amp;gt;{V_{total} = 10+2 = 12}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R_{total} = 2+3+5+6 = 16}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I_{total} = \frac{12}{16} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
Voltage Drops:&lt;br /&gt;
&lt;br /&gt;
Resistor 1 (2 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 2 = 1.5 \text{Volts}}&amp;lt;/math&amp;gt;&lt;br /&gt;
Resistor 2 (3 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 3 = 2.25 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Resistor 3 (5 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 5 = 3.75 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Resistor 4 (6 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 6 = 4.5 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Checking answer (total voltage drop should be equivalent to total voltage provided, which as stated previously should be 12):&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 1.5+2.25+3.75+4.5 = 12 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Correct! It is 12!&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46515</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46515"/>
		<updated>2024-11-25T21:24:54Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
View model here: https://trinket.io/embed/glowscript/922d8d312818&lt;br /&gt;
&lt;br /&gt;
[[File:Glowscriptmodel-ezgif.com-crop.gif]]&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 2 ohms of resistance and 3 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{3}{2}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = 1.5 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Question 2&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 6 ohms of resistance and 2 amperes of current, what is the voltage?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = IR}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 6*2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 12 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 3&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 18 ohms of resistance and 10 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{I}{V}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{18}{10}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 1.8 Ohms}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 4&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has 2 3 volt batteries powering it. The circuit has 4 light bulbs, each providing 2 ohms of resistance. Assuming all components add up, what is the magnitude of the flow of the circuit?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 2*3 = 6}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 4*2 = 8}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{6}{8} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 5&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has a constant current according to the total resistance, but the voltage drop is variable across each resistor according to its resistance and Ohm&#039;s law. A Circuit has a 10 volt battery at location 1, a 2 ohm resistor at location 2, a 3 ohm resistor at location 3, a 2 volt battery at location 4, a 5 ohm resistor at location 5, and a 6 ohm resistor at location 6 which connects back to the battery at location 1. What is the total current and the voltage drop at each location.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
Current:&lt;br /&gt;
&amp;lt;math&amp;gt;{V_{total} = 10+2 = 12}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R_{total} = 2+3+5+6 = 16}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I_{total} = \frac{12}{16} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
Voltage Drops:&lt;br /&gt;
&lt;br /&gt;
Resistor 1 (2 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 2 = 1.5 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Resistor 2 (3 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 3 = 2.25 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Resistor 3 (5 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 5 = 3.75 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Resistor 4 (6 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 6 = 4.5 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Checking answer (total voltage drop should be equivalent to total voltage provided, which as stated previously should be 12):&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 1.5+2.25+3.75+4.5 = 12 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Correct! It is 12!&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46514</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46514"/>
		<updated>2024-11-25T21:24:28Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
View model here: https://trinket.io/embed/glowscript/922d8d312818&lt;br /&gt;
&lt;br /&gt;
[[File:Glowscriptmodel-ezgif.com-crop.gif]]&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 2 ohms of resistance and 3 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{3}{2}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = 1.5 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&#039;&#039;&#039;Question 2&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 6 ohms of resistance and 2 amperes of current, what is the voltage?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = IR}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 6*2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 12 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 3&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 18 ohms of resistance and 10 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{I}{V}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{18}{10}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 1.8 Ohms}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 4&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has 2 3 volt batteries powering it. The circuit has 4 light bulbs, each providing 2 ohms of resistance. Assuming all components add up, what is the magnitude of the flow of the circuit?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 2*3 = 6}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 4*2 = 8}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{6}{8} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 5&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has a constant current according to the total resistance, but the voltage drop is variable across each resistor according to its resistance and Ohm&#039;s law. A Circuit has a 10 volt battery at location 1, a 2 ohm resistor at location 2, a 3 ohm resistor at location 3, a 2 volt battery at location 4, a 5 ohm resistor at location 5, and a 6 ohm resistor at location 6 which connects back to the battery at location 1. What is the total current and the voltage drop at each location.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
Current:&lt;br /&gt;
&amp;lt;math&amp;gt;{V_{total} = 10+2 = 12}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R_{total} = 2+3+5+6 = 16}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I_{total} = \frac{12}{16} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
Voltage Drops:&lt;br /&gt;
&lt;br /&gt;
Resistor 1 (2 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 2 = 1.5 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Resistor 2 (3 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 3 = 2.25 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Resistor 3 (5 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 5 = 3.75 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Resistor 4 (6 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 6 = 4.5 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Checking answer (total voltage drop should be equivalent to total voltage provided, which as stated previously should be 12):&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 1.5+2.25+3.75+4.5 = 12 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Correct! It is 12!&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46513</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46513"/>
		<updated>2024-11-25T21:23:51Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
View model here: https://trinket.io/embed/glowscript/922d8d312818&lt;br /&gt;
&lt;br /&gt;
[[File:Glowscriptmodel-ezgif.com-crop.gif]]&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Examples==&lt;br /&gt;
&lt;br /&gt;
===Simple===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 2 ohms of resistance and 3 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{3}{2}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = 1.5 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 2&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 6 ohms of resistance and 2 amperes of current, what is the voltage?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = IR}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 6*2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 12 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 3&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
If a wire has 18 ohms of resistance and 10 volts of voltage, what is the current?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{I}{V}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = \frac{18}{10}}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 1.8 Ohms}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Middling===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 4&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has 2 3 volt batteries powering it. The circuit has 4 light bulbs, each providing 2 ohms of resistance. Assuming all components add up, what is the magnitude of the flow of the circuit?&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 2*3 = 6}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R = 4*2 = 8}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I = \frac{6}{8} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Difficult===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question 5&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A circuit has a constant current according to the total resistance, but the voltage drop is variable across each resistor according to its resistance and Ohm&#039;s law. A Circuit has a 10 volt battery at location 1, a 2 ohm resistor at location 2, a 3 ohm resistor at location 3, a 2 volt battery at location 4, a 5 ohm resistor at location 5, and a 6 ohm resistor at location 6 which connects back to the battery at location 1. What is the total current and the voltage drop at each location.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Answer&#039;&#039;&#039;&lt;br /&gt;
Current:&lt;br /&gt;
&amp;lt;math&amp;gt;{V_{total} = 10+2 = 12}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{R_{total} = 2+3+5+6 = 16}&amp;lt;/math&amp;gt;&lt;br /&gt;
&amp;lt;math&amp;gt;{I_{total} = \frac{12}{16} = 0.75 Amps}&amp;lt;/math&amp;gt;&lt;br /&gt;
Voltage Drops:&lt;br /&gt;
&lt;br /&gt;
Resistor 1 (2 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 2 = 1.5 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Resistor 2 (3 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 3 = 2.25 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Resistor 3 (5 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 5 = 3.75 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Resistor 4 (6 ohm): &amp;lt;math&amp;gt;{V = IR = 0.75 * 6 = 4.5 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Checking answer (total voltage drop should be equivalent to total voltage provided, which as stated previously should be 12):&lt;br /&gt;
&amp;lt;math&amp;gt;{V = 1.5+2.25+3.75+4.5 = 12 Volts}&amp;lt;/math&amp;gt;&lt;br /&gt;
Correct! It is 12!&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46512</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46512"/>
		<updated>2024-11-25T21:03:02Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
View model here: https://trinket.io/embed/glowscript/922d8d312818&lt;br /&gt;
&lt;br /&gt;
[[File:Glowscriptmodel-ezgif.com-crop.gif]]&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46511</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46511"/>
		<updated>2024-11-25T21:02:49Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
View model here: https://trinket.io/embed/glowscript/922d8d312818&lt;br /&gt;
&lt;br /&gt;
[File:Glowscriptmodel-ezgif.com-crop.gif]&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46510</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46510"/>
		<updated>2024-11-25T21:02:20Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
View model here: https://trinket.io/embed/glowscript/922d8d312818&lt;br /&gt;
&lt;br /&gt;
[[File:Glowscriptmodel-ezgif.com-crop.gif|thumb |400px|Current Model]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46509</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46509"/>
		<updated>2024-11-25T21:01:03Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
View model here: https://trinket.io/embed/glowscript/922d8d312818&lt;br /&gt;
&lt;br /&gt;
[[File:glowscriptmodel-ezgif.com-crop.gif|thumb |400px|Current Model]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:Glowscriptmodel-ezgif.com-crop.gif&amp;diff=46508</id>
		<title>File:Glowscriptmodel-ezgif.com-crop.gif</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:Glowscriptmodel-ezgif.com-crop.gif&amp;diff=46508"/>
		<updated>2024-11-25T20:59:35Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: Current,Resistance, and Voltage: How they interact&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Current,Resistance, and Voltage: How they interact&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46507</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46507"/>
		<updated>2024-11-25T20:50:04Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Computational Model==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;https://trinket.io/embed/glowscript/922d8d312818&amp;quot; width=&amp;quot;100%&amp;quot; height=&amp;quot;356&amp;quot; frameborder=&amp;quot;0&amp;quot; marginwidth=&amp;quot;0&amp;quot; marginheight=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    Web VPython 3.2&lt;br /&gt;
    from vpython import *&lt;br /&gt;
    &lt;br /&gt;
    # Set up the scene&lt;br /&gt;
    scene.title = &amp;quot;Visualization of Electric Currents with Graphs&amp;quot;&lt;br /&gt;
    scene.width = 800&lt;br /&gt;
    scene.height = 800&lt;br /&gt;
    scene.background = color.black&lt;br /&gt;
    &lt;br /&gt;
    # Create the first conductor (voltage increasing)&lt;br /&gt;
    conductor1 = cylinder(pos=vector(-5, 1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow1 = arrow(pos=conductor1.pos + vector(0, conductor1.radius + 0.1, 0), axis=vector(0, 0, 0), &lt;br /&gt;
                   color=color.red, shaftwidth=0.1)&lt;br /&gt;
    label1 = label(pos=arrow1.pos + vector(1.5, 0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the second conductor (resistance increasing)&lt;br /&gt;
    conductor2 = cylinder(pos=vector(-5, 0, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow2 = arrow(pos=conductor2.pos + vector(0, -conductor2.radius - 0.1, 0), axis=conductor2.axis, &lt;br /&gt;
                   color=color.green, shaftwidth=0.1)&lt;br /&gt;
    label2 = label(pos=arrow2.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Create the third conductor (voltage and resistance increase at the same rate)&lt;br /&gt;
    conductor3 = cylinder(pos=vector(-5, -1.5, 0), axis=vector(10, 0, 0), radius=0.2, color=color.gray(0.5))&lt;br /&gt;
    arrow3 = arrow(pos=conductor3.pos + vector(0, -conductor3.radius - 0.1, 0), axis=vector(5, 0, 0),  # Fixed length (half of cylinder)&lt;br /&gt;
                   color=color.blue, shaftwidth=0.1)&lt;br /&gt;
    label3 = label(pos=arrow3.pos + vector(1.5, -0.5, 0), text=&amp;quot;&amp;quot;, color=color.white, height=12, box=False)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 1&lt;br /&gt;
    graph1 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 1)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve1 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;)&lt;br /&gt;
    current_curve1 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;)&lt;br /&gt;
    resistance_curve1 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 2&lt;br /&gt;
    graph2 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 2)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve2 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph2)&lt;br /&gt;
    current_curve2 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph2)&lt;br /&gt;
    resistance_curve2 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph2)&lt;br /&gt;
    &lt;br /&gt;
    # Graph setup for Conductor 3&lt;br /&gt;
    graph3 = graph(title=&amp;quot;Voltage, Current, and Resistance (Conductor 3)&amp;quot;, width=600, height=300, &lt;br /&gt;
                   xtitle=&amp;quot;Time&amp;quot;, ytitle=&amp;quot;Value (scaled to 100)&amp;quot;, foreground=color.white, background=color.black)&lt;br /&gt;
    voltage_curve3 = gcurve(color=color.red, label=&amp;quot;Voltage (V)&amp;quot;, graph=graph3)&lt;br /&gt;
    current_curve3 = gcurve(color=color.green, label=&amp;quot;Current (A)&amp;quot;, graph=graph3)&lt;br /&gt;
    resistance_curve3 = gcurve(color=color.blue, label=&amp;quot;Resistance (Ohms)&amp;quot;, graph=graph3)&lt;br /&gt;
    &lt;br /&gt;
        # Initialize variables for Conductor 1&lt;br /&gt;
    voltage1 = 0&lt;br /&gt;
    max_voltage1 = 10&lt;br /&gt;
    voltage_rate1 = 0.3  # Increased rate for voltage&lt;br /&gt;
    resistance1 = 2&lt;br /&gt;
    current1 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 2&lt;br /&gt;
    voltage2 = 10  # Constant voltage&lt;br /&gt;
    resistance2 = 2  # Starts at 2&lt;br /&gt;
    max_resistance2 = 10&lt;br /&gt;
    resistance_rate2 = 0.1&lt;br /&gt;
    current2 = 0&lt;br /&gt;
    &lt;br /&gt;
    # Initialize variables for Conductor 3 (voltage and resistance increase at the same rate)&lt;br /&gt;
    voltage3 = 1  # Start at 1 to avoid division by zero&lt;br /&gt;
    resistance3 = 1  # Start at 1 for the same reason&lt;br /&gt;
    voltage_rate3 = 0.1  # Same rate for voltage and resistance increase&lt;br /&gt;
    resistance_rate3 = 0.1  # Same rate for resistance increase to maintain constant current&lt;br /&gt;
    current3 = voltage3 / resistance3  # Initial current is V / R&lt;br /&gt;
    &lt;br /&gt;
    # Particles for both conductors&lt;br /&gt;
    particles1 = [sphere(pos=vector(4 - i, conductor1.pos.y + conductor1.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles2 = [sphere(pos=vector(4 - i, conductor2.pos.y + conductor2.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    particles3 = [sphere(pos=vector(4 - i, conductor3.pos.y + conductor3.radius, 0), &lt;br /&gt;
                         radius=0.05, color=color.blue, make_trail=True) for i in range(10)]&lt;br /&gt;
    &lt;br /&gt;
    # Animate the currents and graphs&lt;br /&gt;
    dt = 0.05&lt;br /&gt;
    time = 0&lt;br /&gt;
    while True:&lt;br /&gt;
        rate(30)&lt;br /&gt;
        time += dt&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 1 (Voltage Increasing)&lt;br /&gt;
        if voltage1 &amp;lt; max_voltage1:&lt;br /&gt;
            voltage1 += voltage_rate1 * dt&lt;br /&gt;
            current1 = voltage1 / resistance1&lt;br /&gt;
            arrow1.axis = vector(voltage1 * 0.4, 0, 0)  # Arrow grows twice as fast&lt;br /&gt;
            label1.text = f&amp;quot;Voltage: {voltage1:.1f} V\nCurrent: {current1:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve1.plot(time, voltage1 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve1.plot(time, current1 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve1.plot(time, resistance1 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 2 (Resistance Increasing)&lt;br /&gt;
        if resistance2 &amp;lt; max_resistance2:&lt;br /&gt;
            resistance2 += resistance_rate2 * dt&lt;br /&gt;
            current2 = voltage2 / resistance2 if resistance2 != 0 else 0&lt;br /&gt;
            arrow2.axis = vector(conductor2.axis.x * (1 - resistance2 / max_resistance2), 0, 0)  # Arrow shrinks&lt;br /&gt;
            label2.text = f&amp;quot;Resistance: {resistance2:.1f} Ohms\nCurrent: {current2:.2f} A&amp;quot;&lt;br /&gt;
            voltage_curve2.plot(time, voltage2 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
            current_curve2.plot(time, current2 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
            resistance_curve2.plot(time, resistance2 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Update Conductor 3 (Voltage and Resistance Increasing at the Same Rate)&lt;br /&gt;
        voltage3 += voltage_rate3 * dt&lt;br /&gt;
        resistance3 += resistance_rate3 * dt&lt;br /&gt;
        current3 = voltage3 / resistance3  # Current stays constant as V and R increase at the same rate&lt;br /&gt;
        arrow3.axis = vector(5, 0, 0)  # Fixed length (half of cylinder length)&lt;br /&gt;
        label3.text = f&amp;quot;Voltage: {voltage3:.1f} V\nResistance: {resistance3:.2f} Ohms\nCurrent: {current3:.2f} A&amp;quot;&lt;br /&gt;
        voltage_curve3.plot(time, voltage3 * 10)  # Scale voltage to graph&#039;s max height&lt;br /&gt;
        current_curve3.plot(time, current3 * 10)  # Scale current to graph&#039;s max height&lt;br /&gt;
        resistance_curve3.plot(time, resistance3 * 10)  # Scale resistance to graph&#039;s max height&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 1 (speed depends on current1)&lt;br /&gt;
        speed1 = current1 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles1:&lt;br /&gt;
            electron.pos.x -= speed1 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 2 (speed depends on current2)&lt;br /&gt;
        speed2 = current2 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles2:&lt;br /&gt;
            electron.pos.x -= speed2 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
    &lt;br /&gt;
        # Animate particles for Conductor 3 (speed depends on current3)&lt;br /&gt;
        speed3 = current3 * 0.5  # Adjust speed scaling factor if needed&lt;br /&gt;
        for electron in particles3:&lt;br /&gt;
            electron.pos.x -= speed3 * dt&lt;br /&gt;
            if electron.pos.x &amp;lt; -5:&lt;br /&gt;
                electron.pos.x = 5&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46506</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46506"/>
		<updated>2024-11-25T20:40:22Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Model==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;https://trinket.io/embed/glowscript/922d8d312818&amp;quot; width=&amp;quot;100%&amp;quot; height=&amp;quot;356&amp;quot; frameborder=&amp;quot;0&amp;quot; marginwidth=&amp;quot;0&amp;quot; marginheight=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46505</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46505"/>
		<updated>2024-11-25T20:39:45Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Model==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;https://trinket.io/embed/glowscript/922d8d312818?outputOnly=true&amp;quot; width=&amp;quot;100%&amp;quot; height=&amp;quot;356&amp;quot; frameborder=&amp;quot;0&amp;quot; marginwidth=&amp;quot;0&amp;quot; marginheight=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46504</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46504"/>
		<updated>2024-11-25T20:39:05Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Model==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;https://trinket.io/embed/glowscript/922d8d312818&amp;quot; width=&amp;quot;100%&amp;quot; height=&amp;quot;356&amp;quot; frameborder=&amp;quot;0&amp;quot; marginwidth=&amp;quot;0&amp;quot; marginheight=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46503</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46503"/>
		<updated>2024-11-25T20:37:35Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Circuitry are the building blocks of most electronics in our life. They are what keeps our computers running and our physics equipment functioning. Yet what exactly drives circuitry? The core components of a circuit revolves around three aspects: Current, Voltage, and Resistance.&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow of electrons through the circuit, represented by the symbol I and measured in Amperes. Voltage signifies the driving force behind it, or the pressure behind the source of the current. It is represented by the symbol V and measured in Volts. Resistance encapsulates the opposition encountered in the circuit, slowing and resisting the current. It is represented by the symbol R and measured in Ohms. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
Understanding Ohm&#039;s law explains how our three components effect a circuit. &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, the base component of our formula. The equation states Current is the Voltage divided by the Resistance. That is to say, the flow of electricity is equivalent to the driving force of the current divided by the opposition to the current. As we increase the voltage, or the driving force of the current, the current itself increases. On the other hand, if we increase the opposition to the current, the current decreases. As we examine these interactions we can see how the different components of the circuit affect each other.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Model==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;iframe src=&amp;quot;https://trinket.io/embed/glowscript/922d8d312818&amp;quot; width=&amp;quot;100%&amp;quot; height=&amp;quot;356&amp;quot; frameborder=&amp;quot;0&amp;quot; marginwidth=&amp;quot;0&amp;quot; marginheight=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46481</id>
		<title>Understanding Fundamentals of Current, Voltage, and Resistance</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Understanding_Fundamentals_of_Current,_Voltage,_and_Resistance&amp;diff=46481"/>
		<updated>2024-11-25T00:57:22Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Created and Edited by Kenneth (Alex) Jenkins - Fall 2023.  Edited by Anshu Dendukuri - Spring 2024. Edited by Dhruv Saxena - Fall 2024&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The central concept in understanding the fundamentals of current, voltage, and resistance is unraveling the essential principles that govern the flow of electric charge. Current represents the rate of this flow, voltage signifies the driving force behind it, and resistance encapsulates the opposition encountered in the circuit. A grasp of these fundamentals is crucial for navigating the intricacies of electrical systems and technology.&lt;br /&gt;
&lt;br /&gt;
==Ohm&#039;s Law==&lt;br /&gt;
[[Ohm&#039;s Law]], a fundamental principle in electrical engineering, establishes a foundational relationship between resistance, voltage, and current in a circuit. Named after the German physicist [[Georg Ohm]], the law states that the current passing through a conductor between two points is directly proportional to the voltage across the two points, given a constant temperature. Mathematically expressed as &amp;lt;math&amp;gt;{I = \frac{V}{R}}&amp;lt;/math&amp;gt;, where I is the current in amperes, V is the voltage in volts, and R is the resistance in ohms, Ohm&#039;s Law is instrumental in unraveling the dynamic interplay between these three essential electrical parameters. This law provides a straightforward framework for understanding how changes in voltage or resistance influence the flow of current, and vice versa. Mastery of Ohm&#039;s Law is indispensable in analyzing and designing electrical circuits, serving as a cornerstone for engineers and enthusiasts as they navigate the intricate relationships among resistance, voltage, and current in the realm of electronics.&lt;br /&gt;
&lt;br /&gt;
[[File:OhmsTriangle.jpg]]&lt;br /&gt;
&amp;lt;br&amp;gt;&#039;&#039;Image Source: Kenneth Jenkins&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Current==&lt;br /&gt;
Current, in the realm of electrical circuits, refers to the flow of electric charge through a conductor. It is the rate at which electrons move along a closed path, commonly a wire or circuitry. Measured in amperes (A), current is a fundamental concept in understanding the dynamic behavior of electricity. The flow of electrons is driven by the electric potential difference, or voltage, which propels them from areas of higher potential to lower potential. Visualizing current involves picturing the movement of these charged particles, akin to a river of electrons streaming through the conductive pathways of a circuit. Whether in the context of powering household appliances or enabling complex electronic devices, a clear comprehension of current is pivotal for navigating the principles that underpin the functioning of electrical systems. &lt;br /&gt;
By convention, current is measured in the opposite direction of which electrons flow. This is likely because when current was first discovered, electrons had not yet been established in the scientific world. Hence, it could seem like positive charges were moving in a certain direction, rather than negative ones in the opposite as we know today. This convention still stands to this day, and in fact most likely makes calculations simpler, due to not having to account for the negative sign (-), which could cause for mistakes in calculations. However, it is certainly possible to solve a circuit problem with the opposite direction current, just with everything negated.&lt;br /&gt;
&lt;br /&gt;
==Voltage==&lt;br /&gt;
Voltage, within the realm of electrical systems, is a measure of electric potential difference between two points in a circuit. It can be thought of as a change in electric potential, meaning that if there is no change, the voltage must be 0. Voltage does NOT measure anything at a given point, which is why a voltmeter must be connected at two different points in order to display a reading. These points should have some sort of change in current between them to be non-zero, such as the existence of a resistor or a node.&lt;br /&gt;
It represents the force that propels electric charges, typically electrons, to move through a conductor. Measured in volts (V), voltage serves as the driving factor behind the flow of current. It can be likened to the pressure in a water pipe that dictates the movement of water molecules; similarly, voltage dictates the movement of electric charges. Higher voltage implies a greater force pushing the charges, while lower voltage corresponds to a less forceful push. Understanding voltage is pivotal in comprehending the dynamics of electrical circuits, as it influences the rate and direction of the electric current, forming a foundational concept in the broader study of electrical engineering and technology.&lt;br /&gt;
&lt;br /&gt;
==Resistance==&lt;br /&gt;
Resistance, in the realm of electrical systems, is the property that hinders the flow of electric current. It is a measure of the opposition encountered by the flow of electrons as they traverse through a conductor. This opposition leads to the conversion of electrical energy into heat. Resistance is quantified in ohms (Ω), and it is a critical factor in determining the behavior of circuits. Materials with high resistance impede the flow of current more strongly than those with low resistance. Resistors, specific components designed to introduce resistance intentionally, are commonly employed in circuits to regulate and control the flow of current, demonstrating the essential role that resistance plays in shaping the characteristics and functionality of electrical systems. This is because, when given the choice (such as a node splitting into two), current will try to flow through the wire with less resistance. This is why voltmeters are made with such high resistance - to avoid affecting the current flow (by having current flow through the voltmeter instead of the circuit), such an example why high resistance might be beneficial. A nuanced understanding of resistance is vital for engineers and enthusiasts alike as they design and optimize circuits for various applications.&lt;br /&gt;
&lt;br /&gt;
==Analogy to Water==&lt;br /&gt;
&lt;br /&gt;
Circuitry can be conceptually likened to the flow of water through a network of pipes, providing an insightful analogy that simplifies the complex dynamics of electrical systems. In this analogy, electrical circuits serve as the conduits for the flow of electrons, analogous to water molecules coursing through pipes. The fundamental principles governing the behavior of both water and electrical circuits draw intriguing parallels, offering a relatable framework for understanding the intricate world of electronics.&lt;br /&gt;
&lt;br /&gt;
Just as water moves from a source to various destinations through a network of interconnected pipes, electrical circuits facilitate the flow of electric current from a power source to multiple components within a system. The pipes themselves can be equated to conductive materials, such as copper wires, that guide the electrons along a predetermined path. Much like the pressure applied to water influencing its movement through pipes, voltage serves as the driving force behind the flow of electrons in a circuit.&lt;br /&gt;
&lt;br /&gt;
Resistors within an electrical circuit find an analogy in the narrowing of pipes or the introduction of obstacles that impede the smooth passage of water. These resistive elements in a circuit limit the flow of electric current, generating heat in a manner akin to the friction-induced warmth observed in constricted water pipes. Capacitors and inductors, on the other hand, can be compared to the storage tanks and coiled sections in a water system, respectively. Capacitors store electrical energy, analogous to water reservoirs, while inductors store energy in a magnetic field, echoing the potential energy stored in coiled pipes.&lt;br /&gt;
&lt;br /&gt;
The analogy of circuits as conduits for the flow of electrons, similar to water coursing through pipes, serves as a didactic tool, allowing individuals to grasp the intricacies of electrical systems through a familiar and tangible metaphor. Just as plumbing systems distribute water efficiently, electrical circuits enable the controlled movement of electrons, powering a myriad of devices and technologies that have become integral to our modern way of life.&lt;br /&gt;
&lt;br /&gt;
===Examples of the Water/Pipe Analogy===&lt;br /&gt;
&lt;br /&gt;
For a demonstration, please consider watching this video produced in collaboration with the EATON company.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;Z_s3TmYQAuc&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The electronics retailer Sparkfun also made a video in similar format to EATON&#039;s, covering the topics in a much more in depth way.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;youtube&amp;gt;8jB6hDUqN0Y&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Connectedness to Applications Outside of Physics==&lt;br /&gt;
The concepts encapsulated in Ohm&#039;s Law transcend the confines of physics, resonating profoundly in the realm of engineering and various practical applications. Engineering disciplines, particularly electrical and electronic engineering, heavily rely on the principles outlined in Ohm&#039;s Law to design, analyze, and optimize a myriad of systems and devices. Understanding the interplay between resistance, voltage, and current allows engineers to predict and control the behavior of electrical circuits, ensuring the efficient and safe operation of electronic components.&lt;br /&gt;
&lt;br /&gt;
In the field of electrical engineering, Ohm&#039;s Law is a cornerstone for designing circuits with specific performance characteristics. Engineers leverage the law to determine the appropriate resistances needed for components, calculate voltage drops across various elements, and establish the current requirements for optimal functionality. Whether designing intricate integrated circuits or power distribution systems, the principles of Ohm&#039;s Law provide a fundamental framework for engineers to achieve desired electrical outcomes.&lt;br /&gt;
&lt;br /&gt;
Beyond traditional engineering disciplines, Ohm&#039;s Law finds application in diverse technological domains. For instance, in the burgeoning field of renewable energy, such as solar power systems, understanding the relationship between voltage, current, and resistance is crucial for designing efficient energy conversion and storage systems. Similarly, in telecommunications, where signal integrity is paramount, the principles of Ohm&#039;s Law guide the design of communication networks, ensuring reliable transmission of information through cables and electronic components.&lt;br /&gt;
&lt;br /&gt;
In essence, the universality of Ohm&#039;s Law extends its influence into a spectrum of engineering applications, shaping the way professionals approach challenges in fields ranging from electronics and telecommunications to renewable energy. Its principles serve as a practical and indispensable tool, providing a systematic approach to understanding and manipulating the behavior of electrical systems in the pursuit of technological innovation.&lt;br /&gt;
&lt;br /&gt;
==Initial vs Steady State==&lt;br /&gt;
A critical difference in steady state vs. initial state circuits is how capacitors behave. Initially they are uncharged, and so charge will flow to them to be stored. At steady state, the capacitor is fully charged and the current there is zero. Therefore, if there is a loop with a capacitor, it can be treated as &amp;quot;open&amp;quot; (essentially as if the wire were not connected there, and loop rules as such would apply. &lt;br /&gt;
 &lt;br /&gt;
==History==&lt;br /&gt;
In the early 19th century, the study of electricity was in its infancy, and it was during this time that German physicist [https://www.physicsbook.gatech.edu/Georg_Ohm Georg Simon Ohm]  made groundbreaking contributions, laying the foundation for what would become Ohm&#039;s Law. Ohm, born in Erlangen, Bavaria, in 1789, embarked on his scientific journey in an era marked by fervent exploration into the nature of electricity.&lt;br /&gt;
&lt;br /&gt;
Georg Simon Ohm&#039;s pioneering work culminated in 1827 when he published his seminal treatise &amp;quot;Die galvanische Kette, mathematisch bearbeitet&amp;quot; (&amp;quot;The Galvanic Circuit Investigated Mathematically&amp;quot;). In this work, Ohm unveiled the relationship between voltage, current, and resistance, providing a mathematical formula that encapsulated the fundamental principles. His revolutionary concept, known today as Ohm&#039;s Law, asserted that the current flowing through a conductor is directly proportional to the voltage across it and inversely proportional to the resistance it offers.&lt;br /&gt;
&lt;br /&gt;
Ohm&#039;s Law addressed a pressing need in the scientific community at the time, offering a quantitative framework to comprehend and manipulate electrical circuits. It was a watershed moment that transformed electricity from a mysterious force into a quantifiable and predictable phenomenon.&lt;br /&gt;
&lt;br /&gt;
The practical implications of Ohm&#039;s Law began to unfold as the fields of physics and engineering evolved. Michael Faraday&#039;s groundbreaking work in electromagnetic induction in the early 19th century and James Clerk Maxwell&#039;s formulation of Maxwell&#039;s Equations in the mid-19th century further enriched the understanding of electricity, providing context to Ohm&#039;s Law.&lt;br /&gt;
&lt;br /&gt;
As electrical science progressed, so did the understanding of voltage, current, and resistance. The introduction of the telegraph in the mid-19th century and the subsequent development of electrical power distribution systems in the late 19th century underscored the practical utility of these concepts. Engineers and scientists across the globe, including luminaries like Thomas Edison and Nikola Tesla, applied the principles elucidated by Ohm to propel the electrical revolution, shaping the modern technological landscape.&lt;br /&gt;
&lt;br /&gt;
In summary, Ohm&#039;s Law emerged as a cornerstone in the historical tapestry of electrical science, catalyzing a transformative shift in how electricity was understood and harnessed. Its profound impact resonates through centuries, influencing the trajectory of technological progress and laying the groundwork for the sophisticated electrical systems that define our contemporary world.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&amp;lt;youtube&amp;gt;mc979OhitAg&amp;amp;list=PLWv9VM947MKi_7yJ0_FCfzTBXpQU-Qd3K‎&amp;lt;/youtube&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Further reading===&lt;br /&gt;
Access to IEEE Xplore (a digital library covering all aspects of Electrical and Computer Engineering) is provided for free through the Georgia Tech Library. The library offers various free ebooks covering topics of [https://ieeexplore.ieee.org/book/5521805 Power Systems], and [https://ieeexplore.ieee.org/book/9549029 Electricity and Electronics Fundamentals].&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
#[https://www.fluke.com/en-us/learn/blog/electrical/what-is-ohms-law What is Ohm’s Law? (n.d.). Fluke LLC.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Circuits]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46398</id>
		<title>Gravitational Potential Energy</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46398"/>
		<updated>2024-04-24T20:34:55Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Examples */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by: Dhruv Saxena (Spring 2023)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Main Idea ==&lt;br /&gt;
&lt;br /&gt;
Gravitational Potential Energy (&amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt;) is the energy stored in an object as a result of its position in a gravitational field and attractive forces from surrounding objects. The general case of gravitational potential energy, when two objects with mass are attracted to each other, depends on the distance between the two and masses of each. The total gravitational energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is inversely proportional to the distance between the two objects with mass. In other words, the closer together together two things are, the greater the magnitude of gravitational potential energy &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be. Additionally, the total gravitational potential energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is directly proportional to the masses of the objects. When the objects are more massive, the magnitude &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be greater.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gravitational Potential Energy, as implied by the name, is a form of potential energy. Potential energy is energy that is stored in an object due to its position or chemical properties that can be translated into kinetic or thermal energy. In these terms it clarifies how an object in space has gravitational potential energy and as it loses this potential energy while falling to the ground, it gains speed, or kinetic energy.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An important note is also that gravitational potential energy is negative. This results due to the integration determining gravitational potential energy but an intuitive way to understand this is that the negative sign indicates that when masses approach each other in a gravitational field gravity is doing positive work. If that didn&#039;t make sense, remember the idea that kinetic energy is always positive so when &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases if we want to keep &amp;lt;math&amp;gt;E_{total}&amp;lt;/math&amp;gt; the same, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; must be negative.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An important aspect to acknowledge about Gravitational potential energy is that it must be looked at in the difference between two points. An example that showcases this is the difference in gravitational potential energy between a rock on the surface of the earth and a rock in space. While the rock in space has a smaller magnitude of potential energy in comparison to the rock on the surface, the change in energy from space to the ground is greater than the energy the rock on the ground has in respect to ground level. This is why the rock in space will gain speed and energy as it falls through the air towards the ground.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We commonly use gravitational potential energy when we&#039;re trying to determine the work required to life an object with mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; to a height a &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since the gravitational potential energy for objects near the surface of the Earth (As we will derive in the Mathematical Model section) can be represented as &amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt; we can intuitively see that the force due to gravity on an object of mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; would be &amp;lt;math&amp;gt;mg&amp;lt;/math&amp;gt; and the height we&#039;d be lifting it to would be &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since work &amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; we see a parallel idea between &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;W&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Checkout this [https://www.youtube.com/watch?v=z3ujg_CkslI video] for a quick review and explanation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Mathematical Model ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===== General Form for Gravitational Potential Energy:  =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = -G\frac{m_1 m_2}{r}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; is the mass of the first object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt; is the mass of the second object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;r&amp;lt;/math&amp;gt; is the distance between the center of mass &amp;lt;math&amp;gt;cm&amp;lt;/math&amp;gt; of both masses &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt;. (If you don&#039;t know how to find center of mass yet, you can probably assume that its the center of whatever mass you&#039;re using). The standard unit for distance is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;G&amp;lt;/math&amp;gt; is the gravitational constant or &amp;lt;math&amp;gt;6.67408 \times 10^{-11} \frac{m^3}{kg \times s^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
We can make some simplifying approximations (similar to what we did with gravitational force) when we are trying to measure gravitational potential energy due to the Earth near the surface of the Earth.&lt;br /&gt;
&lt;br /&gt;
===== Gravitational Potential Energy near the Earth&#039;s surface: =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; is the mass of the object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; of. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt; is the height above the Earth&#039;s surface that the object is (make sure that it is near the Earth&#039;s surface. A good rule of thumb is that it really shouldn&#039;t be in space :-) ). The standard unit for height is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===== Gravitational Potential Energy Relation to Gravitational Force: =====&lt;br /&gt;
&lt;br /&gt;
* Potential energy is always the integral of the force over the distance the force is applied. &lt;br /&gt;
* We can observe how the gravitational potential energy comes about by looking at the gravitational force&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = \int_{-\infty}^{r} F_g dr&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Fg = -G\frac{m_1 m_2}{r^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = \int_{-\infty}^{r} -G\frac{m_1 m_2}{r^2} dr = -G\frac{m_1 m_2}{r}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Computational Model ===&lt;br /&gt;
&lt;br /&gt;
In order to understand gravitational potential energy in a computational manner, we must be able to represent it in some way which we can visually understand it. To do this, we will use an energy graph. An &#039;&#039;energy graph&#039;&#039; is a graph which plots potential energy, kinetic energy, and total energy. There are a few easy steps to follow when making an energy graph.&lt;br /&gt;
&lt;br /&gt;
# Draw &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; vs &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; for the interaction (&amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; is the distance the object is from what it&#039;s attracted to)&lt;br /&gt;
# At some distance &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; is known, plot the point &amp;lt;math&amp;gt;(|\vec r|, K)&amp;lt;/math&amp;gt; &lt;br /&gt;
# Add the known value of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; to the value of &amp;lt;math&amp;gt;U&amp;lt;/math&amp;gt; at that same separation &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; &lt;br /&gt;
# Plot the horizontal line &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; across the graph&lt;br /&gt;
# Calculate the rest of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; knowing that &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; = the same constant&lt;br /&gt;
# Plot the values&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:EnergyAndPositionGraphs.png|frame|none|alt=|caption ]]&lt;br /&gt;
From https://www.glowscript.org/#/user/Dhruv3745/folder/MyPrograms/program/lab2&lt;br /&gt;
[[File:Totalenergy.gif|frame|none|alt=|caption ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The above graph shows an example of what an energy versus distance graph may look like. We can see that as the distance increases, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; decreases and &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== VPython Examples ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Suppose that we have a spaceship that is passing close to the Earth. We can computationally model the gravitational potential energy of this spaceship and visually represent it using energy graphs. The basic structure of our program will follow what is usually done for VPython programs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;Pick a delta t&lt;br /&gt;
Initialize our variables&lt;br /&gt;
while our time &amp;amp;lt; time bound do&lt;br /&gt;
	Calculate new values for our variables&lt;br /&gt;
	Update how they are presented&lt;br /&gt;
	increment our time + delta t&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Create/Initialize the Energy Graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;trail = curve(color=craft.color)		#This creates a trail for the spacecraft&lt;br /&gt;
U_graph = gcurve(color=color.blue) 		#A plot of the Potential energy&lt;br /&gt;
K_graph = gcurve(color=color.yellow) 	#A plot of the Kinetic energy&lt;br /&gt;
Energy_graph = gcurve(color=color.green)#A plot of the Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Calculate and Update the variables in our Loop&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;K_craft = 0.5*mcraft*mag2(pcraft/mcraft)	#Kinetic Energy using equation: .5mv^2&lt;br /&gt;
U_craft_Earth = -G*mcraft*mEarth/mag(craft.pos-Earth.pos) #Craft + Earth interaction energy&lt;br /&gt;
E = K_craft + U_craft_Earth		#Approximate Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Update our graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;U_graph.plot(pos=(t,U_craft_Earth))		#Potential energy as a function of time&lt;br /&gt;
K_graph.plot(pos=(t,K_craft))			#Kinetic energy as a function of time&lt;br /&gt;
Energy_graph.plot(pos=(t,E))			#Total energy as a function of time&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here is what a slightly more complex product would like like (this example has the moon&#039;s gravity incident on the spaceship as well):&lt;br /&gt;
&lt;br /&gt;
Click [https://trinket.io/embed/glowscript/370440404c?outputOnly=true here] to see it in action if you can&#039;t see it below.&lt;br /&gt;
&lt;br /&gt;
== Guide on Solving Problems ==&lt;br /&gt;
&lt;br /&gt;
The Law of Conservation of energy states that energy is neither created nor destroyed. This means that a system&#039;s energy is always the same at any point in time as long as it is not acted upon by an external influence. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; E_i = E_f &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; U_{g_{init}} + K_{init} = U_{g_{final}} + K_{final} &amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Upon seeing any problem, you need to calculate the energy it would have at the final/initial state (depending on what information is given). Isolate the unknown and solve.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Simple ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question: &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A ball of mass &amp;lt;math&amp;gt;100&amp;lt;/math&amp;gt; grams is &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; m above the ground, initially at rest (&amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;). When the ball is &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground what is the kinetic energy (&amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt;)? Choose the ball + Earth system.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Try drawing a picture of the situation. What has changed between the ball being at a higher height versus a lower height? Specifically how does this relate to the balance of potential energy and kinetic energy?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start from the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Since the ball starts from rest we know that &amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;. Since the ball is also &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; meters above the ground we know that there will be some potential energy due to gravity. We can use the equation above for an estimate of gravitational potential energy for an object close to the Earth&#039;s surface: &amp;lt;math&amp;gt;mgh&amp;lt;/math&amp;gt;. Therefore, we now know:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;0 + mgh_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;h_i&amp;lt;/math&amp;gt; is the initial height of the ball. Since the ball doesn&#039;t fall all the way to the ground in its final state (It&#039;s still &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground) we know that there will still be some potential energy due to gravity. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;mgh_i = K_f + mgh_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then isolate &amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt; with some subtraction&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = mg(h_i - h_f)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If we know substitute the numbers that we know into the equation we get that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = .1 \cdot 9.8 \cdot (7 - 4) = 2.94&amp;lt;/math&amp;gt; Joules&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Medium ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In February 2013 a large meteor, whose mass has been estimated to be &amp;lt;math&amp;gt;1.2 \times 10^7 kg&amp;lt;/math&amp;gt;, fell to Earth near Chelyabinsk, Russia. (This meteor exploded spectacularly at height of about &amp;lt;math&amp;gt;30&amp;lt;/math&amp;gt; km, doing significant damage to objects on the ground.) Consider a meteor of the same mass falling toward the Earth. Choose the Earth plus the meteor as the system. As the meteor falls from a distance of &amp;lt;math&amp;gt;1 \times 10^8&amp;lt;/math&amp;gt; m from the center of the Earth to &amp;lt;math&amp;gt;1 \times 10^7&amp;lt;/math&amp;gt; m, what is the change in the kinetic energy of the meteor? The mass of the Earth is about &amp;lt;math&amp;gt;6 \times 10^{24}kg&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Consider how far the meteor is from Earth. Would it be considered an object near the surface of Earth or would we have to use the other model of gravitational potential energy? What is the quantity that we&#039;re solving for?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start with the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Perhaps a better organization of this equation, keeping in mind that we are solving for the &#039;&#039;change&#039;&#039; in kinetic energy would be as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i - K_f = U_f - U_i&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And if we want to put it in terms of changes&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- (K_f - K_i)  = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- \Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can now utilize the fact that we know both the initial and final height of the meteor in relation to the Earth. Since the meteor is not quite near the Earth&#039;s surface, we will use the formula for gravitational potential energy that does not make that assumption.&lt;br /&gt;
&lt;br /&gt;
We know that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which if we substitute in the gravitational potential energy equations would be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -G\frac{m_1 m_2}{r_f} - -G\frac{m_1 m_2}{r_i} = -G\frac{m_1 m_2}{r_f} + G\frac{m_1 m_2}{r_i}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values that we are given in the problem to solve for potential energy.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - 6.67408 \times 10^{-11} \frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^7} + 6.67408 \times 10^{-11}\frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^8} = \Delta U&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then use this value to solve for the change in kinetic energy using our earlier derived equation which says that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;-\Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - \Delta K = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta K = 4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Hard  ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A robot spacecraft lands on an asteroid, picks up a sample, and blasts off to return to the Earth; it&#039;s total mass is &amp;lt;math&amp;gt;1500&amp;lt;/math&amp;gt; kg. When it is &amp;lt;math&amp;gt;200&amp;lt;/math&amp;gt; km from the center of mass of the asteroid, its speed is &amp;lt;math&amp;gt;5.0 \frac{m}{s}&amp;lt;/math&amp;gt;, and the rockets are turned off. At the moment when it has coasted to a distance &amp;lt;math&amp;gt;500&amp;lt;/math&amp;gt; km from the center of the asteroid, its speed has a decreased to &amp;lt;math&amp;gt;4.1&amp;lt;/math&amp;gt; m/s. Calculate the mass of the asteroid. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Do you see any chance of a variable cancelling out once you start working with your algebra? &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Start with the energy principle as always:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We know that the beginning and end of its journey both has kinetic energy as well as potential energy due to the gravitational potential energy between the spaceship and the asteroid. Knowing this, and taking it into account, we can rewrite our energy principle with slightly more specific terms.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}m_{ship}v_i^2 - G\frac{m_{ship} m_{asteroid}}{r_i} = \frac{1}{2}m_{ship}v_f^2 - G\frac{m_{ship} m_{asteroid}}{r_f}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
If we then factor out the &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt; we might see a relation that is helpful.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{ship}(\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i}) = m_{ship}(\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can divide both sides of the equation by &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i} =\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now isolate the &amp;lt;math&amp;gt;m_{asteroid}&amp;lt;/math&amp;gt; with a little bit more algebra.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  G\frac{m_{asteroid}}{r_i} - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  m_{asteroid}(G\frac{1}{r_i} - G\frac{1}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}(v_i^2 - v_f^2)}{G(\frac{1}{r_i} - \frac{1}{r_f})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values given to us in the problem to determine what the mass of the asteroid was.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}((5)^2 -(4.1)^2)}{G(\frac{1}{200} - \frac{1}{500})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which gives us our final answer of:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{asteroid} = 2.04648 \times 10^{13}kg&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Connectedness ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gravitational potential energy can be related to industrial engineering for someone who chooses to work in a manufacturing or aerospace. It is also very important to include when determining the escape velocity and other forces necessary for rockets, probes, and satellites to travel within space. It, also, has some importance in animation and game development as it is an essential part of physics engines and, without a doubt, one of the most obvious interactions visible in society.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
Galileo Galilei and Isaac Newton discovered how forces are related to acceleration. Newton summed up this information with his Laws of Motion. Mechanical energy was discovered by analyzing the equations derived from Newton&#039;s Laws. It was later realized that when two objects interact they exert forces on each other and that work (&amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; ) must be replaced with potential energy in a system of interacting objects within a gravitational field.&lt;br /&gt;
&lt;br /&gt;
The idea of gravitational potential energy specifically was introduced by Johann Bernoulli in 1738. The concept was later taken up by several people in several different ways. For example Euler, Lagrange, Laplace and Legendre looked at gravity as it revolved around something while Newton focused on gravitational attraction if the object is a sphere. Euler and Co later confirmed the shape does not matter for the object.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Might be interesting to explore spring potential! &lt;br /&gt;
&lt;br /&gt;
http://theory.uwinnipeg.ca/physics/work/node5.html &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== Further reading ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
If you&#039;d like to read a book regarding gravitational potential energy, be sure to check this one out.&lt;br /&gt;
&lt;br /&gt;
[[https://books.google.com/books?id=8p0gaOL802AC&amp;amp;pg=PA123&amp;amp;dq=physics+gravitational+potential&amp;amp;hl=en&amp;amp;sa=X&amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;q=physics gravitational potential&amp;amp;f=false|https://books.google.com/books?id=8p0gaOL802AC&amp;amp;amp;pg=PA123&amp;amp;amp;dq=physics+gravitational+potential&amp;amp;amp;hl=en&amp;amp;amp;sa=X&amp;amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;amp;q=physics%20gravitational%20potential&amp;amp;amp;f=false]] &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== External links ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet resources on this topic:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Simple Explanation: &lt;br /&gt;
&lt;br /&gt;
http://scienceworld.wolfram.com/physics/GravitationalForce.html &lt;br /&gt;
&lt;br /&gt;
Videos: &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=a91DAsbYCo4 &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=8a4D2xqHBF4 &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/circles/Lesson-3/Newton-s-Law-of-Universal-Gravitation &lt;br /&gt;
&lt;br /&gt;
http://matterandinteractions.org/ &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/energy/Lesson-1/Potential-Energy &lt;br /&gt;
&lt;br /&gt;
http://hyperphysics.phy-astr.gsu.edu/hbase/gpot.html &lt;br /&gt;
&lt;br /&gt;
http://weelookang.blogspot.com/2010/10/ejs-open-source-gravity-field-model.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Energy]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46397</id>
		<title>Gravitational Potential Energy</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46397"/>
		<updated>2024-04-24T13:16:18Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* History */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by: Dhruv Saxena (Spring 2023)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Main Idea ==&lt;br /&gt;
&lt;br /&gt;
Gravitational Potential Energy (&amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt;) is the energy stored in an object as a result of its position in a gravitational field and attractive forces from surrounding objects. The general case of gravitational potential energy, when two objects with mass are attracted to each other, depends on the distance between the two and masses of each. The total gravitational energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is inversely proportional to the distance between the two objects with mass. In other words, the closer together together two things are, the greater the magnitude of gravitational potential energy &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be. Additionally, the total gravitational potential energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is directly proportional to the masses of the objects. When the objects are more massive, the magnitude &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be greater.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gravitational Potential Energy, as implied by the name, is a form of potential energy. Potential energy is energy that is stored in an object due to its position or chemical properties that can be translated into kinetic or thermal energy. In these terms it clarifies how an object in space has gravitational potential energy and as it loses this potential energy while falling to the ground, it gains speed, or kinetic energy.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An important note is also that gravitational potential energy is negative. This results due to the integration determining gravitational potential energy but an intuitive way to understand this is that the negative sign indicates that when masses approach each other in a gravitational field gravity is doing positive work. If that didn&#039;t make sense, remember the idea that kinetic energy is always positive so when &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases if we want to keep &amp;lt;math&amp;gt;E_{total}&amp;lt;/math&amp;gt; the same, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; must be negative.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An important aspect to acknowledge about Gravitational potential energy is that it must be looked at in the difference between two points. An example that showcases this is the difference in gravitational potential energy between a rock on the surface of the earth and a rock in space. While the rock in space has a smaller magnitude of potential energy in comparison to the rock on the surface, the change in energy from space to the ground is greater than the energy the rock on the ground has in respect to ground level. This is why the rock in space will gain speed and energy as it falls through the air towards the ground.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We commonly use gravitational potential energy when we&#039;re trying to determine the work required to life an object with mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; to a height a &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since the gravitational potential energy for objects near the surface of the Earth (As we will derive in the Mathematical Model section) can be represented as &amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt; we can intuitively see that the force due to gravity on an object of mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; would be &amp;lt;math&amp;gt;mg&amp;lt;/math&amp;gt; and the height we&#039;d be lifting it to would be &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since work &amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; we see a parallel idea between &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;W&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Checkout this [https://www.youtube.com/watch?v=z3ujg_CkslI video] for a quick review and explanation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Mathematical Model ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===== General Form for Gravitational Potential Energy:  =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = -G\frac{m_1 m_2}{r}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; is the mass of the first object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt; is the mass of the second object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;r&amp;lt;/math&amp;gt; is the distance between the center of mass &amp;lt;math&amp;gt;cm&amp;lt;/math&amp;gt; of both masses &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt;. (If you don&#039;t know how to find center of mass yet, you can probably assume that its the center of whatever mass you&#039;re using). The standard unit for distance is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;G&amp;lt;/math&amp;gt; is the gravitational constant or &amp;lt;math&amp;gt;6.67408 \times 10^{-11} \frac{m^3}{kg \times s^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
We can make some simplifying approximations (similar to what we did with gravitational force) when we are trying to measure gravitational potential energy due to the Earth near the surface of the Earth.&lt;br /&gt;
&lt;br /&gt;
===== Gravitational Potential Energy near the Earth&#039;s surface: =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; is the mass of the object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; of. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt; is the height above the Earth&#039;s surface that the object is (make sure that it is near the Earth&#039;s surface. A good rule of thumb is that it really shouldn&#039;t be in space :-) ). The standard unit for height is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===== Gravitational Potential Energy Relation to Gravitational Force: =====&lt;br /&gt;
&lt;br /&gt;
* Potential energy is always the integral of the force over the distance the force is applied. &lt;br /&gt;
* We can observe how the gravitational potential energy comes about by looking at the gravitational force&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = \int_{-\infty}^{r} F_g dr&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Fg = -G\frac{m_1 m_2}{r^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = \int_{-\infty}^{r} -G\frac{m_1 m_2}{r^2} dr = -G\frac{m_1 m_2}{r}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Computational Model ===&lt;br /&gt;
&lt;br /&gt;
In order to understand gravitational potential energy in a computational manner, we must be able to represent it in some way which we can visually understand it. To do this, we will use an energy graph. An &#039;&#039;energy graph&#039;&#039; is a graph which plots potential energy, kinetic energy, and total energy. There are a few easy steps to follow when making an energy graph.&lt;br /&gt;
&lt;br /&gt;
# Draw &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; vs &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; for the interaction (&amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; is the distance the object is from what it&#039;s attracted to)&lt;br /&gt;
# At some distance &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; is known, plot the point &amp;lt;math&amp;gt;(|\vec r|, K)&amp;lt;/math&amp;gt; &lt;br /&gt;
# Add the known value of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; to the value of &amp;lt;math&amp;gt;U&amp;lt;/math&amp;gt; at that same separation &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; &lt;br /&gt;
# Plot the horizontal line &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; across the graph&lt;br /&gt;
# Calculate the rest of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; knowing that &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; = the same constant&lt;br /&gt;
# Plot the values&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:EnergyAndPositionGraphs.png|frame|none|alt=|caption ]]&lt;br /&gt;
From https://www.glowscript.org/#/user/Dhruv3745/folder/MyPrograms/program/lab2&lt;br /&gt;
[[File:Totalenergy.gif|frame|none|alt=|caption ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The above graph shows an example of what an energy versus distance graph may look like. We can see that as the distance increases, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; decreases and &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== VPython Examples ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Suppose that we have a spaceship that is passing close to the Earth. We can computationally model the gravitational potential energy of this spaceship and visually represent it using energy graphs. The basic structure of our program will follow what is usually done for VPython programs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;Pick a delta t&lt;br /&gt;
Initialize our variables&lt;br /&gt;
while our time &amp;amp;lt; time bound do&lt;br /&gt;
	Calculate new values for our variables&lt;br /&gt;
	Update how they are presented&lt;br /&gt;
	increment our time + delta t&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Create/Initialize the Energy Graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;trail = curve(color=craft.color)		#This creates a trail for the spacecraft&lt;br /&gt;
U_graph = gcurve(color=color.blue) 		#A plot of the Potential energy&lt;br /&gt;
K_graph = gcurve(color=color.yellow) 	#A plot of the Kinetic energy&lt;br /&gt;
Energy_graph = gcurve(color=color.green)#A plot of the Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Calculate and Update the variables in our Loop&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;K_craft = 0.5*mcraft*mag2(pcraft/mcraft)	#Kinetic Energy using equation: .5mv^2&lt;br /&gt;
U_craft_Earth = -G*mcraft*mEarth/mag(craft.pos-Earth.pos) #Craft + Earth interaction energy&lt;br /&gt;
E = K_craft + U_craft_Earth		#Approximate Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Update our graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;U_graph.plot(pos=(t,U_craft_Earth))		#Potential energy as a function of time&lt;br /&gt;
K_graph.plot(pos=(t,K_craft))			#Kinetic energy as a function of time&lt;br /&gt;
Energy_graph.plot(pos=(t,E))			#Total energy as a function of time&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here is what a slightly more complex product would like like (this example has the moon&#039;s gravity incident on the spaceship as well):&lt;br /&gt;
&lt;br /&gt;
Click [https://trinket.io/embed/glowscript/370440404c?outputOnly=true here] to see it in action if you can&#039;t see it below.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Simple ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question: &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A ball of mass &amp;lt;math&amp;gt;100&amp;lt;/math&amp;gt; grams is &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; m above the ground, initially at rest (&amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;). When the ball is &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground what is the kinetic energy (&amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt;)? Choose the ball + Earth system.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Try drawing a picture of the situation. What has changed between the ball being at a higher height versus a lower height? Specifically how does this relate to the balance of potential energy and kinetic energy?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start from the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Since the ball starts from rest we know that &amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;. Since the ball is also &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; meters above the ground we know that there will be some potential energy due to gravity. We can use the equation above for an estimate of gravitational potential energy for an object close to the Earth&#039;s surface: &amp;lt;math&amp;gt;mgh&amp;lt;/math&amp;gt;. Therefore, we now know:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;0 + mgh_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;h_i&amp;lt;/math&amp;gt; is the initial height of the ball. Since the ball doesn&#039;t fall all the way to the ground in its final state (It&#039;s still &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground) we know that there will still be some potential energy due to gravity. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;mgh_i = K_f + mgh_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then isolate &amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt; with some subtraction&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = mg(h_i - h_f)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If we know substitute the numbers that we know into the equation we get that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = .1 \cdot 9.8 \cdot (7 - 4) = 2.94&amp;lt;/math&amp;gt; Joules&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Medium ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In February 2013 a large meteor, whose mass has been estimated to be &amp;lt;math&amp;gt;1.2 \times 10^7 kg&amp;lt;/math&amp;gt;, fell to Earth near Chelyabinsk, Russia. (This meteor exploded spectacularly at height of about &amp;lt;math&amp;gt;30&amp;lt;/math&amp;gt; km, doing significant damage to objects on the ground.) Consider a meteor of the same mass falling toward the Earth. Choose the Earth plus the meteor as the system. As the meteor falls from a distance of &amp;lt;math&amp;gt;1 \times 10^8&amp;lt;/math&amp;gt; m from the center of the Earth to &amp;lt;math&amp;gt;1 \times 10^7&amp;lt;/math&amp;gt; m, what is the change in the kinetic energy of the meteor? The mass of the Earth is about &amp;lt;math&amp;gt;6 \times 10^{24}kg&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Consider how far the meteor is from Earth. Would it be considered an object near the surface of Earth or would we have to use the other model of gravitational potential energy? What is the quantity that we&#039;re solving for?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start with the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Perhaps a better organization of this equation, keeping in mind that we are solving for the &#039;&#039;change&#039;&#039; in kinetic energy would be as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i - K_f = U_f - U_i&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And if we want to put it in terms of changes&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- (K_f - K_i)  = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- \Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can now utilize the fact that we know both the initial and final height of the meteor in relation to the Earth. Since the meteor is not quite near the Earth&#039;s surface, we will use the formula for gravitational potential energy that does not make that assumption.&lt;br /&gt;
&lt;br /&gt;
We know that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which if we substitute in the gravitational potential energy equations would be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -G\frac{m_1 m_2}{r_f} - -G\frac{m_1 m_2}{r_i} = -G\frac{m_1 m_2}{r_f} + G\frac{m_1 m_2}{r_i}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values that we are given in the problem to solve for potential energy.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - 6.67408 \times 10^{-11} \frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^7} + 6.67408 \times 10^{-11}\frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^8} = \Delta U&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then use this value to solve for the change in kinetic energy using our earlier derived equation which says that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;-\Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - \Delta K = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta K = 4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Hard  ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A robot spacecraft lands on an asteroid, picks up a sample, and blasts off to return to the Earth; it&#039;s total mass is &amp;lt;math&amp;gt;1500&amp;lt;/math&amp;gt; kg. When it is &amp;lt;math&amp;gt;200&amp;lt;/math&amp;gt; km from the center of mass of the asteroid, its speed is &amp;lt;math&amp;gt;5.0 \frac{m}{s}&amp;lt;/math&amp;gt;, and the rockets are turned off. At the moment when it has coasted to a distance &amp;lt;math&amp;gt;500&amp;lt;/math&amp;gt; km from the center of the asteroid, its speed has a decreased to &amp;lt;math&amp;gt;4.1&amp;lt;/math&amp;gt; m/s. Calculate the mass of the asteroid. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Do you see any chance of a variable cancelling out once you start working with your algebra? &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Start with the energy principle as always:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We know that the beginning and end of its journey both has kinetic energy as well as potential energy due to the gravitational potential energy between the spaceship and the asteroid. Knowing this, and taking it into account, we can rewrite our energy principle with slightly more specific terms.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}m_{ship}v_i^2 - G\frac{m_{ship} m_{asteroid}}{r_i} = \frac{1}{2}m_{ship}v_f^2 - G\frac{m_{ship} m_{asteroid}}{r_f}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
If we then factor out the &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt; we might see a relation that is helpful.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{ship}(\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i}) = m_{ship}(\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can divide both sides of the equation by &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i} =\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now isolate the &amp;lt;math&amp;gt;m_{asteroid}&amp;lt;/math&amp;gt; with a little bit more algebra.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  G\frac{m_{asteroid}}{r_i} - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  m_{asteroid}(G\frac{1}{r_i} - G\frac{1}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}(v_i^2 - v_f^2)}{G(\frac{1}{r_i} - \frac{1}{r_f})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values given to us in the problem to determine what the mass of the asteroid was.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}((5)^2 -(4.1)^2)}{G(\frac{1}{200} - \frac{1}{500})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which gives us our final answer of:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{asteroid} = 2.04648 \times 10^{13}kg&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Connectedness ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gravitational potential energy can be related to industrial engineering for someone who chooses to work in a manufacturing or aerospace. It is also very important to include when determining the escape velocity and other forces necessary for rockets, probes, and satellites to travel within space. It, also, has some importance in animation and game development as it is an essential part of physics engines and, without a doubt, one of the most obvious interactions visible in society.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
Galileo Galilei and Isaac Newton discovered how forces are related to acceleration. Newton summed up this information with his Laws of Motion. Mechanical energy was discovered by analyzing the equations derived from Newton&#039;s Laws. It was later realized that when two objects interact they exert forces on each other and that work (&amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; ) must be replaced with potential energy in a system of interacting objects within a gravitational field.&lt;br /&gt;
&lt;br /&gt;
The idea of gravitational potential energy specifically was introduced by Johann Bernoulli in 1738. The concept was later taken up by several people in several different ways. For example Euler, Lagrange, Laplace and Legendre looked at gravity as it revolved around something while Newton focused on gravitational attraction if the object is a sphere. Euler and Co later confirmed the shape does not matter for the object.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Might be interesting to explore spring potential! &lt;br /&gt;
&lt;br /&gt;
http://theory.uwinnipeg.ca/physics/work/node5.html &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== Further reading ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
If you&#039;d like to read a book regarding gravitational potential energy, be sure to check this one out.&lt;br /&gt;
&lt;br /&gt;
[[https://books.google.com/books?id=8p0gaOL802AC&amp;amp;pg=PA123&amp;amp;dq=physics+gravitational+potential&amp;amp;hl=en&amp;amp;sa=X&amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;q=physics gravitational potential&amp;amp;f=false|https://books.google.com/books?id=8p0gaOL802AC&amp;amp;amp;pg=PA123&amp;amp;amp;dq=physics+gravitational+potential&amp;amp;amp;hl=en&amp;amp;amp;sa=X&amp;amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;amp;q=physics%20gravitational%20potential&amp;amp;amp;f=false]] &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== External links ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet resources on this topic:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Simple Explanation: &lt;br /&gt;
&lt;br /&gt;
http://scienceworld.wolfram.com/physics/GravitationalForce.html &lt;br /&gt;
&lt;br /&gt;
Videos: &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=a91DAsbYCo4 &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=8a4D2xqHBF4 &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/circles/Lesson-3/Newton-s-Law-of-Universal-Gravitation &lt;br /&gt;
&lt;br /&gt;
http://matterandinteractions.org/ &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/energy/Lesson-1/Potential-Energy &lt;br /&gt;
&lt;br /&gt;
http://hyperphysics.phy-astr.gsu.edu/hbase/gpot.html &lt;br /&gt;
&lt;br /&gt;
http://weelookang.blogspot.com/2010/10/ejs-open-source-gravity-field-model.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Energy]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46396</id>
		<title>Gravitational Potential Energy</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46396"/>
		<updated>2024-04-24T12:59:05Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Computational Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by: Dhruv Saxena (Spring 2023)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Main Idea ==&lt;br /&gt;
&lt;br /&gt;
Gravitational Potential Energy (&amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt;) is the energy stored in an object as a result of its position in a gravitational field and attractive forces from surrounding objects. The general case of gravitational potential energy, when two objects with mass are attracted to each other, depends on the distance between the two and masses of each. The total gravitational energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is inversely proportional to the distance between the two objects with mass. In other words, the closer together together two things are, the greater the magnitude of gravitational potential energy &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be. Additionally, the total gravitational potential energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is directly proportional to the masses of the objects. When the objects are more massive, the magnitude &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be greater.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gravitational Potential Energy, as implied by the name, is a form of potential energy. Potential energy is energy that is stored in an object due to its position or chemical properties that can be translated into kinetic or thermal energy. In these terms it clarifies how an object in space has gravitational potential energy and as it loses this potential energy while falling to the ground, it gains speed, or kinetic energy.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An important note is also that gravitational potential energy is negative. This results due to the integration determining gravitational potential energy but an intuitive way to understand this is that the negative sign indicates that when masses approach each other in a gravitational field gravity is doing positive work. If that didn&#039;t make sense, remember the idea that kinetic energy is always positive so when &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases if we want to keep &amp;lt;math&amp;gt;E_{total}&amp;lt;/math&amp;gt; the same, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; must be negative.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An important aspect to acknowledge about Gravitational potential energy is that it must be looked at in the difference between two points. An example that showcases this is the difference in gravitational potential energy between a rock on the surface of the earth and a rock in space. While the rock in space has a smaller magnitude of potential energy in comparison to the rock on the surface, the change in energy from space to the ground is greater than the energy the rock on the ground has in respect to ground level. This is why the rock in space will gain speed and energy as it falls through the air towards the ground.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We commonly use gravitational potential energy when we&#039;re trying to determine the work required to life an object with mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; to a height a &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since the gravitational potential energy for objects near the surface of the Earth (As we will derive in the Mathematical Model section) can be represented as &amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt; we can intuitively see that the force due to gravity on an object of mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; would be &amp;lt;math&amp;gt;mg&amp;lt;/math&amp;gt; and the height we&#039;d be lifting it to would be &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since work &amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; we see a parallel idea between &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;W&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Checkout this [https://www.youtube.com/watch?v=z3ujg_CkslI video] for a quick review and explanation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Mathematical Model ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===== General Form for Gravitational Potential Energy:  =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = -G\frac{m_1 m_2}{r}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; is the mass of the first object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt; is the mass of the second object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;r&amp;lt;/math&amp;gt; is the distance between the center of mass &amp;lt;math&amp;gt;cm&amp;lt;/math&amp;gt; of both masses &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt;. (If you don&#039;t know how to find center of mass yet, you can probably assume that its the center of whatever mass you&#039;re using). The standard unit for distance is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;G&amp;lt;/math&amp;gt; is the gravitational constant or &amp;lt;math&amp;gt;6.67408 \times 10^{-11} \frac{m^3}{kg \times s^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
We can make some simplifying approximations (similar to what we did with gravitational force) when we are trying to measure gravitational potential energy due to the Earth near the surface of the Earth.&lt;br /&gt;
&lt;br /&gt;
===== Gravitational Potential Energy near the Earth&#039;s surface: =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; is the mass of the object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; of. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt; is the height above the Earth&#039;s surface that the object is (make sure that it is near the Earth&#039;s surface. A good rule of thumb is that it really shouldn&#039;t be in space :-) ). The standard unit for height is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===== Gravitational Potential Energy Relation to Gravitational Force: =====&lt;br /&gt;
&lt;br /&gt;
* Potential energy is always the integral of the force over the distance the force is applied. &lt;br /&gt;
* We can observe how the gravitational potential energy comes about by looking at the gravitational force&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = \int_{-\infty}^{r} F_g dr&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Fg = -G\frac{m_1 m_2}{r^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = \int_{-\infty}^{r} -G\frac{m_1 m_2}{r^2} dr = -G\frac{m_1 m_2}{r}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Computational Model ===&lt;br /&gt;
&lt;br /&gt;
In order to understand gravitational potential energy in a computational manner, we must be able to represent it in some way which we can visually understand it. To do this, we will use an energy graph. An &#039;&#039;energy graph&#039;&#039; is a graph which plots potential energy, kinetic energy, and total energy. There are a few easy steps to follow when making an energy graph.&lt;br /&gt;
&lt;br /&gt;
# Draw &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; vs &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; for the interaction (&amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; is the distance the object is from what it&#039;s attracted to)&lt;br /&gt;
# At some distance &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; is known, plot the point &amp;lt;math&amp;gt;(|\vec r|, K)&amp;lt;/math&amp;gt; &lt;br /&gt;
# Add the known value of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; to the value of &amp;lt;math&amp;gt;U&amp;lt;/math&amp;gt; at that same separation &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; &lt;br /&gt;
# Plot the horizontal line &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; across the graph&lt;br /&gt;
# Calculate the rest of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; knowing that &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; = the same constant&lt;br /&gt;
# Plot the values&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:EnergyAndPositionGraphs.png|frame|none|alt=|caption ]]&lt;br /&gt;
From https://www.glowscript.org/#/user/Dhruv3745/folder/MyPrograms/program/lab2&lt;br /&gt;
[[File:Totalenergy.gif|frame|none|alt=|caption ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The above graph shows an example of what an energy versus distance graph may look like. We can see that as the distance increases, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; decreases and &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== VPython Examples ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Suppose that we have a spaceship that is passing close to the Earth. We can computationally model the gravitational potential energy of this spaceship and visually represent it using energy graphs. The basic structure of our program will follow what is usually done for VPython programs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;Pick a delta t&lt;br /&gt;
Initialize our variables&lt;br /&gt;
while our time &amp;amp;lt; time bound do&lt;br /&gt;
	Calculate new values for our variables&lt;br /&gt;
	Update how they are presented&lt;br /&gt;
	increment our time + delta t&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Create/Initialize the Energy Graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;trail = curve(color=craft.color)		#This creates a trail for the spacecraft&lt;br /&gt;
U_graph = gcurve(color=color.blue) 		#A plot of the Potential energy&lt;br /&gt;
K_graph = gcurve(color=color.yellow) 	#A plot of the Kinetic energy&lt;br /&gt;
Energy_graph = gcurve(color=color.green)#A plot of the Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Calculate and Update the variables in our Loop&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;K_craft = 0.5*mcraft*mag2(pcraft/mcraft)	#Kinetic Energy using equation: .5mv^2&lt;br /&gt;
U_craft_Earth = -G*mcraft*mEarth/mag(craft.pos-Earth.pos) #Craft + Earth interaction energy&lt;br /&gt;
E = K_craft + U_craft_Earth		#Approximate Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Update our graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;U_graph.plot(pos=(t,U_craft_Earth))		#Potential energy as a function of time&lt;br /&gt;
K_graph.plot(pos=(t,K_craft))			#Kinetic energy as a function of time&lt;br /&gt;
Energy_graph.plot(pos=(t,E))			#Total energy as a function of time&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here is what a slightly more complex product would like like (this example has the moon&#039;s gravity incident on the spaceship as well):&lt;br /&gt;
&lt;br /&gt;
Click [https://trinket.io/embed/glowscript/370440404c?outputOnly=true here] to see it in action if you can&#039;t see it below.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Simple ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question: &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A ball of mass &amp;lt;math&amp;gt;100&amp;lt;/math&amp;gt; grams is &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; m above the ground, initially at rest (&amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;). When the ball is &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground what is the kinetic energy (&amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt;)? Choose the ball + Earth system.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Try drawing a picture of the situation. What has changed between the ball being at a higher height versus a lower height? Specifically how does this relate to the balance of potential energy and kinetic energy?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start from the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Since the ball starts from rest we know that &amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;. Since the ball is also &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; meters above the ground we know that there will be some potential energy due to gravity. We can use the equation above for an estimate of gravitational potential energy for an object close to the Earth&#039;s surface: &amp;lt;math&amp;gt;mgh&amp;lt;/math&amp;gt;. Therefore, we now know:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;0 + mgh_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;h_i&amp;lt;/math&amp;gt; is the initial height of the ball. Since the ball doesn&#039;t fall all the way to the ground in its final state (It&#039;s still &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground) we know that there will still be some potential energy due to gravity. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;mgh_i = K_f + mgh_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then isolate &amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt; with some subtraction&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = mg(h_i - h_f)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If we know substitute the numbers that we know into the equation we get that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = .1 \cdot 9.8 \cdot (7 - 4) = 2.94&amp;lt;/math&amp;gt; Joules&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Medium ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In February 2013 a large meteor, whose mass has been estimated to be &amp;lt;math&amp;gt;1.2 \times 10^7 kg&amp;lt;/math&amp;gt;, fell to Earth near Chelyabinsk, Russia. (This meteor exploded spectacularly at height of about &amp;lt;math&amp;gt;30&amp;lt;/math&amp;gt; km, doing significant damage to objects on the ground.) Consider a meteor of the same mass falling toward the Earth. Choose the Earth plus the meteor as the system. As the meteor falls from a distance of &amp;lt;math&amp;gt;1 \times 10^8&amp;lt;/math&amp;gt; m from the center of the Earth to &amp;lt;math&amp;gt;1 \times 10^7&amp;lt;/math&amp;gt; m, what is the change in the kinetic energy of the meteor? The mass of the Earth is about &amp;lt;math&amp;gt;6 \times 10^{24}kg&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Consider how far the meteor is from Earth. Would it be considered an object near the surface of Earth or would we have to use the other model of gravitational potential energy? What is the quantity that we&#039;re solving for?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start with the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Perhaps a better organization of this equation, keeping in mind that we are solving for the &#039;&#039;change&#039;&#039; in kinetic energy would be as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i - K_f = U_f - U_i&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And if we want to put it in terms of changes&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- (K_f - K_i)  = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- \Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can now utilize the fact that we know both the initial and final height of the meteor in relation to the Earth. Since the meteor is not quite near the Earth&#039;s surface, we will use the formula for gravitational potential energy that does not make that assumption.&lt;br /&gt;
&lt;br /&gt;
We know that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which if we substitute in the gravitational potential energy equations would be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -G\frac{m_1 m_2}{r_f} - -G\frac{m_1 m_2}{r_i} = -G\frac{m_1 m_2}{r_f} + G\frac{m_1 m_2}{r_i}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values that we are given in the problem to solve for potential energy.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - 6.67408 \times 10^{-11} \frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^7} + 6.67408 \times 10^{-11}\frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^8} = \Delta U&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then use this value to solve for the change in kinetic energy using our earlier derived equation which says that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;-\Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - \Delta K = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta K = 4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Hard  ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A robot spacecraft lands on an asteroid, picks up a sample, and blasts off to return to the Earth; it&#039;s total mass is &amp;lt;math&amp;gt;1500&amp;lt;/math&amp;gt; kg. When it is &amp;lt;math&amp;gt;200&amp;lt;/math&amp;gt; km from the center of mass of the asteroid, its speed is &amp;lt;math&amp;gt;5.0 \frac{m}{s}&amp;lt;/math&amp;gt;, and the rockets are turned off. At the moment when it has coasted to a distance &amp;lt;math&amp;gt;500&amp;lt;/math&amp;gt; km from the center of the asteroid, its speed has a decreased to &amp;lt;math&amp;gt;4.1&amp;lt;/math&amp;gt; m/s. Calculate the mass of the asteroid. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Do you see any chance of a variable cancelling out once you start working with your algebra? &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Start with the energy principle as always:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We know that the beginning and end of its journey both has kinetic energy as well as potential energy due to the gravitational potential energy between the spaceship and the asteroid. Knowing this, and taking it into account, we can rewrite our energy principle with slightly more specific terms.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}m_{ship}v_i^2 - G\frac{m_{ship} m_{asteroid}}{r_i} = \frac{1}{2}m_{ship}v_f^2 - G\frac{m_{ship} m_{asteroid}}{r_f}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
If we then factor out the &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt; we might see a relation that is helpful.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{ship}(\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i}) = m_{ship}(\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can divide both sides of the equation by &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i} =\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now isolate the &amp;lt;math&amp;gt;m_{asteroid}&amp;lt;/math&amp;gt; with a little bit more algebra.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  G\frac{m_{asteroid}}{r_i} - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  m_{asteroid}(G\frac{1}{r_i} - G\frac{1}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}(v_i^2 - v_f^2)}{G(\frac{1}{r_i} - \frac{1}{r_f})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values given to us in the problem to determine what the mass of the asteroid was.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}((5)^2 -(4.1)^2)}{G(\frac{1}{200} - \frac{1}{500})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which gives us our final answer of:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{asteroid} = 2.04648 \times 10^{13}kg&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Connectedness ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gravitational potential energy can be related to industrial engineering for someone who chooses to work in a manufacturing or aerospace. It is also very important to include when determining the escape velocity and other forces necessary for rockets, probes, and satellites to travel within space. It, also, has some importance in animation and game development as it is an essential part of physics engines and, without a doubt, one of the most obvious interactions visible in society.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
Galileo Galilei and Isaac Newton discovered how forces are related to acceleration. Newton summed up this information with his Laws of Motion. Mechanical energy was discovered by analyzing the equations derived from Newton&#039;s Laws. It was later realized that when two objects interact they exert forces on each other and that work (&amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; ) must be replaced with potential energy in a system of interacting objects within a gravitational field. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Might be interesting to explore spring potential! &lt;br /&gt;
&lt;br /&gt;
http://theory.uwinnipeg.ca/physics/work/node5.html &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== Further reading ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
If you&#039;d like to read a book regarding gravitational potential energy, be sure to check this one out.&lt;br /&gt;
&lt;br /&gt;
[[https://books.google.com/books?id=8p0gaOL802AC&amp;amp;pg=PA123&amp;amp;dq=physics+gravitational+potential&amp;amp;hl=en&amp;amp;sa=X&amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;q=physics gravitational potential&amp;amp;f=false|https://books.google.com/books?id=8p0gaOL802AC&amp;amp;amp;pg=PA123&amp;amp;amp;dq=physics+gravitational+potential&amp;amp;amp;hl=en&amp;amp;amp;sa=X&amp;amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;amp;q=physics%20gravitational%20potential&amp;amp;amp;f=false]] &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== External links ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet resources on this topic:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Simple Explanation: &lt;br /&gt;
&lt;br /&gt;
http://scienceworld.wolfram.com/physics/GravitationalForce.html &lt;br /&gt;
&lt;br /&gt;
Videos: &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=a91DAsbYCo4 &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=8a4D2xqHBF4 &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/circles/Lesson-3/Newton-s-Law-of-Universal-Gravitation &lt;br /&gt;
&lt;br /&gt;
http://matterandinteractions.org/ &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/energy/Lesson-1/Potential-Energy &lt;br /&gt;
&lt;br /&gt;
http://hyperphysics.phy-astr.gsu.edu/hbase/gpot.html &lt;br /&gt;
&lt;br /&gt;
http://weelookang.blogspot.com/2010/10/ejs-open-source-gravity-field-model.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Energy]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=File:EnergyAndPositionGraphs.png&amp;diff=46395</id>
		<title>File:EnergyAndPositionGraphs.png</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=File:EnergyAndPositionGraphs.png&amp;diff=46395"/>
		<updated>2024-04-24T12:56:07Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: EnergyAndPositionGraphs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
EnergyAndPositionGraphs&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46394</id>
		<title>Gravitational Potential Energy</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46394"/>
		<updated>2024-04-24T12:10:30Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Main Idea */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by: Dhruv Saxena (Spring 2023)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Main Idea ==&lt;br /&gt;
&lt;br /&gt;
Gravitational Potential Energy (&amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt;) is the energy stored in an object as a result of its position in a gravitational field and attractive forces from surrounding objects. The general case of gravitational potential energy, when two objects with mass are attracted to each other, depends on the distance between the two and masses of each. The total gravitational energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is inversely proportional to the distance between the two objects with mass. In other words, the closer together together two things are, the greater the magnitude of gravitational potential energy &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be. Additionally, the total gravitational potential energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is directly proportional to the masses of the objects. When the objects are more massive, the magnitude &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be greater.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gravitational Potential Energy, as implied by the name, is a form of potential energy. Potential energy is energy that is stored in an object due to its position or chemical properties that can be translated into kinetic or thermal energy. In these terms it clarifies how an object in space has gravitational potential energy and as it loses this potential energy while falling to the ground, it gains speed, or kinetic energy.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An important note is also that gravitational potential energy is negative. This results due to the integration determining gravitational potential energy but an intuitive way to understand this is that the negative sign indicates that when masses approach each other in a gravitational field gravity is doing positive work. If that didn&#039;t make sense, remember the idea that kinetic energy is always positive so when &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases if we want to keep &amp;lt;math&amp;gt;E_{total}&amp;lt;/math&amp;gt; the same, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; must be negative.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An important aspect to acknowledge about Gravitational potential energy is that it must be looked at in the difference between two points. An example that showcases this is the difference in gravitational potential energy between a rock on the surface of the earth and a rock in space. While the rock in space has a smaller magnitude of potential energy in comparison to the rock on the surface, the change in energy from space to the ground is greater than the energy the rock on the ground has in respect to ground level. This is why the rock in space will gain speed and energy as it falls through the air towards the ground.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We commonly use gravitational potential energy when we&#039;re trying to determine the work required to life an object with mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; to a height a &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since the gravitational potential energy for objects near the surface of the Earth (As we will derive in the Mathematical Model section) can be represented as &amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt; we can intuitively see that the force due to gravity on an object of mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; would be &amp;lt;math&amp;gt;mg&amp;lt;/math&amp;gt; and the height we&#039;d be lifting it to would be &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since work &amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; we see a parallel idea between &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;W&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Checkout this [https://www.youtube.com/watch?v=z3ujg_CkslI video] for a quick review and explanation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Mathematical Model ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===== General Form for Gravitational Potential Energy:  =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = -G\frac{m_1 m_2}{r}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; is the mass of the first object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt; is the mass of the second object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;r&amp;lt;/math&amp;gt; is the distance between the center of mass &amp;lt;math&amp;gt;cm&amp;lt;/math&amp;gt; of both masses &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt;. (If you don&#039;t know how to find center of mass yet, you can probably assume that its the center of whatever mass you&#039;re using). The standard unit for distance is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;G&amp;lt;/math&amp;gt; is the gravitational constant or &amp;lt;math&amp;gt;6.67408 \times 10^{-11} \frac{m^3}{kg \times s^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
We can make some simplifying approximations (similar to what we did with gravitational force) when we are trying to measure gravitational potential energy due to the Earth near the surface of the Earth.&lt;br /&gt;
&lt;br /&gt;
===== Gravitational Potential Energy near the Earth&#039;s surface: =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; is the mass of the object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; of. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt; is the height above the Earth&#039;s surface that the object is (make sure that it is near the Earth&#039;s surface. A good rule of thumb is that it really shouldn&#039;t be in space :-) ). The standard unit for height is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===== Gravitational Potential Energy Relation to Gravitational Force: =====&lt;br /&gt;
&lt;br /&gt;
* Potential energy is always the integral of the force over the distance the force is applied. &lt;br /&gt;
* We can observe how the gravitational potential energy comes about by looking at the gravitational force&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = \int_{-\infty}^{r} F_g dr&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Fg = -G\frac{m_1 m_2}{r^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = \int_{-\infty}^{r} -G\frac{m_1 m_2}{r^2} dr = -G\frac{m_1 m_2}{r}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Computational Model ===&lt;br /&gt;
&lt;br /&gt;
In order to understand gravitational potential energy in a computational manner, we must be able to represent it in some way which we can visually understand it. To do this, we will use an energy graph. An &#039;&#039;energy graph&#039;&#039; is a graph which plots potential energy, kinetic energy, and total energy. There are a few easy steps to follow when making an energy graph.&lt;br /&gt;
&lt;br /&gt;
# Draw &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; vs &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; for the interaction (&amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; is the distance the object is from what it&#039;s attracted to)&lt;br /&gt;
# At some distance &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; is known, plot the point &amp;lt;math&amp;gt;(|\vec r|, K)&amp;lt;/math&amp;gt; &lt;br /&gt;
# Add the known value of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; to the value of &amp;lt;math&amp;gt;U&amp;lt;/math&amp;gt; at that same separation &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; &lt;br /&gt;
# Plot the horizontal line &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; across the graph&lt;br /&gt;
# Calculate the rest of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; knowing that &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; = the same constant&lt;br /&gt;
# Plot the values&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Totalenergy.gif|frame|none|alt=|caption ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The above graph shows an example of what an energy versus distance graph may look like. We can see that as the distance increases, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; decreases and &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== VPython Examples ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Suppose that we have a spaceship that is passing close to the Earth. We can computationally model the gravitational potential energy of this spaceship and visually represent it using energy graphs. The basic structure of our program will follow what is usually done for VPython programs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;Pick a delta t&lt;br /&gt;
Initialize our variables&lt;br /&gt;
while our time &amp;amp;lt; time bound do&lt;br /&gt;
	Calculate new values for our variables&lt;br /&gt;
	Update how they are presented&lt;br /&gt;
	increment our time + delta t&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Create/Initialize the Energy Graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;trail = curve(color=craft.color)		#This creates a trail for the spacecraft&lt;br /&gt;
U_graph = gcurve(color=color.blue) 		#A plot of the Potential energy&lt;br /&gt;
K_graph = gcurve(color=color.yellow) 	#A plot of the Kinetic energy&lt;br /&gt;
Energy_graph = gcurve(color=color.green)#A plot of the Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Calculate and Update the variables in our Loop&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;K_craft = 0.5*mcraft*mag2(pcraft/mcraft)	#Kinetic Energy using equation: .5mv^2&lt;br /&gt;
U_craft_Earth = -G*mcraft*mEarth/mag(craft.pos-Earth.pos) #Craft + Earth interaction energy&lt;br /&gt;
E = K_craft + U_craft_Earth		#Approximate Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Update our graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;U_graph.plot(pos=(t,U_craft_Earth))		#Potential energy as a function of time&lt;br /&gt;
K_graph.plot(pos=(t,K_craft))			#Kinetic energy as a function of time&lt;br /&gt;
Energy_graph.plot(pos=(t,E))			#Total energy as a function of time&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here is what a slightly more complex product would like like (this example has the moon&#039;s gravity incident on the spaceship as well):&lt;br /&gt;
&lt;br /&gt;
Click [https://trinket.io/embed/glowscript/370440404c?outputOnly=true here] to see it in action if you can&#039;t see it below.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Simple ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question: &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A ball of mass &amp;lt;math&amp;gt;100&amp;lt;/math&amp;gt; grams is &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; m above the ground, initially at rest (&amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;). When the ball is &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground what is the kinetic energy (&amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt;)? Choose the ball + Earth system.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Try drawing a picture of the situation. What has changed between the ball being at a higher height versus a lower height? Specifically how does this relate to the balance of potential energy and kinetic energy?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start from the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Since the ball starts from rest we know that &amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;. Since the ball is also &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; meters above the ground we know that there will be some potential energy due to gravity. We can use the equation above for an estimate of gravitational potential energy for an object close to the Earth&#039;s surface: &amp;lt;math&amp;gt;mgh&amp;lt;/math&amp;gt;. Therefore, we now know:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;0 + mgh_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;h_i&amp;lt;/math&amp;gt; is the initial height of the ball. Since the ball doesn&#039;t fall all the way to the ground in its final state (It&#039;s still &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground) we know that there will still be some potential energy due to gravity. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;mgh_i = K_f + mgh_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then isolate &amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt; with some subtraction&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = mg(h_i - h_f)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If we know substitute the numbers that we know into the equation we get that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = .1 \cdot 9.8 \cdot (7 - 4) = 2.94&amp;lt;/math&amp;gt; Joules&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Medium ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In February 2013 a large meteor, whose mass has been estimated to be &amp;lt;math&amp;gt;1.2 \times 10^7 kg&amp;lt;/math&amp;gt;, fell to Earth near Chelyabinsk, Russia. (This meteor exploded spectacularly at height of about &amp;lt;math&amp;gt;30&amp;lt;/math&amp;gt; km, doing significant damage to objects on the ground.) Consider a meteor of the same mass falling toward the Earth. Choose the Earth plus the meteor as the system. As the meteor falls from a distance of &amp;lt;math&amp;gt;1 \times 10^8&amp;lt;/math&amp;gt; m from the center of the Earth to &amp;lt;math&amp;gt;1 \times 10^7&amp;lt;/math&amp;gt; m, what is the change in the kinetic energy of the meteor? The mass of the Earth is about &amp;lt;math&amp;gt;6 \times 10^{24}kg&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Consider how far the meteor is from Earth. Would it be considered an object near the surface of Earth or would we have to use the other model of gravitational potential energy? What is the quantity that we&#039;re solving for?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start with the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Perhaps a better organization of this equation, keeping in mind that we are solving for the &#039;&#039;change&#039;&#039; in kinetic energy would be as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i - K_f = U_f - U_i&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And if we want to put it in terms of changes&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- (K_f - K_i)  = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- \Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can now utilize the fact that we know both the initial and final height of the meteor in relation to the Earth. Since the meteor is not quite near the Earth&#039;s surface, we will use the formula for gravitational potential energy that does not make that assumption.&lt;br /&gt;
&lt;br /&gt;
We know that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which if we substitute in the gravitational potential energy equations would be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -G\frac{m_1 m_2}{r_f} - -G\frac{m_1 m_2}{r_i} = -G\frac{m_1 m_2}{r_f} + G\frac{m_1 m_2}{r_i}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values that we are given in the problem to solve for potential energy.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - 6.67408 \times 10^{-11} \frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^7} + 6.67408 \times 10^{-11}\frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^8} = \Delta U&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then use this value to solve for the change in kinetic energy using our earlier derived equation which says that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;-\Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - \Delta K = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta K = 4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Hard  ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A robot spacecraft lands on an asteroid, picks up a sample, and blasts off to return to the Earth; it&#039;s total mass is &amp;lt;math&amp;gt;1500&amp;lt;/math&amp;gt; kg. When it is &amp;lt;math&amp;gt;200&amp;lt;/math&amp;gt; km from the center of mass of the asteroid, its speed is &amp;lt;math&amp;gt;5.0 \frac{m}{s}&amp;lt;/math&amp;gt;, and the rockets are turned off. At the moment when it has coasted to a distance &amp;lt;math&amp;gt;500&amp;lt;/math&amp;gt; km from the center of the asteroid, its speed has a decreased to &amp;lt;math&amp;gt;4.1&amp;lt;/math&amp;gt; m/s. Calculate the mass of the asteroid. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Do you see any chance of a variable cancelling out once you start working with your algebra? &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Start with the energy principle as always:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We know that the beginning and end of its journey both has kinetic energy as well as potential energy due to the gravitational potential energy between the spaceship and the asteroid. Knowing this, and taking it into account, we can rewrite our energy principle with slightly more specific terms.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}m_{ship}v_i^2 - G\frac{m_{ship} m_{asteroid}}{r_i} = \frac{1}{2}m_{ship}v_f^2 - G\frac{m_{ship} m_{asteroid}}{r_f}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
If we then factor out the &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt; we might see a relation that is helpful.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{ship}(\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i}) = m_{ship}(\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can divide both sides of the equation by &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i} =\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now isolate the &amp;lt;math&amp;gt;m_{asteroid}&amp;lt;/math&amp;gt; with a little bit more algebra.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  G\frac{m_{asteroid}}{r_i} - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  m_{asteroid}(G\frac{1}{r_i} - G\frac{1}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}(v_i^2 - v_f^2)}{G(\frac{1}{r_i} - \frac{1}{r_f})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values given to us in the problem to determine what the mass of the asteroid was.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}((5)^2 -(4.1)^2)}{G(\frac{1}{200} - \frac{1}{500})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which gives us our final answer of:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{asteroid} = 2.04648 \times 10^{13}kg&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Connectedness ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gravitational potential energy can be related to industrial engineering for someone who chooses to work in a manufacturing or aerospace. It is also very important to include when determining the escape velocity and other forces necessary for rockets, probes, and satellites to travel within space. It, also, has some importance in animation and game development as it is an essential part of physics engines and, without a doubt, one of the most obvious interactions visible in society.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
Galileo Galilei and Isaac Newton discovered how forces are related to acceleration. Newton summed up this information with his Laws of Motion. Mechanical energy was discovered by analyzing the equations derived from Newton&#039;s Laws. It was later realized that when two objects interact they exert forces on each other and that work (&amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; ) must be replaced with potential energy in a system of interacting objects within a gravitational field. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Might be interesting to explore spring potential! &lt;br /&gt;
&lt;br /&gt;
http://theory.uwinnipeg.ca/physics/work/node5.html &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== Further reading ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
If you&#039;d like to read a book regarding gravitational potential energy, be sure to check this one out.&lt;br /&gt;
&lt;br /&gt;
[[https://books.google.com/books?id=8p0gaOL802AC&amp;amp;pg=PA123&amp;amp;dq=physics+gravitational+potential&amp;amp;hl=en&amp;amp;sa=X&amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;q=physics gravitational potential&amp;amp;f=false|https://books.google.com/books?id=8p0gaOL802AC&amp;amp;amp;pg=PA123&amp;amp;amp;dq=physics+gravitational+potential&amp;amp;amp;hl=en&amp;amp;amp;sa=X&amp;amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;amp;q=physics%20gravitational%20potential&amp;amp;amp;f=false]] &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== External links ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet resources on this topic:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Simple Explanation: &lt;br /&gt;
&lt;br /&gt;
http://scienceworld.wolfram.com/physics/GravitationalForce.html &lt;br /&gt;
&lt;br /&gt;
Videos: &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=a91DAsbYCo4 &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=8a4D2xqHBF4 &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/circles/Lesson-3/Newton-s-Law-of-Universal-Gravitation &lt;br /&gt;
&lt;br /&gt;
http://matterandinteractions.org/ &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/energy/Lesson-1/Potential-Energy &lt;br /&gt;
&lt;br /&gt;
http://hyperphysics.phy-astr.gsu.edu/hbase/gpot.html &lt;br /&gt;
&lt;br /&gt;
http://weelookang.blogspot.com/2010/10/ejs-open-source-gravity-field-model.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Energy]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46393</id>
		<title>Gravitational Potential Energy</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46393"/>
		<updated>2024-04-24T11:51:04Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Gravitational Potential Energy Relation to Gravitational Force: */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by: Dhruv Saxena (Spring 2023)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Main Idea ==&lt;br /&gt;
&lt;br /&gt;
Gravitational Potential Energy (&amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt;) is the energy stored in an object as a result of its position in a gravitational field and attractive forces from surrounding objects. The general case of gravitational potential energy, when two objects with mass are attracted to each other, depends on the distance between the two and masses of each. The total gravitational energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is inversely proportional to the distance between the two objects with mass. In other words, the closer together together two things are, the greater the magnitude of gravitational potential energy &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be. Additionally, the total gravitational potential energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is directly proportional to the masses of the objects. When the objects are more massive, the magnitude &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be greater.&lt;br /&gt;
&lt;br /&gt;
Gravitational Potential Energy, as implied by the name, is a form of potential energy. Potential energy is energy that is stored in an object due to its position or chemical properties that can be translated into kinetic or thermal energy. In these terms it clarifies how an object in space has gravitational potential energy and as it loses this potential energy while falling to the ground, it gains speed, or kinetic energy.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An important note is also that gravitational potential energy is negative. This results due to the integration determining gravitational potential energy but an intuitive way to understand this is that the negative sign indicates that when masses approach each other in a gravitational field gravity is doing positive work. If that didn&#039;t make sense, remember the idea that kinetic energy is always positive so when &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases if we want to keep &amp;lt;math&amp;gt;E_{total}&amp;lt;/math&amp;gt; the same, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; must be negative.&lt;br /&gt;
&lt;br /&gt;
An important aspect to acknowledge about Gravitational potential energy is that it must be looked at in the difference between two points. An example that showcases this is the difference in gravitational potential energy between a rock on the surface of the earth and a rock in space. While the rock in space has a smaller magnitude of potential energy in comparison to the rock on the surface, the change in energy from space to the ground is greater than the energy the rock on the ground has in respect to ground level. This is why the rock in space will gain speed and energy as it falls through the air towards the ground.&lt;br /&gt;
&lt;br /&gt;
We commonly use gravitational potential energy when we&#039;re trying to determine the work required to life an object with mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; to a height a &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since the gravitational potential energy for objects near the surface of the Earth (As we will derive in the Mathematical Model section) can be represented as &amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt; we can intuitively see that the force due to gravity on an object of mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; would be &amp;lt;math&amp;gt;mg&amp;lt;/math&amp;gt; and the height we&#039;d be lifting it to would be &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since work &amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; we see a parallel idea between &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;W&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Checkout this [https://www.youtube.com/watch?v=z3ujg_CkslI video] for a quick review and explanation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Mathematical Model ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===== General Form for Gravitational Potential Energy:  =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = -G\frac{m_1 m_2}{r}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; is the mass of the first object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt; is the mass of the second object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;r&amp;lt;/math&amp;gt; is the distance between the center of mass &amp;lt;math&amp;gt;cm&amp;lt;/math&amp;gt; of both masses &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt;. (If you don&#039;t know how to find center of mass yet, you can probably assume that its the center of whatever mass you&#039;re using). The standard unit for distance is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;G&amp;lt;/math&amp;gt; is the gravitational constant or &amp;lt;math&amp;gt;6.67408 \times 10^{-11} \frac{m^3}{kg \times s^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
We can make some simplifying approximations (similar to what we did with gravitational force) when we are trying to measure gravitational potential energy due to the Earth near the surface of the Earth.&lt;br /&gt;
&lt;br /&gt;
===== Gravitational Potential Energy near the Earth&#039;s surface: =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; is the mass of the object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; of. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt; is the height above the Earth&#039;s surface that the object is (make sure that it is near the Earth&#039;s surface. A good rule of thumb is that it really shouldn&#039;t be in space :-) ). The standard unit for height is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===== Gravitational Potential Energy Relation to Gravitational Force: =====&lt;br /&gt;
&lt;br /&gt;
* Potential energy is always the integral of the force over the distance the force is applied. &lt;br /&gt;
* We can observe how the gravitational potential energy comes about by looking at the gravitational force&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = \int_{-\infty}^{r} F_g dr&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Fg = -G\frac{m_1 m_2}{r^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = \int_{-\infty}^{r} -G\frac{m_1 m_2}{r^2} dr = -G\frac{m_1 m_2}{r}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Computational Model ===&lt;br /&gt;
&lt;br /&gt;
In order to understand gravitational potential energy in a computational manner, we must be able to represent it in some way which we can visually understand it. To do this, we will use an energy graph. An &#039;&#039;energy graph&#039;&#039; is a graph which plots potential energy, kinetic energy, and total energy. There are a few easy steps to follow when making an energy graph.&lt;br /&gt;
&lt;br /&gt;
# Draw &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; vs &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; for the interaction (&amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; is the distance the object is from what it&#039;s attracted to)&lt;br /&gt;
# At some distance &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; is known, plot the point &amp;lt;math&amp;gt;(|\vec r|, K)&amp;lt;/math&amp;gt; &lt;br /&gt;
# Add the known value of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; to the value of &amp;lt;math&amp;gt;U&amp;lt;/math&amp;gt; at that same separation &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; &lt;br /&gt;
# Plot the horizontal line &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; across the graph&lt;br /&gt;
# Calculate the rest of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; knowing that &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; = the same constant&lt;br /&gt;
# Plot the values&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Totalenergy.gif|frame|none|alt=|caption ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The above graph shows an example of what an energy versus distance graph may look like. We can see that as the distance increases, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; decreases and &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== VPython Examples ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Suppose that we have a spaceship that is passing close to the Earth. We can computationally model the gravitational potential energy of this spaceship and visually represent it using energy graphs. The basic structure of our program will follow what is usually done for VPython programs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;Pick a delta t&lt;br /&gt;
Initialize our variables&lt;br /&gt;
while our time &amp;amp;lt; time bound do&lt;br /&gt;
	Calculate new values for our variables&lt;br /&gt;
	Update how they are presented&lt;br /&gt;
	increment our time + delta t&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Create/Initialize the Energy Graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;trail = curve(color=craft.color)		#This creates a trail for the spacecraft&lt;br /&gt;
U_graph = gcurve(color=color.blue) 		#A plot of the Potential energy&lt;br /&gt;
K_graph = gcurve(color=color.yellow) 	#A plot of the Kinetic energy&lt;br /&gt;
Energy_graph = gcurve(color=color.green)#A plot of the Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Calculate and Update the variables in our Loop&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;K_craft = 0.5*mcraft*mag2(pcraft/mcraft)	#Kinetic Energy using equation: .5mv^2&lt;br /&gt;
U_craft_Earth = -G*mcraft*mEarth/mag(craft.pos-Earth.pos) #Craft + Earth interaction energy&lt;br /&gt;
E = K_craft + U_craft_Earth		#Approximate Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Update our graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;U_graph.plot(pos=(t,U_craft_Earth))		#Potential energy as a function of time&lt;br /&gt;
K_graph.plot(pos=(t,K_craft))			#Kinetic energy as a function of time&lt;br /&gt;
Energy_graph.plot(pos=(t,E))			#Total energy as a function of time&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here is what a slightly more complex product would like like (this example has the moon&#039;s gravity incident on the spaceship as well):&lt;br /&gt;
&lt;br /&gt;
Click [https://trinket.io/embed/glowscript/370440404c?outputOnly=true here] to see it in action if you can&#039;t see it below.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Simple ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question: &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A ball of mass &amp;lt;math&amp;gt;100&amp;lt;/math&amp;gt; grams is &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; m above the ground, initially at rest (&amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;). When the ball is &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground what is the kinetic energy (&amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt;)? Choose the ball + Earth system.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Try drawing a picture of the situation. What has changed between the ball being at a higher height versus a lower height? Specifically how does this relate to the balance of potential energy and kinetic energy?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start from the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Since the ball starts from rest we know that &amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;. Since the ball is also &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; meters above the ground we know that there will be some potential energy due to gravity. We can use the equation above for an estimate of gravitational potential energy for an object close to the Earth&#039;s surface: &amp;lt;math&amp;gt;mgh&amp;lt;/math&amp;gt;. Therefore, we now know:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;0 + mgh_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;h_i&amp;lt;/math&amp;gt; is the initial height of the ball. Since the ball doesn&#039;t fall all the way to the ground in its final state (It&#039;s still &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground) we know that there will still be some potential energy due to gravity. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;mgh_i = K_f + mgh_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then isolate &amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt; with some subtraction&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = mg(h_i - h_f)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If we know substitute the numbers that we know into the equation we get that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = .1 \cdot 9.8 \cdot (7 - 4) = 2.94&amp;lt;/math&amp;gt; Joules&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Medium ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In February 2013 a large meteor, whose mass has been estimated to be &amp;lt;math&amp;gt;1.2 \times 10^7 kg&amp;lt;/math&amp;gt;, fell to Earth near Chelyabinsk, Russia. (This meteor exploded spectacularly at height of about &amp;lt;math&amp;gt;30&amp;lt;/math&amp;gt; km, doing significant damage to objects on the ground.) Consider a meteor of the same mass falling toward the Earth. Choose the Earth plus the meteor as the system. As the meteor falls from a distance of &amp;lt;math&amp;gt;1 \times 10^8&amp;lt;/math&amp;gt; m from the center of the Earth to &amp;lt;math&amp;gt;1 \times 10^7&amp;lt;/math&amp;gt; m, what is the change in the kinetic energy of the meteor? The mass of the Earth is about &amp;lt;math&amp;gt;6 \times 10^{24}kg&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Consider how far the meteor is from Earth. Would it be considered an object near the surface of Earth or would we have to use the other model of gravitational potential energy? What is the quantity that we&#039;re solving for?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start with the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Perhaps a better organization of this equation, keeping in mind that we are solving for the &#039;&#039;change&#039;&#039; in kinetic energy would be as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i - K_f = U_f - U_i&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And if we want to put it in terms of changes&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- (K_f - K_i)  = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- \Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can now utilize the fact that we know both the initial and final height of the meteor in relation to the Earth. Since the meteor is not quite near the Earth&#039;s surface, we will use the formula for gravitational potential energy that does not make that assumption.&lt;br /&gt;
&lt;br /&gt;
We know that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which if we substitute in the gravitational potential energy equations would be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -G\frac{m_1 m_2}{r_f} - -G\frac{m_1 m_2}{r_i} = -G\frac{m_1 m_2}{r_f} + G\frac{m_1 m_2}{r_i}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values that we are given in the problem to solve for potential energy.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - 6.67408 \times 10^{-11} \frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^7} + 6.67408 \times 10^{-11}\frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^8} = \Delta U&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then use this value to solve for the change in kinetic energy using our earlier derived equation which says that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;-\Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - \Delta K = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta K = 4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Hard  ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A robot spacecraft lands on an asteroid, picks up a sample, and blasts off to return to the Earth; it&#039;s total mass is &amp;lt;math&amp;gt;1500&amp;lt;/math&amp;gt; kg. When it is &amp;lt;math&amp;gt;200&amp;lt;/math&amp;gt; km from the center of mass of the asteroid, its speed is &amp;lt;math&amp;gt;5.0 \frac{m}{s}&amp;lt;/math&amp;gt;, and the rockets are turned off. At the moment when it has coasted to a distance &amp;lt;math&amp;gt;500&amp;lt;/math&amp;gt; km from the center of the asteroid, its speed has a decreased to &amp;lt;math&amp;gt;4.1&amp;lt;/math&amp;gt; m/s. Calculate the mass of the asteroid. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Do you see any chance of a variable cancelling out once you start working with your algebra? &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Start with the energy principle as always:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We know that the beginning and end of its journey both has kinetic energy as well as potential energy due to the gravitational potential energy between the spaceship and the asteroid. Knowing this, and taking it into account, we can rewrite our energy principle with slightly more specific terms.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}m_{ship}v_i^2 - G\frac{m_{ship} m_{asteroid}}{r_i} = \frac{1}{2}m_{ship}v_f^2 - G\frac{m_{ship} m_{asteroid}}{r_f}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
If we then factor out the &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt; we might see a relation that is helpful.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{ship}(\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i}) = m_{ship}(\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can divide both sides of the equation by &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i} =\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now isolate the &amp;lt;math&amp;gt;m_{asteroid}&amp;lt;/math&amp;gt; with a little bit more algebra.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  G\frac{m_{asteroid}}{r_i} - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  m_{asteroid}(G\frac{1}{r_i} - G\frac{1}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}(v_i^2 - v_f^2)}{G(\frac{1}{r_i} - \frac{1}{r_f})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values given to us in the problem to determine what the mass of the asteroid was.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}((5)^2 -(4.1)^2)}{G(\frac{1}{200} - \frac{1}{500})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which gives us our final answer of:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{asteroid} = 2.04648 \times 10^{13}kg&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Connectedness ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gravitational potential energy can be related to industrial engineering for someone who chooses to work in a manufacturing or aerospace. It is also very important to include when determining the escape velocity and other forces necessary for rockets, probes, and satellites to travel within space. It, also, has some importance in animation and game development as it is an essential part of physics engines and, without a doubt, one of the most obvious interactions visible in society.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
Galileo Galilei and Isaac Newton discovered how forces are related to acceleration. Newton summed up this information with his Laws of Motion. Mechanical energy was discovered by analyzing the equations derived from Newton&#039;s Laws. It was later realized that when two objects interact they exert forces on each other and that work (&amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; ) must be replaced with potential energy in a system of interacting objects within a gravitational field. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Might be interesting to explore spring potential! &lt;br /&gt;
&lt;br /&gt;
http://theory.uwinnipeg.ca/physics/work/node5.html &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== Further reading ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
If you&#039;d like to read a book regarding gravitational potential energy, be sure to check this one out.&lt;br /&gt;
&lt;br /&gt;
[[https://books.google.com/books?id=8p0gaOL802AC&amp;amp;pg=PA123&amp;amp;dq=physics+gravitational+potential&amp;amp;hl=en&amp;amp;sa=X&amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;q=physics gravitational potential&amp;amp;f=false|https://books.google.com/books?id=8p0gaOL802AC&amp;amp;amp;pg=PA123&amp;amp;amp;dq=physics+gravitational+potential&amp;amp;amp;hl=en&amp;amp;amp;sa=X&amp;amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;amp;q=physics%20gravitational%20potential&amp;amp;amp;f=false]] &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== External links ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet resources on this topic:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Simple Explanation: &lt;br /&gt;
&lt;br /&gt;
http://scienceworld.wolfram.com/physics/GravitationalForce.html &lt;br /&gt;
&lt;br /&gt;
Videos: &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=a91DAsbYCo4 &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=8a4D2xqHBF4 &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/circles/Lesson-3/Newton-s-Law-of-Universal-Gravitation &lt;br /&gt;
&lt;br /&gt;
http://matterandinteractions.org/ &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/energy/Lesson-1/Potential-Energy &lt;br /&gt;
&lt;br /&gt;
http://hyperphysics.phy-astr.gsu.edu/hbase/gpot.html &lt;br /&gt;
&lt;br /&gt;
http://weelookang.blogspot.com/2010/10/ejs-open-source-gravity-field-model.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Energy]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46392</id>
		<title>Gravitational Potential Energy</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46392"/>
		<updated>2024-04-24T11:50:31Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Mathematical Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by: Dhruv Saxena (Spring 2023)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Main Idea ==&lt;br /&gt;
&lt;br /&gt;
Gravitational Potential Energy (&amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt;) is the energy stored in an object as a result of its position in a gravitational field and attractive forces from surrounding objects. The general case of gravitational potential energy, when two objects with mass are attracted to each other, depends on the distance between the two and masses of each. The total gravitational energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is inversely proportional to the distance between the two objects with mass. In other words, the closer together together two things are, the greater the magnitude of gravitational potential energy &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be. Additionally, the total gravitational potential energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is directly proportional to the masses of the objects. When the objects are more massive, the magnitude &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be greater.&lt;br /&gt;
&lt;br /&gt;
Gravitational Potential Energy, as implied by the name, is a form of potential energy. Potential energy is energy that is stored in an object due to its position or chemical properties that can be translated into kinetic or thermal energy. In these terms it clarifies how an object in space has gravitational potential energy and as it loses this potential energy while falling to the ground, it gains speed, or kinetic energy.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An important note is also that gravitational potential energy is negative. This results due to the integration determining gravitational potential energy but an intuitive way to understand this is that the negative sign indicates that when masses approach each other in a gravitational field gravity is doing positive work. If that didn&#039;t make sense, remember the idea that kinetic energy is always positive so when &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases if we want to keep &amp;lt;math&amp;gt;E_{total}&amp;lt;/math&amp;gt; the same, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; must be negative.&lt;br /&gt;
&lt;br /&gt;
An important aspect to acknowledge about Gravitational potential energy is that it must be looked at in the difference between two points. An example that showcases this is the difference in gravitational potential energy between a rock on the surface of the earth and a rock in space. While the rock in space has a smaller magnitude of potential energy in comparison to the rock on the surface, the change in energy from space to the ground is greater than the energy the rock on the ground has in respect to ground level. This is why the rock in space will gain speed and energy as it falls through the air towards the ground.&lt;br /&gt;
&lt;br /&gt;
We commonly use gravitational potential energy when we&#039;re trying to determine the work required to life an object with mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; to a height a &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since the gravitational potential energy for objects near the surface of the Earth (As we will derive in the Mathematical Model section) can be represented as &amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt; we can intuitively see that the force due to gravity on an object of mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; would be &amp;lt;math&amp;gt;mg&amp;lt;/math&amp;gt; and the height we&#039;d be lifting it to would be &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since work &amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; we see a parallel idea between &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;W&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Checkout this [https://www.youtube.com/watch?v=z3ujg_CkslI video] for a quick review and explanation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Mathematical Model ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===== General Form for Gravitational Potential Energy:  =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = -G\frac{m_1 m_2}{r}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; is the mass of the first object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt; is the mass of the second object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;r&amp;lt;/math&amp;gt; is the distance between the center of mass &amp;lt;math&amp;gt;cm&amp;lt;/math&amp;gt; of both masses &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt;. (If you don&#039;t know how to find center of mass yet, you can probably assume that its the center of whatever mass you&#039;re using). The standard unit for distance is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;G&amp;lt;/math&amp;gt; is the gravitational constant or &amp;lt;math&amp;gt;6.67408 \times 10^{-11} \frac{m^3}{kg \times s^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
We can make some simplifying approximations (similar to what we did with gravitational force) when we are trying to measure gravitational potential energy due to the Earth near the surface of the Earth.&lt;br /&gt;
&lt;br /&gt;
===== Gravitational Potential Energy near the Earth&#039;s surface: =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; is the mass of the object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; of. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt; is the height above the Earth&#039;s surface that the object is (make sure that it is near the Earth&#039;s surface. A good rule of thumb is that it really shouldn&#039;t be in space :-) ). The standard unit for height is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===== Gravitational Potential Energy Relation to Gravitational Force: =====&lt;br /&gt;
&lt;br /&gt;
* Potential energy is always the integral of the force over the distance the force is applied. &lt;br /&gt;
* We can observe how the gravitational potential energy comes about by looking at the gravitational force&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = \int_{-\infty}^{r} F_g dr&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;Fg = -G\frac{m_1 m_2}{r^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = \int_{-\infty}^{r} -G\frac{m_1 m_2}{r^2} dr = -G\frac{m_1 m_2}{r}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Computational Model ===&lt;br /&gt;
&lt;br /&gt;
In order to understand gravitational potential energy in a computational manner, we must be able to represent it in some way which we can visually understand it. To do this, we will use an energy graph. An &#039;&#039;energy graph&#039;&#039; is a graph which plots potential energy, kinetic energy, and total energy. There are a few easy steps to follow when making an energy graph.&lt;br /&gt;
&lt;br /&gt;
# Draw &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; vs &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; for the interaction (&amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; is the distance the object is from what it&#039;s attracted to)&lt;br /&gt;
# At some distance &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; is known, plot the point &amp;lt;math&amp;gt;(|\vec r|, K)&amp;lt;/math&amp;gt; &lt;br /&gt;
# Add the known value of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; to the value of &amp;lt;math&amp;gt;U&amp;lt;/math&amp;gt; at that same separation &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; &lt;br /&gt;
# Plot the horizontal line &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; across the graph&lt;br /&gt;
# Calculate the rest of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; knowing that &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; = the same constant&lt;br /&gt;
# Plot the values&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Totalenergy.gif|frame|none|alt=|caption ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The above graph shows an example of what an energy versus distance graph may look like. We can see that as the distance increases, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; decreases and &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== VPython Examples ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Suppose that we have a spaceship that is passing close to the Earth. We can computationally model the gravitational potential energy of this spaceship and visually represent it using energy graphs. The basic structure of our program will follow what is usually done for VPython programs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;Pick a delta t&lt;br /&gt;
Initialize our variables&lt;br /&gt;
while our time &amp;amp;lt; time bound do&lt;br /&gt;
	Calculate new values for our variables&lt;br /&gt;
	Update how they are presented&lt;br /&gt;
	increment our time + delta t&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Create/Initialize the Energy Graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;trail = curve(color=craft.color)		#This creates a trail for the spacecraft&lt;br /&gt;
U_graph = gcurve(color=color.blue) 		#A plot of the Potential energy&lt;br /&gt;
K_graph = gcurve(color=color.yellow) 	#A plot of the Kinetic energy&lt;br /&gt;
Energy_graph = gcurve(color=color.green)#A plot of the Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Calculate and Update the variables in our Loop&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;K_craft = 0.5*mcraft*mag2(pcraft/mcraft)	#Kinetic Energy using equation: .5mv^2&lt;br /&gt;
U_craft_Earth = -G*mcraft*mEarth/mag(craft.pos-Earth.pos) #Craft + Earth interaction energy&lt;br /&gt;
E = K_craft + U_craft_Earth		#Approximate Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Update our graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;U_graph.plot(pos=(t,U_craft_Earth))		#Potential energy as a function of time&lt;br /&gt;
K_graph.plot(pos=(t,K_craft))			#Kinetic energy as a function of time&lt;br /&gt;
Energy_graph.plot(pos=(t,E))			#Total energy as a function of time&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here is what a slightly more complex product would like like (this example has the moon&#039;s gravity incident on the spaceship as well):&lt;br /&gt;
&lt;br /&gt;
Click [https://trinket.io/embed/glowscript/370440404c?outputOnly=true here] to see it in action if you can&#039;t see it below.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Simple ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question: &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A ball of mass &amp;lt;math&amp;gt;100&amp;lt;/math&amp;gt; grams is &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; m above the ground, initially at rest (&amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;). When the ball is &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground what is the kinetic energy (&amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt;)? Choose the ball + Earth system.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Try drawing a picture of the situation. What has changed between the ball being at a higher height versus a lower height? Specifically how does this relate to the balance of potential energy and kinetic energy?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start from the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Since the ball starts from rest we know that &amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;. Since the ball is also &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; meters above the ground we know that there will be some potential energy due to gravity. We can use the equation above for an estimate of gravitational potential energy for an object close to the Earth&#039;s surface: &amp;lt;math&amp;gt;mgh&amp;lt;/math&amp;gt;. Therefore, we now know:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;0 + mgh_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;h_i&amp;lt;/math&amp;gt; is the initial height of the ball. Since the ball doesn&#039;t fall all the way to the ground in its final state (It&#039;s still &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground) we know that there will still be some potential energy due to gravity. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;mgh_i = K_f + mgh_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then isolate &amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt; with some subtraction&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = mg(h_i - h_f)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If we know substitute the numbers that we know into the equation we get that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = .1 \cdot 9.8 \cdot (7 - 4) = 2.94&amp;lt;/math&amp;gt; Joules&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Medium ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In February 2013 a large meteor, whose mass has been estimated to be &amp;lt;math&amp;gt;1.2 \times 10^7 kg&amp;lt;/math&amp;gt;, fell to Earth near Chelyabinsk, Russia. (This meteor exploded spectacularly at height of about &amp;lt;math&amp;gt;30&amp;lt;/math&amp;gt; km, doing significant damage to objects on the ground.) Consider a meteor of the same mass falling toward the Earth. Choose the Earth plus the meteor as the system. As the meteor falls from a distance of &amp;lt;math&amp;gt;1 \times 10^8&amp;lt;/math&amp;gt; m from the center of the Earth to &amp;lt;math&amp;gt;1 \times 10^7&amp;lt;/math&amp;gt; m, what is the change in the kinetic energy of the meteor? The mass of the Earth is about &amp;lt;math&amp;gt;6 \times 10^{24}kg&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Consider how far the meteor is from Earth. Would it be considered an object near the surface of Earth or would we have to use the other model of gravitational potential energy? What is the quantity that we&#039;re solving for?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start with the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Perhaps a better organization of this equation, keeping in mind that we are solving for the &#039;&#039;change&#039;&#039; in kinetic energy would be as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i - K_f = U_f - U_i&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And if we want to put it in terms of changes&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- (K_f - K_i)  = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- \Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can now utilize the fact that we know both the initial and final height of the meteor in relation to the Earth. Since the meteor is not quite near the Earth&#039;s surface, we will use the formula for gravitational potential energy that does not make that assumption.&lt;br /&gt;
&lt;br /&gt;
We know that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which if we substitute in the gravitational potential energy equations would be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -G\frac{m_1 m_2}{r_f} - -G\frac{m_1 m_2}{r_i} = -G\frac{m_1 m_2}{r_f} + G\frac{m_1 m_2}{r_i}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values that we are given in the problem to solve for potential energy.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - 6.67408 \times 10^{-11} \frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^7} + 6.67408 \times 10^{-11}\frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^8} = \Delta U&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then use this value to solve for the change in kinetic energy using our earlier derived equation which says that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;-\Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - \Delta K = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta K = 4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Hard  ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A robot spacecraft lands on an asteroid, picks up a sample, and blasts off to return to the Earth; it&#039;s total mass is &amp;lt;math&amp;gt;1500&amp;lt;/math&amp;gt; kg. When it is &amp;lt;math&amp;gt;200&amp;lt;/math&amp;gt; km from the center of mass of the asteroid, its speed is &amp;lt;math&amp;gt;5.0 \frac{m}{s}&amp;lt;/math&amp;gt;, and the rockets are turned off. At the moment when it has coasted to a distance &amp;lt;math&amp;gt;500&amp;lt;/math&amp;gt; km from the center of the asteroid, its speed has a decreased to &amp;lt;math&amp;gt;4.1&amp;lt;/math&amp;gt; m/s. Calculate the mass of the asteroid. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Do you see any chance of a variable cancelling out once you start working with your algebra? &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Start with the energy principle as always:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We know that the beginning and end of its journey both has kinetic energy as well as potential energy due to the gravitational potential energy between the spaceship and the asteroid. Knowing this, and taking it into account, we can rewrite our energy principle with slightly more specific terms.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}m_{ship}v_i^2 - G\frac{m_{ship} m_{asteroid}}{r_i} = \frac{1}{2}m_{ship}v_f^2 - G\frac{m_{ship} m_{asteroid}}{r_f}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
If we then factor out the &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt; we might see a relation that is helpful.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{ship}(\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i}) = m_{ship}(\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can divide both sides of the equation by &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i} =\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now isolate the &amp;lt;math&amp;gt;m_{asteroid}&amp;lt;/math&amp;gt; with a little bit more algebra.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  G\frac{m_{asteroid}}{r_i} - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  m_{asteroid}(G\frac{1}{r_i} - G\frac{1}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}(v_i^2 - v_f^2)}{G(\frac{1}{r_i} - \frac{1}{r_f})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values given to us in the problem to determine what the mass of the asteroid was.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}((5)^2 -(4.1)^2)}{G(\frac{1}{200} - \frac{1}{500})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which gives us our final answer of:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{asteroid} = 2.04648 \times 10^{13}kg&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Connectedness ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gravitational potential energy can be related to industrial engineering for someone who chooses to work in a manufacturing or aerospace. It is also very important to include when determining the escape velocity and other forces necessary for rockets, probes, and satellites to travel within space. It, also, has some importance in animation and game development as it is an essential part of physics engines and, without a doubt, one of the most obvious interactions visible in society.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
Galileo Galilei and Isaac Newton discovered how forces are related to acceleration. Newton summed up this information with his Laws of Motion. Mechanical energy was discovered by analyzing the equations derived from Newton&#039;s Laws. It was later realized that when two objects interact they exert forces on each other and that work (&amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; ) must be replaced with potential energy in a system of interacting objects within a gravitational field. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Might be interesting to explore spring potential! &lt;br /&gt;
&lt;br /&gt;
http://theory.uwinnipeg.ca/physics/work/node5.html &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== Further reading ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
If you&#039;d like to read a book regarding gravitational potential energy, be sure to check this one out.&lt;br /&gt;
&lt;br /&gt;
[[https://books.google.com/books?id=8p0gaOL802AC&amp;amp;pg=PA123&amp;amp;dq=physics+gravitational+potential&amp;amp;hl=en&amp;amp;sa=X&amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;q=physics gravitational potential&amp;amp;f=false|https://books.google.com/books?id=8p0gaOL802AC&amp;amp;amp;pg=PA123&amp;amp;amp;dq=physics+gravitational+potential&amp;amp;amp;hl=en&amp;amp;amp;sa=X&amp;amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;amp;q=physics%20gravitational%20potential&amp;amp;amp;f=false]] &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== External links ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet resources on this topic:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Simple Explanation: &lt;br /&gt;
&lt;br /&gt;
http://scienceworld.wolfram.com/physics/GravitationalForce.html &lt;br /&gt;
&lt;br /&gt;
Videos: &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=a91DAsbYCo4 &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=8a4D2xqHBF4 &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/circles/Lesson-3/Newton-s-Law-of-Universal-Gravitation &lt;br /&gt;
&lt;br /&gt;
http://matterandinteractions.org/ &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/energy/Lesson-1/Potential-Energy &lt;br /&gt;
&lt;br /&gt;
http://hyperphysics.phy-astr.gsu.edu/hbase/gpot.html &lt;br /&gt;
&lt;br /&gt;
http://weelookang.blogspot.com/2010/10/ejs-open-source-gravity-field-model.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Energy]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46391</id>
		<title>Gravitational Potential Energy</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46391"/>
		<updated>2024-04-24T11:41:45Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: /* Main Idea */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by: Dhruv Saxena (Spring 2023)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Main Idea ==&lt;br /&gt;
&lt;br /&gt;
Gravitational Potential Energy (&amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt;) is the energy stored in an object as a result of its position in a gravitational field and attractive forces from surrounding objects. The general case of gravitational potential energy, when two objects with mass are attracted to each other, depends on the distance between the two and masses of each. The total gravitational energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is inversely proportional to the distance between the two objects with mass. In other words, the closer together together two things are, the greater the magnitude of gravitational potential energy &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be. Additionally, the total gravitational potential energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is directly proportional to the masses of the objects. When the objects are more massive, the magnitude &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be greater.&lt;br /&gt;
&lt;br /&gt;
Gravitational Potential Energy, as implied by the name, is a form of potential energy. Potential energy is energy that is stored in an object due to its position or chemical properties that can be translated into kinetic or thermal energy. In these terms it clarifies how an object in space has gravitational potential energy and as it loses this potential energy while falling to the ground, it gains speed, or kinetic energy.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An important note is also that gravitational potential energy is negative. This results due to the integration determining gravitational potential energy but an intuitive way to understand this is that the negative sign indicates that when masses approach each other in a gravitational field gravity is doing positive work. If that didn&#039;t make sense, remember the idea that kinetic energy is always positive so when &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases if we want to keep &amp;lt;math&amp;gt;E_{total}&amp;lt;/math&amp;gt; the same, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; must be negative.&lt;br /&gt;
&lt;br /&gt;
An important aspect to acknowledge about Gravitational potential energy is that it must be looked at in the difference between two points. An example that showcases this is the difference in gravitational potential energy between a rock on the surface of the earth and a rock in space. While the rock in space has a smaller magnitude of potential energy in comparison to the rock on the surface, the change in energy from space to the ground is greater than the energy the rock on the ground has in respect to ground level. This is why the rock in space will gain speed and energy as it falls through the air towards the ground.&lt;br /&gt;
&lt;br /&gt;
We commonly use gravitational potential energy when we&#039;re trying to determine the work required to life an object with mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; to a height a &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since the gravitational potential energy for objects near the surface of the Earth (As we will derive in the Mathematical Model section) can be represented as &amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt; we can intuitively see that the force due to gravity on an object of mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; would be &amp;lt;math&amp;gt;mg&amp;lt;/math&amp;gt; and the height we&#039;d be lifting it to would be &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since work &amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; we see a parallel idea between &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;W&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Checkout this [https://www.youtube.com/watch?v=z3ujg_CkslI video] for a quick review and explanation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Mathematical Model ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===== General Form for Gravitational Potential Energy:  =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = -G\frac{m_1 m_2}{r}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; is the mass of the first object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt; is the mass of the second object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;r&amp;lt;/math&amp;gt; is the distance between the center of mass &amp;lt;math&amp;gt;cm&amp;lt;/math&amp;gt; of both masses &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt;. (If you don&#039;t know how to find center of mass yet, you can probably assume that its the center of whatever mass you&#039;re using). The standard unit for distance is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;G&amp;lt;/math&amp;gt; is the gravitational constant or &amp;lt;math&amp;gt;6.67408 \times 10^{-11} \frac{m^3}{kg \times s^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
We can make some simplifying approximations (similar to what we did with gravitational force) when we are trying to measure gravitational potential energy due to the Earth near the surface of the Earth.&lt;br /&gt;
&lt;br /&gt;
===== Gravitational Potential Energy near the Earth&#039;s surface: =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; is the mass of the object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; of. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt; is the height above the Earth&#039;s surface that the object is (make sure that it is near the Earth&#039;s surface. A good rule of thumb is that it really shouldn&#039;t be in space :-) ). The standard unit for height is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Computational Model ===&lt;br /&gt;
&lt;br /&gt;
In order to understand gravitational potential energy in a computational manner, we must be able to represent it in some way which we can visually understand it. To do this, we will use an energy graph. An &#039;&#039;energy graph&#039;&#039; is a graph which plots potential energy, kinetic energy, and total energy. There are a few easy steps to follow when making an energy graph.&lt;br /&gt;
&lt;br /&gt;
# Draw &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; vs &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; for the interaction (&amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; is the distance the object is from what it&#039;s attracted to)&lt;br /&gt;
# At some distance &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; is known, plot the point &amp;lt;math&amp;gt;(|\vec r|, K)&amp;lt;/math&amp;gt; &lt;br /&gt;
# Add the known value of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; to the value of &amp;lt;math&amp;gt;U&amp;lt;/math&amp;gt; at that same separation &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; &lt;br /&gt;
# Plot the horizontal line &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; across the graph&lt;br /&gt;
# Calculate the rest of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; knowing that &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; = the same constant&lt;br /&gt;
# Plot the values&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Totalenergy.gif|frame|none|alt=|caption ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The above graph shows an example of what an energy versus distance graph may look like. We can see that as the distance increases, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; decreases and &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== VPython Examples ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Suppose that we have a spaceship that is passing close to the Earth. We can computationally model the gravitational potential energy of this spaceship and visually represent it using energy graphs. The basic structure of our program will follow what is usually done for VPython programs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;Pick a delta t&lt;br /&gt;
Initialize our variables&lt;br /&gt;
while our time &amp;amp;lt; time bound do&lt;br /&gt;
	Calculate new values for our variables&lt;br /&gt;
	Update how they are presented&lt;br /&gt;
	increment our time + delta t&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Create/Initialize the Energy Graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;trail = curve(color=craft.color)		#This creates a trail for the spacecraft&lt;br /&gt;
U_graph = gcurve(color=color.blue) 		#A plot of the Potential energy&lt;br /&gt;
K_graph = gcurve(color=color.yellow) 	#A plot of the Kinetic energy&lt;br /&gt;
Energy_graph = gcurve(color=color.green)#A plot of the Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Calculate and Update the variables in our Loop&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;K_craft = 0.5*mcraft*mag2(pcraft/mcraft)	#Kinetic Energy using equation: .5mv^2&lt;br /&gt;
U_craft_Earth = -G*mcraft*mEarth/mag(craft.pos-Earth.pos) #Craft + Earth interaction energy&lt;br /&gt;
E = K_craft + U_craft_Earth		#Approximate Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Update our graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;U_graph.plot(pos=(t,U_craft_Earth))		#Potential energy as a function of time&lt;br /&gt;
K_graph.plot(pos=(t,K_craft))			#Kinetic energy as a function of time&lt;br /&gt;
Energy_graph.plot(pos=(t,E))			#Total energy as a function of time&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here is what a slightly more complex product would like like (this example has the moon&#039;s gravity incident on the spaceship as well):&lt;br /&gt;
&lt;br /&gt;
Click [https://trinket.io/embed/glowscript/370440404c?outputOnly=true here] to see it in action if you can&#039;t see it below.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Simple ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question: &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A ball of mass &amp;lt;math&amp;gt;100&amp;lt;/math&amp;gt; grams is &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; m above the ground, initially at rest (&amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;). When the ball is &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground what is the kinetic energy (&amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt;)? Choose the ball + Earth system.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Try drawing a picture of the situation. What has changed between the ball being at a higher height versus a lower height? Specifically how does this relate to the balance of potential energy and kinetic energy?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start from the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Since the ball starts from rest we know that &amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;. Since the ball is also &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; meters above the ground we know that there will be some potential energy due to gravity. We can use the equation above for an estimate of gravitational potential energy for an object close to the Earth&#039;s surface: &amp;lt;math&amp;gt;mgh&amp;lt;/math&amp;gt;. Therefore, we now know:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;0 + mgh_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;h_i&amp;lt;/math&amp;gt; is the initial height of the ball. Since the ball doesn&#039;t fall all the way to the ground in its final state (It&#039;s still &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground) we know that there will still be some potential energy due to gravity. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;mgh_i = K_f + mgh_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then isolate &amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt; with some subtraction&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = mg(h_i - h_f)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If we know substitute the numbers that we know into the equation we get that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = .1 \cdot 9.8 \cdot (7 - 4) = 2.94&amp;lt;/math&amp;gt; Joules&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Medium ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In February 2013 a large meteor, whose mass has been estimated to be &amp;lt;math&amp;gt;1.2 \times 10^7 kg&amp;lt;/math&amp;gt;, fell to Earth near Chelyabinsk, Russia. (This meteor exploded spectacularly at height of about &amp;lt;math&amp;gt;30&amp;lt;/math&amp;gt; km, doing significant damage to objects on the ground.) Consider a meteor of the same mass falling toward the Earth. Choose the Earth plus the meteor as the system. As the meteor falls from a distance of &amp;lt;math&amp;gt;1 \times 10^8&amp;lt;/math&amp;gt; m from the center of the Earth to &amp;lt;math&amp;gt;1 \times 10^7&amp;lt;/math&amp;gt; m, what is the change in the kinetic energy of the meteor? The mass of the Earth is about &amp;lt;math&amp;gt;6 \times 10^{24}kg&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Consider how far the meteor is from Earth. Would it be considered an object near the surface of Earth or would we have to use the other model of gravitational potential energy? What is the quantity that we&#039;re solving for?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start with the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Perhaps a better organization of this equation, keeping in mind that we are solving for the &#039;&#039;change&#039;&#039; in kinetic energy would be as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i - K_f = U_f - U_i&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And if we want to put it in terms of changes&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- (K_f - K_i)  = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- \Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can now utilize the fact that we know both the initial and final height of the meteor in relation to the Earth. Since the meteor is not quite near the Earth&#039;s surface, we will use the formula for gravitational potential energy that does not make that assumption.&lt;br /&gt;
&lt;br /&gt;
We know that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which if we substitute in the gravitational potential energy equations would be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -G\frac{m_1 m_2}{r_f} - -G\frac{m_1 m_2}{r_i} = -G\frac{m_1 m_2}{r_f} + G\frac{m_1 m_2}{r_i}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values that we are given in the problem to solve for potential energy.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - 6.67408 \times 10^{-11} \frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^7} + 6.67408 \times 10^{-11}\frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^8} = \Delta U&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then use this value to solve for the change in kinetic energy using our earlier derived equation which says that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;-\Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - \Delta K = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta K = 4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Hard  ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A robot spacecraft lands on an asteroid, picks up a sample, and blasts off to return to the Earth; it&#039;s total mass is &amp;lt;math&amp;gt;1500&amp;lt;/math&amp;gt; kg. When it is &amp;lt;math&amp;gt;200&amp;lt;/math&amp;gt; km from the center of mass of the asteroid, its speed is &amp;lt;math&amp;gt;5.0 \frac{m}{s}&amp;lt;/math&amp;gt;, and the rockets are turned off. At the moment when it has coasted to a distance &amp;lt;math&amp;gt;500&amp;lt;/math&amp;gt; km from the center of the asteroid, its speed has a decreased to &amp;lt;math&amp;gt;4.1&amp;lt;/math&amp;gt; m/s. Calculate the mass of the asteroid. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Do you see any chance of a variable cancelling out once you start working with your algebra? &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Start with the energy principle as always:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We know that the beginning and end of its journey both has kinetic energy as well as potential energy due to the gravitational potential energy between the spaceship and the asteroid. Knowing this, and taking it into account, we can rewrite our energy principle with slightly more specific terms.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}m_{ship}v_i^2 - G\frac{m_{ship} m_{asteroid}}{r_i} = \frac{1}{2}m_{ship}v_f^2 - G\frac{m_{ship} m_{asteroid}}{r_f}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
If we then factor out the &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt; we might see a relation that is helpful.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{ship}(\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i}) = m_{ship}(\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can divide both sides of the equation by &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i} =\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now isolate the &amp;lt;math&amp;gt;m_{asteroid}&amp;lt;/math&amp;gt; with a little bit more algebra.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  G\frac{m_{asteroid}}{r_i} - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  m_{asteroid}(G\frac{1}{r_i} - G\frac{1}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}(v_i^2 - v_f^2)}{G(\frac{1}{r_i} - \frac{1}{r_f})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values given to us in the problem to determine what the mass of the asteroid was.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}((5)^2 -(4.1)^2)}{G(\frac{1}{200} - \frac{1}{500})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which gives us our final answer of:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{asteroid} = 2.04648 \times 10^{13}kg&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Connectedness ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gravitational potential energy can be related to industrial engineering for someone who chooses to work in a manufacturing or aerospace. It is also very important to include when determining the escape velocity and other forces necessary for rockets, probes, and satellites to travel within space. It, also, has some importance in animation and game development as it is an essential part of physics engines and, without a doubt, one of the most obvious interactions visible in society.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
Galileo Galilei and Isaac Newton discovered how forces are related to acceleration. Newton summed up this information with his Laws of Motion. Mechanical energy was discovered by analyzing the equations derived from Newton&#039;s Laws. It was later realized that when two objects interact they exert forces on each other and that work (&amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; ) must be replaced with potential energy in a system of interacting objects within a gravitational field. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Might be interesting to explore spring potential! &lt;br /&gt;
&lt;br /&gt;
http://theory.uwinnipeg.ca/physics/work/node5.html &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== Further reading ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
If you&#039;d like to read a book regarding gravitational potential energy, be sure to check this one out.&lt;br /&gt;
&lt;br /&gt;
[[https://books.google.com/books?id=8p0gaOL802AC&amp;amp;pg=PA123&amp;amp;dq=physics+gravitational+potential&amp;amp;hl=en&amp;amp;sa=X&amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;q=physics gravitational potential&amp;amp;f=false|https://books.google.com/books?id=8p0gaOL802AC&amp;amp;amp;pg=PA123&amp;amp;amp;dq=physics+gravitational+potential&amp;amp;amp;hl=en&amp;amp;amp;sa=X&amp;amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;amp;q=physics%20gravitational%20potential&amp;amp;amp;f=false]] &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== External links ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet resources on this topic:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Simple Explanation: &lt;br /&gt;
&lt;br /&gt;
http://scienceworld.wolfram.com/physics/GravitationalForce.html &lt;br /&gt;
&lt;br /&gt;
Videos: &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=a91DAsbYCo4 &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=8a4D2xqHBF4 &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/circles/Lesson-3/Newton-s-Law-of-Universal-Gravitation &lt;br /&gt;
&lt;br /&gt;
http://matterandinteractions.org/ &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/energy/Lesson-1/Potential-Energy &lt;br /&gt;
&lt;br /&gt;
http://hyperphysics.phy-astr.gsu.edu/hbase/gpot.html &lt;br /&gt;
&lt;br /&gt;
http://weelookang.blogspot.com/2010/10/ejs-open-source-gravity-field-model.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Energy]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
	<entry>
		<id>http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46390</id>
		<title>Gravitational Potential Energy</title>
		<link rel="alternate" type="text/html" href="http://www.physicsbook.gatech.edu/index.php?title=Gravitational_Potential_Energy&amp;diff=46390"/>
		<updated>2024-04-24T03:49:39Z</updated>

		<summary type="html">&lt;p&gt;Dsaxena8: Claiming&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Claimed by: Dhruv Saxena (Spring 2023)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Main Idea ==&lt;br /&gt;
&lt;br /&gt;
Gravitational Potential Energy (&amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt;) is the energy stored in an object as a result of its position in a gravitational field and attractive forces from surrounding objects. The general case of gravitational potential energy, when two objects with mass are attracted to each other, depends on the distance between the two and masses of each. The total gravitational energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is inversely proportional to the distance between the two objects with mass. In other words, the closer together together two things are, the greater the magnitude of gravitational potential energy &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be. Additionally, the total gravitational potential energy &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is directly proportional to the masses of the objects. When the objects are more massive, the magnitude &amp;lt;math&amp;gt;|U_{grav}|&amp;lt;/math&amp;gt; will be greater.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An important note is also that gravitational potential energy is negative. This results due to the integration determining gravitational potential energy but an intuitive way to understand this is that the negative sign indicates that when masses approach each other in a gravitational field gravity is doing positive work. If that didn&#039;t make sense, remember the idea that kinetic energy is always positive so when &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases if we want to keep &amp;lt;math&amp;gt;E_{total}&amp;lt;/math&amp;gt; the same, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; must be negative.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We commonly use gravitational potential energy when we&#039;re trying to determine the work required to life an object with mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; to a height a &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since the gravitational potential energy for objects near the surface of the Earth (As we will derive in the Mathematical Model section) can be represented as &amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt; we can intuitively see that the force due to gravity on an object of mass &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; would be &amp;lt;math&amp;gt;mg&amp;lt;/math&amp;gt; and the height we&#039;d be lifting it to would be &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt;. Since work &amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; we see a parallel idea between &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;W&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Checkout this [https://www.youtube.com/watch?v=z3ujg_CkslI video] for a quick review and explanation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Mathematical Model ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
===== General Form for Gravitational Potential Energy:  =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = -G\frac{m_1 m_2}{r}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; is the mass of the first object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt; is the mass of the second object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; between. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;r&amp;lt;/math&amp;gt; is the distance between the center of mass &amp;lt;math&amp;gt;cm&amp;lt;/math&amp;gt; of both masses &amp;lt;math&amp;gt;m_1&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;m_2&amp;lt;/math&amp;gt;. (If you don&#039;t know how to find center of mass yet, you can probably assume that its the center of whatever mass you&#039;re using). The standard unit for distance is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;G&amp;lt;/math&amp;gt; is the gravitational constant or &amp;lt;math&amp;gt;6.67408 \times 10^{-11} \frac{m^3}{kg \times s^2}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
We can make some simplifying approximations (similar to what we did with gravitational force) when we are trying to measure gravitational potential energy due to the Earth near the surface of the Earth.&lt;br /&gt;
&lt;br /&gt;
===== Gravitational Potential Energy near the Earth&#039;s surface: =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;U_{grav} = mgh&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; is the total gravitational potential energy. Like other energy it is measured in Joules (&amp;lt;math&amp;gt;J&amp;lt;/math&amp;gt;).&lt;br /&gt;
* &amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt; is the mass of the object you are measuring &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; of. The standard unit for mass is kilograms (&amp;lt;math&amp;gt;kg&amp;lt;/math&amp;gt;). &lt;br /&gt;
* &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt; is the height above the Earth&#039;s surface that the object is (make sure that it is near the Earth&#039;s surface. A good rule of thumb is that it really shouldn&#039;t be in space :-) ). The standard unit for height is meters (&amp;lt;math&amp;gt;m&amp;lt;/math&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Computational Model ===&lt;br /&gt;
&lt;br /&gt;
In order to understand gravitational potential energy in a computational manner, we must be able to represent it in some way which we can visually understand it. To do this, we will use an energy graph. An &#039;&#039;energy graph&#039;&#039; is a graph which plots potential energy, kinetic energy, and total energy. There are a few easy steps to follow when making an energy graph.&lt;br /&gt;
&lt;br /&gt;
# Draw &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; vs &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; for the interaction (&amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; is the distance the object is from what it&#039;s attracted to)&lt;br /&gt;
# At some distance &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; where &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; is known, plot the point &amp;lt;math&amp;gt;(|\vec r|, K)&amp;lt;/math&amp;gt; &lt;br /&gt;
# Add the known value of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; to the value of &amp;lt;math&amp;gt;U&amp;lt;/math&amp;gt; at that same separation &amp;lt;math&amp;gt;|\vec r|&amp;lt;/math&amp;gt; &lt;br /&gt;
# Plot the horizontal line &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; across the graph&lt;br /&gt;
# Calculate the rest of &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; knowing that &amp;lt;math&amp;gt;K+U&amp;lt;/math&amp;gt; = the same constant&lt;br /&gt;
# Plot the values&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:Totalenergy.gif|frame|none|alt=|caption ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The above graph shows an example of what an energy versus distance graph may look like. We can see that as the distance increases, &amp;lt;math&amp;gt;U_{grav}&amp;lt;/math&amp;gt; decreases and &amp;lt;math&amp;gt;K&amp;lt;/math&amp;gt; increases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== VPython Examples ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Suppose that we have a spaceship that is passing close to the Earth. We can computationally model the gravitational potential energy of this spaceship and visually represent it using energy graphs. The basic structure of our program will follow what is usually done for VPython programs:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;Pick a delta t&lt;br /&gt;
Initialize our variables&lt;br /&gt;
while our time &amp;amp;lt; time bound do&lt;br /&gt;
	Calculate new values for our variables&lt;br /&gt;
	Update how they are presented&lt;br /&gt;
	increment our time + delta t&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Create/Initialize the Energy Graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;trail = curve(color=craft.color)		#This creates a trail for the spacecraft&lt;br /&gt;
U_graph = gcurve(color=color.blue) 		#A plot of the Potential energy&lt;br /&gt;
K_graph = gcurve(color=color.yellow) 	#A plot of the Kinetic energy&lt;br /&gt;
Energy_graph = gcurve(color=color.green)#A plot of the Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Calculate and Update the variables in our Loop&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;K_craft = 0.5*mcraft*mag2(pcraft/mcraft)	#Kinetic Energy using equation: .5mv^2&lt;br /&gt;
U_craft_Earth = -G*mcraft*mEarth/mag(craft.pos-Earth.pos) #Craft + Earth interaction energy&lt;br /&gt;
E = K_craft + U_craft_Earth		#Approximate Total energy&amp;lt;/pre&amp;gt;&lt;br /&gt;
&#039;&#039;Update our graphs&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;pseudocode&amp;quot;&amp;gt;U_graph.plot(pos=(t,U_craft_Earth))		#Potential energy as a function of time&lt;br /&gt;
K_graph.plot(pos=(t,K_craft))			#Kinetic energy as a function of time&lt;br /&gt;
Energy_graph.plot(pos=(t,E))			#Total energy as a function of time&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here is what a slightly more complex product would like like (this example has the moon&#039;s gravity incident on the spaceship as well):&lt;br /&gt;
&lt;br /&gt;
Click [https://trinket.io/embed/glowscript/370440404c?outputOnly=true here] to see it in action if you can&#039;t see it below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Simple ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question: &#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A ball of mass &amp;lt;math&amp;gt;100&amp;lt;/math&amp;gt; grams is &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; m above the ground, initially at rest (&amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;). When the ball is &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground what is the kinetic energy (&amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt;)? Choose the ball + Earth system.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Try drawing a picture of the situation. What has changed between the ball being at a higher height versus a lower height? Specifically how does this relate to the balance of potential energy and kinetic energy?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start from the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Since the ball starts from rest we know that &amp;lt;math&amp;gt;K_i = 0&amp;lt;/math&amp;gt;. Since the ball is also &amp;lt;math&amp;gt;7&amp;lt;/math&amp;gt; meters above the ground we know that there will be some potential energy due to gravity. We can use the equation above for an estimate of gravitational potential energy for an object close to the Earth&#039;s surface: &amp;lt;math&amp;gt;mgh&amp;lt;/math&amp;gt;. Therefore, we now know:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;0 + mgh_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
where &amp;lt;math&amp;gt;h_i&amp;lt;/math&amp;gt; is the initial height of the ball. Since the ball doesn&#039;t fall all the way to the ground in its final state (It&#039;s still &amp;lt;math&amp;gt;4&amp;lt;/math&amp;gt; m above the ground) we know that there will still be some potential energy due to gravity. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;mgh_i = K_f + mgh_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then isolate &amp;lt;math&amp;gt;K_f&amp;lt;/math&amp;gt; with some subtraction&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = mg(h_i - h_f)&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If we know substitute the numbers that we know into the equation we get that&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_f = .1 \cdot 9.8 \cdot (7 - 4) = 2.94&amp;lt;/math&amp;gt; Joules&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Medium ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
In February 2013 a large meteor, whose mass has been estimated to be &amp;lt;math&amp;gt;1.2 \times 10^7 kg&amp;lt;/math&amp;gt;, fell to Earth near Chelyabinsk, Russia. (This meteor exploded spectacularly at height of about &amp;lt;math&amp;gt;30&amp;lt;/math&amp;gt; km, doing significant damage to objects on the ground.) Consider a meteor of the same mass falling toward the Earth. Choose the Earth plus the meteor as the system. As the meteor falls from a distance of &amp;lt;math&amp;gt;1 \times 10^8&amp;lt;/math&amp;gt; m from the center of the Earth to &amp;lt;math&amp;gt;1 \times 10^7&amp;lt;/math&amp;gt; m, what is the change in the kinetic energy of the meteor? The mass of the Earth is about &amp;lt;math&amp;gt;6 \times 10^{24}kg&amp;lt;/math&amp;gt;. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Consider how far the meteor is from Earth. Would it be considered an object near the surface of Earth or would we have to use the other model of gravitational potential energy? What is the quantity that we&#039;re solving for?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Start with the energy principle:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Perhaps a better organization of this equation, keeping in mind that we are solving for the &#039;&#039;change&#039;&#039; in kinetic energy would be as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i - K_f = U_f - U_i&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And if we want to put it in terms of changes&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- (K_f - K_i)  = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;- \Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can now utilize the fact that we know both the initial and final height of the meteor in relation to the Earth. Since the meteor is not quite near the Earth&#039;s surface, we will use the formula for gravitational potential energy that does not make that assumption.&lt;br /&gt;
&lt;br /&gt;
We know that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = U_f - U_i&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which if we substitute in the gravitational potential energy equations would be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -G\frac{m_1 m_2}{r_f} - -G\frac{m_1 m_2}{r_i} = -G\frac{m_1 m_2}{r_f} + G\frac{m_1 m_2}{r_i}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values that we are given in the problem to solve for potential energy.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - 6.67408 \times 10^{-11} \frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^7} + 6.67408 \times 10^{-11}\frac{(6\times 10^{24})(1.2 \times 10^7)}{1\times 10^8} = \Delta U&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta U = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then use this value to solve for the change in kinetic energy using our earlier derived equation which says that:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;-\Delta K = \Delta U&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; - \Delta K = -4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\Delta K = 4.32216 \times 10^{14}J&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Hard  ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Question:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A robot spacecraft lands on an asteroid, picks up a sample, and blasts off to return to the Earth; it&#039;s total mass is &amp;lt;math&amp;gt;1500&amp;lt;/math&amp;gt; kg. When it is &amp;lt;math&amp;gt;200&amp;lt;/math&amp;gt; km from the center of mass of the asteroid, its speed is &amp;lt;math&amp;gt;5.0 \frac{m}{s}&amp;lt;/math&amp;gt;, and the rockets are turned off. At the moment when it has coasted to a distance &amp;lt;math&amp;gt;500&amp;lt;/math&amp;gt; km from the center of the asteroid, its speed has a decreased to &amp;lt;math&amp;gt;4.1&amp;lt;/math&amp;gt; m/s. Calculate the mass of the asteroid. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Hint:&#039;&#039; Do you see any chance of a variable cancelling out once you start working with your algebra? &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solution:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Start with the energy principle as always:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;K_i + U_i = K_f + U_f&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We know that the beginning and end of its journey both has kinetic energy as well as potential energy due to the gravitational potential energy between the spaceship and the asteroid. Knowing this, and taking it into account, we can rewrite our energy principle with slightly more specific terms.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}m_{ship}v_i^2 - G\frac{m_{ship} m_{asteroid}}{r_i} = \frac{1}{2}m_{ship}v_f^2 - G\frac{m_{ship} m_{asteroid}}{r_f}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
If we then factor out the &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt; we might see a relation that is helpful.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{ship}(\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i}) = m_{ship}(\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can divide both sides of the equation by &amp;lt;math&amp;gt;m_{ship}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - G\frac{m_{asteroid}}{r_i} =\frac{1}{2}v_f^2 - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can now isolate the &amp;lt;math&amp;gt;m_{asteroid}&amp;lt;/math&amp;gt; with a little bit more algebra.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  G\frac{m_{asteroid}}{r_i} - G\frac{m_{asteroid}}{r_f}&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\frac{1}{2}v_i^2 - \frac{1}{2}v_f^2 =  m_{asteroid}(G\frac{1}{r_i} - G\frac{1}{r_f})&amp;lt;/math&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}(v_i^2 - v_f^2)}{G(\frac{1}{r_i} - \frac{1}{r_f})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
We can then substitute in the values given to us in the problem to determine what the mass of the asteroid was.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt; m_{asteroid} = \frac{\frac{1}{2}((5)^2 -(4.1)^2)}{G(\frac{1}{200} - \frac{1}{500})}&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Which gives us our final answer of:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;m_{asteroid} = 2.04648 \times 10^{13}kg&amp;lt;/math&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Connectedness ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Gravitational potential energy can be related to industrial engineering for someone who chooses to work in a manufacturing or aerospace. It is also very important to include when determining the escape velocity and other forces necessary for rockets, probes, and satellites to travel within space. It, also, has some importance in animation and game development as it is an essential part of physics engines and, without a doubt, one of the most obvious interactions visible in society.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
Galileo Galilei and Isaac Newton discovered how forces are related to acceleration. Newton summed up this information with his Laws of Motion. Mechanical energy was discovered by analyzing the equations derived from Newton&#039;s Laws. It was later realized that when two objects interact they exert forces on each other and that work (&amp;lt;math&amp;gt;W = \vec F \cdot \vec d&amp;lt;/math&amp;gt; ) must be replaced with potential energy in a system of interacting objects within a gravitational field. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Might be interesting to explore spring potential! &lt;br /&gt;
&lt;br /&gt;
http://theory.uwinnipeg.ca/physics/work/node5.html &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== Further reading ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
If you&#039;d like to read a book regarding gravitational potential energy, be sure to check this one out.&lt;br /&gt;
&lt;br /&gt;
[[https://books.google.com/books?id=8p0gaOL802AC&amp;amp;pg=PA123&amp;amp;dq=physics+gravitational+potential&amp;amp;hl=en&amp;amp;sa=X&amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;q=physics gravitational potential&amp;amp;f=false|https://books.google.com/books?id=8p0gaOL802AC&amp;amp;amp;pg=PA123&amp;amp;amp;dq=physics+gravitational+potential&amp;amp;amp;hl=en&amp;amp;amp;sa=X&amp;amp;amp;ved=0CB0Q6AEwAGoVChMIkKHT0NadyQIVBtgeCh2y8Qrm#v=onepage&amp;amp;amp;q=physics%20gravitational%20potential&amp;amp;amp;f=false]] &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
=== External links ===&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Internet resources on this topic:&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Simple Explanation: &lt;br /&gt;
&lt;br /&gt;
http://scienceworld.wolfram.com/physics/GravitationalForce.html &lt;br /&gt;
&lt;br /&gt;
Videos: &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=a91DAsbYCo4 &lt;br /&gt;
&lt;br /&gt;
https://www.youtube.com/watch?v=8a4D2xqHBF4 &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/circles/Lesson-3/Newton-s-Law-of-Universal-Gravitation &lt;br /&gt;
&lt;br /&gt;
http://matterandinteractions.org/ &lt;br /&gt;
&lt;br /&gt;
http://www.physicsclassroom.com/class/energy/Lesson-1/Potential-Energy &lt;br /&gt;
&lt;br /&gt;
http://hyperphysics.phy-astr.gsu.edu/hbase/gpot.html &lt;br /&gt;
&lt;br /&gt;
http://weelookang.blogspot.com/2010/10/ejs-open-source-gravity-field-model.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Energy]]&lt;/div&gt;</summary>
		<author><name>Dsaxena8</name></author>
	</entry>
</feed>