The Core Physics Magnetism Equations: Force on a Conductor
When you are designing a voice coil actuator, sizing busbar bracing for a high-amp switchgear, or just trying to understand why your stepper motor stalls, you are ultimately dealing with the Lorentz force. While the full vector calculus form of the physics magnetism equations can look intimidating on a whiteboard, the practical scalar form for a straight current-carrying wire is straightforward and highly actionable on the workbench.
The foundational equation for the magnetic force exerted on a straight conductor in a uniform magnetic field is:
F = I × L × B × sin(θ)
Symbol Definition and SI Units
| Symbol | Parameter | SI Unit | Practical Notes |
|---|---|---|---|
| F | Magnetic Force | Newtons (N) | 1 N ≈ 0.225 lbs of force. Direction is given by the right-hand rule. |
| I | Current | Amperes (A) | Conventional current flow (positive to negative). Use RMS for AC heating, but peak for peak force. |
| L | Length of Conductor | Meters (m) | Only the length of the wire actually immersed inside the magnetic field counts. |
| B | Magnetic Flux Density | Tesla (T) | 1 T = 10,000 Gauss. Neodymium magnets typically range from 0.5 T to 1.2 T at the surface. |
| θ | Angle | Degrees or Radians | The angle between the current vector and the magnetic field vector. Max force at 90°. |
Assumptions and Boundary Conditions
This scalar formulation applies cleanly under specific assumptions. First, it assumes a uniform magnetic field across the entire length L. If the field diverges (like near the edges of a permanent magnet), you must integrate the force over infinitesimal segments (dF = I dL × B). Second, it assumes a straight wire segment. For curved wires, like the circular loops in a motor armature, the net force on a closed loop in a uniform field is zero, though the net torque is not. Finally, for AC circuits, this equation calculates the instantaneous force; because current alternates, the force will pulsate at twice the line frequency (e.g., 120 Hz on a 60 Hz grid), which is exactly what causes the 120 Hz mechanical hum in poorly laminated transformers.
Realistic Answer Magnitudes
What should your calculator output look like? If you are calculating the force on a 1-meter wire carrying 10 A in the Earth's magnetic field (~50 μT), your answer will be around 0.0005 N (half a milli-Newton)—essentially unmeasurable without a torsion balance. However, if that same 1-meter wire is inside a 1.5 T MRI bore, the force jumps to 15 N (about 3.3 lbs). In industrial switchgear, a 50 kA fault current through a 0.5-meter busbar in the proximity of a parallel return busbar generating 0.1 T yields a massive 2,500 N (560 lbs) of repulsive force, which is why busbar insulators require heavy steel bracing.
Rearranged Forms: Solving for Current, Length, and Field Strength
On the bench, you rarely just solve for force. Usually, you have a target force for an actuator and need to spec the magnet or the wire gauge. Here are the algebraically rearranged forms of the core physics magnetism equations:
- Solving for Current (I): I = F / (L × B × sinθ)
Use this to size your power supply or motor driver when you know the required mechanical output force and your magnet geometry. - Solving for Length (L): L = F / (I × B × sinθ)
Use this when winding a voice coil. If your current is limited by thermal constraints (I²R heating), you must add more turns (increasing L) to achieve the target force. - Solving for Magnetic Field (B): B = F / (I × L × sinθ)
Use this to select a permanent magnet grade (e.g., N42 vs N52 Neodymium) or to design the field winding of an electromagnet. - Solving for Angle (θ): θ = arcsin(F / (I × L × B))
Useful for calculating the angular misalignment tolerance in a linear actuator before force drops below your minimum threshold.
Worked Examples with Strict Unit Tracking
Let's run through two practical scenarios. Tracking units through the calculation is the best way to catch magnitude errors before you order the wrong components.
Problem 1: Sizing a Voice Coil Actuator
Scenario: You are building a custom haptic feedback motor. You have a neodymium ring magnet that provides a radial magnetic flux density of 0.85 T in the air gap. Your coil former has a diameter of 20 mm, and you wind 40 turns of 28 AWG magnet wire onto it. The driver pushes 1.5 A of peak current. What is the peak linear force generated?
Step 1: Identify and convert variables to base SI units.
- B = 0.85 T
- I = 1.5 A
- θ = 90° (radial field is perpendicular to axial coil wires), so sin(90°) = 1.
- L = Total length of wire in the field. Circumference = π × diameter = π × 0.020 m = 0.06283 m per turn. Total L = 40 turns × 0.06283 m/turn = 2.513 m.
Step 2: Apply the formula with units.
- F = 1.5 A × 2.513 m × 0.85 T × 1
- F = 3.204 (A · m · T)
Step 3: Verify unit equivalence.
Since 1 Tesla = 1 Newton / (Ampere · meter), the units (A · m · T) collapse perfectly into Newtons.
Answer: F = 3.20 N (roughly 0.72 lbs of peak thrust).
Problem 2: Busbar Bracing During a Short Circuit
Scenario: A 40 kA (40,000 A) asymmetrical fault occurs in a DC distribution panel. Two parallel copper busbars, separated by 100 mm, run for 1.2 meters before entering a breaker. The magnetic field generated by one busbar at the location of the other is approximately 0.08 T. Calculate the repulsive force the insulators must withstand.
Step 1: Identify variables.
- I = 40,000 A
- L = 1.2 m
- B = 0.08 T
- θ = 90° (parallel wires have perpendicular cross-fields), sin(90°) = 1.
Step 2: Apply the formula.
- F = 40,000 A × 1.2 m × 0.08 T × 1
- F = 48,000 × 0.08
- F = 3,840 N
Answer: 3,840 N (approx. 863 lbs). If the insulator standoffs are rated for only 2,000 N of cantilever force, they will shatter during a fault, causing a secondary phase-to-phase arc flash. You must upgrade to steel-reinforced epoxy insulators.
Common Unit Mistakes That Break Magnetism Calculations
When your simulation or physical prototype fails to match your math, 90% of the time it is a unit conversion failure. Here are the specific mistakes that break these physics magnetism equations:
- Gauss vs. Tesla Confusion: Datasheets for cheap ferrite and alnico magnets often list flux density in Gauss (G). The SI equation requires Tesla (T). Remember that 1 T = 10,000 G. If you plug '800' into the B variable for an 800 G ferrite magnet, your force calculation will be off by a factor of 10,000. Convert it to 0.08 T first.
- Centimeters in the Length Variable: The L variable must be in meters. If you measure a 15 cm voice coil and plug in '15', your force will be 100 times higher than reality. Always divide cm by 100 before calculating.
- Degrees vs. Radians in Code: If you are writing a Python script or Arduino C++ function to calculate force dynamically based on rotor angle, math libraries (like
math.sin()in Python orsin()in C++) expect radians. If you feed it 90 degrees, it calculates the sine of 90 radians (which is ~0.89), not 1.0. Always convert degrees to radians (radians = degrees * (PI / 180)) before passing them to the trigonometric function. - Peak vs. RMS Current in AC Systems: If you are calculating the maximum mechanical stress on an AC busbar, you must use the peak current (I_peak = I_rms × √2), not the RMS current. RMS is for thermal heating calculations; peak is for instantaneous magnetic force.
Frequently Asked Questions About Physics Magnetism Equations
How do physics magnetism equations apply to AC motors and generators?
In AC motors (like induction or synchronous machines), the fundamental equation F = ILB sinθ still governs the force on the rotor bars or windings. However, because the stator generates a rotating magnetic field, the angle θ and the field B are constantly changing with respect to time and rotor position. Instead of calculating a single linear force, engineers integrate this force over the radius of the rotor to calculate torque (τ = F × r). Furthermore, in generators, the related physics magnetism equation for Faraday's Law of Induction (EMF = -N(dΦ/dt)) takes precedence, as the physical motion through the magnetic field induces the voltage that drives the current.
Why do physics magnetism equations use the cross product instead of simple multiplication?
The vector form of the equation is F = I(L × B). The cross product is mathematically necessary because magnetic force is inherently orthogonal—it acts at a right angle to both the direction of current flow and the direction of the magnetic field. Simple scalar multiplication only works when you manually isolate the perpendicular components using sinθ. If the current flows perfectly parallel to the magnetic field lines (θ = 0°), the cross product evaluates to zero, meaning no force is generated, which aligns with physical reality. You cannot push a wire along its own axis using a magnetic field aligned with that same axis.
What is the difference between magnetic flux and magnetic force equations?
These are two distinct concepts that beginners frequently conflate. Magnetic force (F = ILB sinθ) describes the physical, mechanical push or pull on a moving charge or current-carrying wire, measured in Newtons. Magnetic flux (Φ = B · A · cosθ), measured in Webers (Wb), describes the total 'amount' of magnetic field passing through a given 2D surface area. Think of flux as the total volume of water flowing through a hoop, while force is the physical pressure that water exerts if it hits a paddle. You need flux equations to design transformer cores (to avoid saturation), and you need force equations to design the physical mounts for those transformers so they don't vibrate apart.






