Textbook circuit diagrams often treat wires as perfect conductors and power supplies as infinite sources. On the workbench or in the field, this abstraction leads to undersized components, tripped breakers, and failed exams. To understand how theory maps to reality, we need a practical example of electric current calculation that accounts for parasitic resistances. This walkthrough dissects a DC motor startup circuit, revealing the algebraic steps, the common traps, and the verification methods used by practicing engineers.

The Core Problem: Calculating Real-World Electric Current

Exam Problem Statement

A 24V nominal DC power supply with an internal resistance of 0.20Ω is used to drive a small industrial DC motor. The motor is connected via a total loop length of 80 feet (40 feet out, 40 feet return) of 14 AWG solid copper wire. During a stalled-rotor startup condition, the motor presents a purely resistive load of 1.50Ω. Assuming an ambient temperature of 20°C, calculate the exact startup electric current flowing through the circuit.

Before touching the algebra, you must identify the physical properties of the conductors. In any real-world example of electric current flowing through a distributed system, the wire itself acts as a resistor. Below is the reference data for copper conductor resistance based on NEC Chapter 9, Table 8 standards.

AWG Size Area (Circular Mils) Resistance (Ω/1000 ft) at 20°C Resistance (Ω/1000 ft) at 75°C
16 AWG 2,580 4.016 4.903
14 AWG 4,110 2.525 3.075
12 AWG 6,530 1.588 1.934
10 AWG 10,380 0.9989 1.218
Information Gain: Notice the jump from 20°C to 75°C. Copper's resistance increases by approximately 0.393% per degree Celsius. If this motor were in a hot enclosure running at 75°C, your 14 AWG wire resistance would jump from 2.525 Ω/kft to 3.075 Ω/kft, fundamentally altering your current calculation. Always check the temperature column of your reference table.

Step-by-Step Algebraic Solution & Method Selection

To solve this, we apply Ohm's Law combined with Kirchhoff's Voltage Law (KVL). Because this is a single-loop series circuit, KVL dictates that the sum of the voltage drops across all resistive elements must equal the source voltage. The method applies here because there are no parallel branches or complex nodes requiring nodal analysis.

Step 1: Calculate the Wire Resistance ($R_{wire}$)

Using the 14 AWG value from the 20°C column in our table above:

  • Base resistance = 2.525 Ω per 1,000 feet.
  • Total loop length ($L$) = 80 feet.

$$R_{wire} = \left( \frac{80 \text{ ft}}{1000 \text{ ft}} \right) \times 2.525 \, \Omega$$

$$R_{wire} = 0.08 \times 2.525 \, \Omega$$

$$R_{wire} = 0.202 \, \Omega$$

Step 2: Sum the Total Series Resistance ($R_{total}$)

The circuit contains three distinct resistances in series: the power supply's internal resistance, the wire resistance, and the motor's stalled resistance.

$$R_{total} = R_{psu} + R_{wire} + R_{motor}$$

$$R_{total} = 0.20 \, \Omega + 0.202 \, \Omega + 1.50 \, \Omega$$

$$R_{total} = 1.902 \, \Omega$$

Step 3: Calculate the Electric Current ($I$)

Now, apply Ohm's Law ($I = V / R$) using the nominal source voltage and the total calculated resistance.

$$I = \frac{V_{source}}{R_{total}}$$

$$I = \frac{24 \text{ V}}{1.902 \, \Omega}$$

$$I = 12.61829... \text{ A}$$

Rounding to three significant figures based on our input data, the startup current is 12.6 A.

Sanity Checks, Verification, and Common Exam Traps

Getting the number is only half the job. Engineering requires verifying that the number makes physical sense.

The Sanity Check (Order of Magnitude & Units)

Before calculating the exact decimal, look at the raw numbers. You have roughly 24 Volts and roughly 2 Ohms (1.5 + a little bit). 24 divided by 2 is 12. Therefore, an answer in the 12 to 13 Ampere range is the correct order of magnitude. If you had accidentally calculated 126 A or 1.26 A, you would immediately know a decimal error occurred. Unit analysis confirms: Volts divided by Ohms yields Amperes ($V / \Omega = A$).

The Trap in This Problem

The most common mistake students make on this specific exam question is treating the wires and power supply as ideal. They see 24V and 1.5Ω, and they immediately calculate $24 / 1.5 = 16 \text{ A}$. This 16A answer is dangerously wrong. It overestimates the current by nearly 27%. In a real-world scenario, sizing a fuse or breaker based on the 'ideal' 16A calculation when the actual current is 12.6A might seem safe, but if the motor runs and heats the wire to 75°C, the wire resistance increases, the current drops further, and the motor may fail to start under load due to excessive voltage drop across the wires.

How to Verify the Answer Independently

If you were building this on a bench, you would verify the calculation using a DC clamp meter or a shunt resistor. Place a calibrated digital multimeter in series with the circuit, or clamp a Hall-effect DC meter around the positive 14 AWG conductor. Physically lock the motor rotor to simulate the stalled condition, apply power for less than one second (to prevent thermal damage to the 14 AWG wire, which is only rated for 15A-20A continuous depending on insulation), and record the peak inrush reading. It should read approximately 12.6 A. Alternatively, model the circuit in LTspice using a 24V DC source, a 0.2Ω series resistor, a 0.202Ω series resistor, and a 1.5Ω load resistor; the transient simulation will confirm the 12.618 A steady-state DC current.

FAQ: Electric Current Calculation Edge Cases

What if the power supply is current-limited?

If the 24V power supply has a built-in overcurrent protection limit set to 10A, our calculated 12.6A demand will cause the supply to drop out of constant-voltage mode and enter constant-current mode. The actual current will be clamped at exactly 10.0A, and the output voltage at the supply terminals will droop to $V = I \times R_{load+wire} = 10 \text{ A} \times 1.702 \, \Omega = 17.02 \text{ V}$. Always check the power supply's datasheet for current limiting behavior before trusting a raw Ohm's Law calculation.

Does the type of current (AC vs DC) change this calculation?

Yes, fundamentally. This example of electric current relies on pure resistance ($R$). If this were an AC circuit powering an inductive motor, we would have to calculate impedance ($Z$), factoring in inductive reactance ($X_L = 2\pi fL$) and the resulting power factor. In AC, the wire also suffers from the skin effect and proximity effect, which effectively increases the AC resistance above the DC values listed in the NEC table.

Why use 80 feet of wire for a 40-foot run?

Current must flow from the source to the load and return to the source to complete the circuit. A physical distance of 40 feet requires 40 feet of positive conductor and 40 feet of negative/return conductor. The total loop length the current travels through is 80 feet. Forgetting to double the physical run length is the second most common trap in voltage drop and current calculations.