Faraday's Law: Foundation of Electric Machine Operation

Introduction

If you’re designing, commissioning, or troubleshooting electric machines—whether motors, generators, or transformers—you’re working directly with Faraday’s Law of Electromagnetic Induction. This fundamental principle, discovered by Michael Faraday in 1831, explains how changing magnetic fields generate voltages, forming the basis of all rotating electrical machines and power conversion equipment.

Understanding Faraday’s Law isn’t just academic—it’s essential for practical engineering decisions. Poor grasp of induced voltages leads to miscalculated back-EMF in motors, inadequate transformer design, incorrect velocity constant (Kv) calculations in servo systems, and misdiagnosed regeneration issues in drives. Whether you’re sizing a generator, tuning a servo drive’s velocity loop, or diagnosing overvoltage trips during deceleration, Faraday’s Law governs the behavior.

In this post, you’ll learn the theoretical foundation of electromagnetic induction, the mathematical formulation (including Lenz’s Law), visual representations of flux linkage and induced EMF, and practical applications in motors, generators, transformers, and modern drive systems. We’ll also cover real-world scenarios like back-EMF calculation for servo sizing and regenerative braking design.

Theory

Faraday’s Law Statement: Faraday’s Law of Electromagnetic Induction states that a changing magnetic flux through a conducting loop induces an electromotive force (EMF) in that loop. The magnitude of the induced EMF is directly proportional to the rate of change of magnetic flux linkage through the circuit.

Lenz’s Law: The direction of the induced EMF (and resulting current if the circuit is closed) is such that it opposes the change in magnetic flux that produced it. This is a consequence of energy conservation—the induced current creates a magnetic field that resists the flux change, requiring mechanical work to maintain motion in generators or electrical work to overcome back-EMF in motors.

Key Concepts:

  • Magnetic Flux (Φ): The total magnetic field passing through a surface area, measured in Webers (Wb). For a uniform field: Φ = B · A · cos(θ), where B is magnetic flux density (Tesla), A is area (m²), and θ is the angle between field and surface normal.

  • Flux Linkage (λ): For a coil with N turns, flux linkage is λ = N · Φ (Weber-turns). This accounts for the fact that each turn of the coil links with the same flux, multiplying the induced voltage.

  • Electromotive Force (EMF): The voltage induced in a conductor or coil due to changing flux linkage. It’s the “pressure” that drives current if the circuit is closed, measured in Volts (V).

Key Tradeoffs in Machine Design:

  • Number of Turns vs. Current Capacity: Increasing turns (N) increases induced voltage per unit flux change, but reduces conductor cross-sectional area for a given slot fill, limiting current capacity and torque per ampere.

  • Flux Density vs. Saturation: Higher flux density (B) increases voltage and torque density but risks magnetic saturation in iron cores, causing nonlinear behavior, increased losses, and reduced efficiency.

  • Speed vs. Voltage: In motors and generators, induced voltage is proportional to speed (ω). Higher speed operation increases back-EMF, requiring higher DC bus voltage or limiting maximum speed (as in servo motors with fixed DC bus).

  • Air Gap Size: Smaller air gaps increase flux linkage and machine efficiency but increase manufacturing precision requirements and risk of rotor-stator contact. Larger gaps reduce forces but require more magnetomotive force (MMF), increasing losses.

Math

The fundamental equation of Faraday’s Law in differential form is:

ε=dλdt=NdΦdt\varepsilon = -\frac{d\lambda}{dt} = -N\frac{d\Phi}{dt}

Where:

  • ε\varepsilon = induced EMF (V)
  • λ\lambda = flux linkage (Wb-turns)
  • NN = number of turns in the coil
  • Φ\Phi = magnetic flux (Wb)
  • The negative sign represents Lenz’s Law (opposition to flux change)

For rotating machines, where flux varies sinusoidally with rotor position:

Φ(t)=Φmaxcos(ωt)\Phi(t) = \Phi_{\text{max}} \cos(\omega t)

Taking the time derivative:

ε(t)=NdΦdt=NΦmaxωsin(ωt)\varepsilon(t) = -N\frac{d\Phi}{dt} = N\Phi_{\text{max}}\omega\sin(\omega t)

The peak induced voltage is:

εpeak=NΦmaxω=kEω\varepsilon_{\text{peak}} = N\Phi_{\text{max}}\omega = k_E \omega

Where kE=NΦmaxk_E = N\Phi_{\text{max}} is the voltage constant (back-EMF constant) in V/(rad/s).

For servo motors, the back-EMF in line-to-line voltage (RMS) at mechanical speed nn (RPM) is:

Vback-EMF=kE2πn602=kEnV_{\text{back-EMF}} = \frac{k_E \cdot 2\pi n}{60\sqrt{2}} = k_E' \cdot n

Where kEk_E' is the back-EMF constant in V/kRPM (line-to-line RMS).

Transformer equation: For a transformer with primary turns N1N_1, secondary turns N2N_2, and time-varying flux Φ(t)\Phi(t):

V1V2=N1N2\frac{V_1}{V_2} = \frac{N_1}{N_2}

This ratio holds because the same flux links both windings, so:

V1=N1dΦdt,V2=N2dΦdtV_1 = N_1\frac{d\Phi}{dt}, \quad V_2 = N_2\frac{d\Phi}{dt}

Energy Conversion: The instantaneous electrical power converted to mechanical power (or vice versa) is:

Pmech=εi=kEωi=τωP_{\text{mech}} = \varepsilon \cdot i = k_E \omega \cdot i = \tau \cdot \omega

This shows that the torque constant kTk_T and voltage constant kEk_E are numerically equal (in SI units):

kT=kEk_T = k_E

This fundamental relationship ties electromagnetic induction directly to torque production.

Flow Diagrams

graph TD
    A[Changing Magnetic Flux] --> B[Induced EMF via Faraday's Law]
    B --> C{Is Circuit Closed?}
    C --> D[YES: Induced Current Flows]
    C --> E[NO: Voltage Present but No Current]
    D --> F[Lenz's Law: Current Creates Opposing Flux]
    F --> G[Mechanical Work Required or Electrical Power Consumed]
    
    H[Rotating Machine] --> I[Rotor Motion]
    I --> J[Time-Varying Flux Linkage]
    J --> A
    
    K[Transformer] --> L[AC Voltage Applied]
    L --> M[Time-Varying Current]
    M --> N[Time-Varying Flux in Core]
    N --> A

Back-EMF in Motor Speed Control:

graph LR
    A[DC Bus Voltage Vdc] --> B[Inverter PWM]
    B --> C[Applied Voltage V_applied]
    C --> D[Motor Winding]
    D --> E[Current i]
    
    F[Rotor Speed ω] --> G[Back-EMF via Faraday's Law: ε = kE·ω]
    G --> H[Back-EMF Opposes Applied Voltage]
    H --> D
    
    I[Net Voltage: V_net = V_applied - ε] --> D
    
    J[Speed Increase] --> K[Higher Back-EMF]
    K --> G
    L[ε approaches Vdc] --> M[Current Limiting - Max Speed Reached]

Generator-Rectifier System:

sequenceDiagram
    participant Prime Mover
    participant Generator
    participant Rectifier
    participant DC Load
    
    Prime Mover->>Generator: Mechanical Rotation (ω)
    Generator->>Generator: Flux Change (dΦ/dt)
    Generator->>Generator: Induced EMF (ε = kE·ω)
    Generator->>Rectifier: AC Voltage Output
    Rectifier->>DC Load: Rectified DC Voltage
    DC Load->>Rectifier: Load Current Drawn
    Rectifier->>Generator: AC Current (Lags Voltage)
    Generator->>Prime Mover: Reaction Torque (τ = kT·i)
    Note over Prime Mover,DC Load: Power Flow: Mechanical → Electrical → DC

Real Scenario Use

Scenario: Servo Motor Sizing for a CNC Machine Axis

You’re sizing a servo motor for a CNC machine’s X-axis that requires:

  • Maximum linear speed: 10 m/s
  • Lead screw pitch: 10 mm (0.01 m)
  • Maximum motor speed: nmax=10 m/s0.01 m=1000 rev/s=60,000 RPMn_{\text{max}} = \frac{10 \text{ m/s}}{0.01 \text{ m}} = 1000 \text{ rev/s} = 60,000 \text{ RPM}

You’re evaluating a servo motor with specifications:

  • Back-EMF constant: kE=50 V/kRPMk_E' = 50 \text{ V/kRPM} (line-to-line RMS)
  • Available DC bus voltage: Vdc=560 VV_{\text{dc}} = 560 \text{ V}

Step 1: Calculate Back-EMF at Maximum Speed

At 60,000 RPM:

Vback-EMF=50VkRPM×60 kRPM=3000 VV_{\text{back-EMF}} = 50 \frac{\text{V}}{\text{kRPM}} \times 60 \text{ kRPM} = 3000 \text{ V}

This exceeds the DC bus voltage by a factor of 5.4! The motor cannot reach the required speed.

Step 2: Calculate Maximum Achievable Speed

For a safety margin, the back-EMF should not exceed 90% of DC bus voltage:

Vback-EMF,max=0.9×560=504 VV_{\text{back-EMF,max}} = 0.9 \times 560 = 504 \text{ V}

Maximum speed:

nmax=504 V50 V/kRPM=10.08 kRPM=10,080 RPMn_{\text{max}} = \frac{504 \text{ V}}{50 \text{ V/kRPM}} = 10.08 \text{ kRPM} = 10,080 \text{ RPM}

This is only 17% of the required speed—clearly inadequate.

Step 3: Design Solutions

Option A: Higher DC bus voltage

  • Use 800 V DC bus: nmax=0.9×80050=14.4 kRPMn_{\text{max}} = \frac{0.9 \times 800}{50} = 14.4 \text{ kRPM} (still insufficient)

Option B: Lower back-EMF constant motor

  • Required kEk_E': kE=0.9×56060=8.4 V/kRPMk_E' = \frac{0.9 \times 560}{60} = 8.4 \text{ V/kRPM}
  • This requires a motor with fewer turns or weaker magnets

Option C: Gearing

  • Use 6:1 reduction: Motor runs at 60,000/6=10,000 RPM60,000 / 6 = 10,000 \text{ RPM}
  • Back-EMF: 50×10=500 V50 \times 10 = 500 \text{ V} ✓ (within limit)
  • Tradeoff: Reduced acceleration, added inertia and backlash

Step 4: Verification with Selected Motor

You select a motor with kE=8.5 V/kRPMk_E' = 8.5 \text{ V/kRPM} and verify:

  • At 60 kRPM: Vback-EMF=8.5×60=510 VV_{\text{back-EMF}} = 8.5 \times 60 = 510 \text{ V}
  • Margin: 510560=91%\frac{510}{560} = 91\% ✓ (acceptable)
  • Regeneration headroom: 9% available for deceleration energy absorption

Common Pitfalls:

  1. Ignoring regeneration: During rapid deceleration, the motor acts as a generator. If back-EMF is already at 95% of DC bus, regenerative current has nowhere to go, causing overvoltage trips. Always leave 10-15% margin.

  2. Wrong EMF constant units: Datasheets may list kEk_E in V/(rad/s), V/kRPM (line-to-line), or V/kRPM (line-to-neutral). Always verify units and convert correctly.

  3. Neglecting resistive drop: At high currents, Vapplied=Vback-EMF+iR+LdidtV_{\text{applied}} = V_{\text{back-EMF}} + i \cdot R + L \frac{di}{dt}. The resistive drop reduces available voltage for back-EMF, further limiting speed.

References

  1. Fitzgerald, A. E., Kingsley, C., & Umans, S. D. (2003). Electric Machinery (6th ed.). McGraw-Hill. Chapter 3: “Electromagnetic Induction and Faraday’s Law”.

  2. Mohan, N., & Undeland, T. M. (2007). Power Electronics: Converters, Applications, and Design (3rd ed.). Wiley. Chapter 2: “Basic Electrical Machines and Rotating Machine Fundamentals”.

  3. IEC 60034-1:2017 - Rotating electrical machines - Part 1: Rating and performance. Section 7.2: “Voltage constant and back-EMF”.

  4. Texas Instruments Application Note: “Sensorless Field Oriented Control of 3-Phase Permanent Magnet Synchronous Motors” (SPRABQ3). Section 2.1: “Back-EMF and Position Estimation”.

  5. Leonhard, W. (2001). Control of Electrical Drives (3rd ed.). Springer. Chapter 2: “Fundamentals of Electrical Machines”.

  6. IEEE Std 115-2019 - IEEE Guide for Test Procedures for Synchronous Machines. Section 6.3.4: “Measurement of voltage regulation and back-EMF constant”.

  7. Bose, B. K. (2002). Modern Power Electronics and AC Drives. Prentice Hall. Chapter 3: “Electrical Machine Fundamentals and EMF Equations”.

Videos

Summary

  • Faraday’s Law states that induced EMF is proportional to the rate of change of magnetic flux linkage: ε=NdΦdt\varepsilon = -N\frac{d\Phi}{dt}
  • Lenz’s Law (negative sign) means induced EMF opposes the flux change, requiring work input for generators or limiting current in motors
  • Back-EMF in motors increases linearly with speed (ε=kEω\varepsilon = k_E \omega), limiting maximum speed to where back-EMF approaches DC bus voltage
  • Voltage constant kEk_E and torque constant kTk_T are numerically equal in SI units, linking electromagnetic induction directly to torque production
  • Always leave 10-15% voltage margin for regeneration to prevent DC bus overvoltage trips during deceleration
  • Servo motor sizing must account for back-EMF at maximum speed: inadequate DC bus voltage is a common cause of underperformance
  • Transformers rely on mutual flux linkage: the turns ratio determines voltage conversion, directly from Faraday’s Law
  • Generator voltage regulation depends on load current and armature reaction, which affects the effective flux linkage and induced EMF

Glossary

Back-EMF: The voltage induced in a motor’s windings due to rotation through its own magnetic field. It opposes the applied voltage and limits current and maximum speed.

Electromotive Force (EMF): The voltage induced in a conductor or coil due to changing magnetic flux, measured in Volts. Despite the name, it’s a voltage, not a force.

Flux Linkage (λ): The product of magnetic flux and number of turns, λ = NΦ, measured in Weber-turns. It represents the total magnetic flux “linking” all turns of a coil.

Magnetic Flux (Φ): The total magnetic field passing through a surface, measured in Webers (Wb). Φ = B·A for uniform fields perpendicular to the surface.

Lenz’s Law: The principle that induced current creates a magnetic field opposing the flux change that caused it, represented by the negative sign in Faraday’s Law.

Voltage Constant (kE): The proportionality constant between rotational speed and back-EMF in motors: ε = kE·ω. Units: V/(rad/s) or V/kRPM.

Torque Constant (kT): The proportionality constant between current and torque in motors: τ = kT·i. Numerically equal to kE in SI units.

Armature Reaction: The magnetic field created by load current in generators, which distorts the main field and affects the induced voltage.

Regenerative Braking: Operating mode where a motor acts as a generator during deceleration, converting kinetic energy back to electrical energy that returns to the DC bus.

Saturation: The nonlinear behavior of ferromagnetic materials at high flux density, where further increases in magnetizing current produce diminishing flux increases.

FAQ

Q: Why does Faraday’s Law have a negative sign, and what does it mean practically?
A: The negative sign represents Lenz’s Law—the induced EMF creates a current (if the circuit is closed) that opposes the flux change causing it. This is energy conservation in action. Practically, it means that in a generator, you must do mechanical work against the electromagnetic reaction torque to maintain rotation. In a motor, back-EMF opposes the applied voltage, limiting current and requiring higher bus voltage for higher speeds. Without this opposition, we’d have perpetual motion machines, violating thermodynamics.

Q: How do I calculate back-EMF in a three-phase motor from datasheet specifications?
A: Most datasheets list the voltage constant kEk_E (or kEk_E') in units like V/(rad/s) or V/kRPM. First, verify the units and whether it’s line-to-line or line-to-neutral. For line-to-line RMS at mechanical speed nn (RPM): Vback-EMF=kE×nV_{\text{back-EMF}} = k_E' \times n (in kRPM). If given in V/(rad/s), convert: ω=2πn/60\omega = 2\pi n / 60 (rad/s), then Vpeak=kEωV_{\text{peak}} = k_E \omega, and RMS line-to-line is VRMS=Vpeak/2V_{\text{RMS}} = V_{\text{peak}} / \sqrt{2}. Always cross-check with datasheet graphs showing EMF vs. speed.

Q: What’s the relationship between back-EMF constant (kE) and torque constant (kT)?
A: In SI units (V/(rad/s) for kEk_E and N·m/A for kTk_T), they are numerically equal: kE=kTk_E = k_T. This comes from power conservation: electrical power Pe=εi=kEωiP_e = \varepsilon \cdot i = k_E \omega i must equal mechanical power Pm=τω=kTiωP_m = \tau \omega = k_T i \omega. Setting them equal gives kE=kTk_E = k_T. This means a motor with high torque per ampere also has high back-EMF per unit speed, requiring higher bus voltage for high-speed operation. This fundamental tradeoff drives motor selection in servo systems.

Q: Why does my VFD trip on overvoltage during rapid deceleration, and how is it related to Faraday’s Law?
A: During deceleration, the motor becomes a generator, inducing voltage (per Faraday’s Law) that tries to push current back into the DC bus. If the DC bus capacitor is already near rated voltage and there’s no regeneration path (dynamic braking resistor or regenerative drive), the bus voltage rises, triggering overvoltage protection. The higher the deceleration rate, the greater the rate of flux change dΦ/dtd\Phi/dt and induced EMF. Solutions: reduce deceleration time, add a braking resistor, use a regenerative drive, or ensure adequate bus capacitance to absorb energy temporarily.

Q: In transformer design, how do I use Faraday’s Law to calculate required core area?
A: Faraday’s Law gives Vprimary=N1dΦdtV_{\text{primary}} = N_1 \frac{d\Phi}{dt}. For sinusoidal excitation at frequency ff, the peak flux is Φmax=VRMS4.44fN1\Phi_{\text{max}} = \frac{V_{\text{RMS}}}{4.44 f N_1} (the 4.44 factor comes from integrating sine wave). The core cross-sectional area must be Ac=ΦmaxBmaxA_c = \frac{\Phi_{\text{max}}}{B_{\text{max}}}, where BmaxB_{\text{max}} is the maximum allowable flux density (typically 1.5-1.7 T for silicon steel to avoid saturation). Example: 240 V RMS, 60 Hz, 100 turns, Bmax=1.5B_{\text{max}} = 1.5 T gives Φmax=240/(4.44×60×100)=9.0 mWb\Phi_{\text{max}} = 240/(4.44 \times 60 \times 100) = 9.0 \text{ mWb}, so Ac=9.0×103/1.5=6.0 cm2A_c = 9.0 \times 10^{-3} / 1.5 = 6.0 \text{ cm}^2.

Q: How does Faraday’s Law apply to sensorless motor control (back-EMF estimation)?
A: In sensorless FOC, rotor position is estimated by measuring the back-EMF induced in the motor windings. By measuring terminal voltage, subtracting resistive and inductive drops (VterminaliRLdidtV_{\text{terminal}} - i R - L \frac{di}{dt}), you get back-EMF. Since ε=kEω\varepsilon = k_E \omega and ω\omega relates to rotor electrical angle, you can extract position information. At low speeds, back-EMF is too small for reliable estimation, so high-frequency injection or open-loop startup is used. Above 5-10% rated speed, back-EMF observer algorithms (like sliding mode or Luenberger observers) provide accurate position estimates without encoders, reducing system cost.

Q: Why do servo motors have lower kE values than generators for the same frame size?
A: Servo motors prioritize high torque density and low rotor inertia for fast acceleration, using lower flux density and fewer turns, which reduces kE=NΦmaxk_E = N\Phi_{\text{max}}. This allows higher speed operation with standard DC bus voltages (e.g., 560 V). Generators prioritize voltage output, using more turns and higher flux density to maximize EMF at a given speed, since speed is typically fixed by the prime mover. A servo motor with kE=10k_E = 10 V/kRPM can reach 50 kRPM on 560 V bus, while a generator with kE=100k_E = 100 V/kRPM would reach only 5 kRPM before saturation—unacceptable for servo dynamics but perfect for a 3000 RPM genset.

Q: What happens if I operate a motor above its rated voltage in terms of Faraday’s Law?
A: Overvoltage at a given speed means the applied voltage exceeds back-EMF by a larger margin, driving more current than designed: i=VappliedkEωR+jωLi = \frac{V_{\text{applied}} - k_E \omega}{R + j\omega L}. This causes: (1) overcurrent, potentially exceeding drive and motor ratings; (2) increased core flux density, risking saturation, higher iron losses, and overheating; (3) higher dv/dt stress on winding insulation, accelerating aging; (4) potential demagnetization of permanent magnets if flux density exceeds their thermal limit. In VFDs, the V/f ratio must be maintained during overvoltage scenarios to avoid saturation—this is why “constant V/f” mode is standard.

📚 This post is part of: Basics of Electric Machines

Part 1 of 1

All posts in this series:

  1. Faraday's Law: Foundation of Electric Machine Operation