Zbotic Logo Zbotic Logo
  • Home
  • Shop
  • Sale
  • 3D Print Service
  • PCB Service
  • B2B
  • Blogs
  • Contact Us
0 0

View Wishlist Add all to cart

0 0
0 Shopping Cart
Shopping cart (0)
Subtotal: ₹0.00

View cartCheckout

  • Shop
  • About Us
  • Contact Us
  • Reseller
  • Blogs
020 69134444
1800 209 0998
[email protected]
Help Desk
Facebook Twitter Instagram Linkedin YouTube
Zbotic Logo Zbotic Logo
0 0

View Wishlist Add all to cart

0 0
0 Shopping Cart
Shopping cart (0)
Subtotal: ₹0.00

View cartCheckout

All departments
  • 3D Print Service
  • 3D Printer
  • Batteries & Chargers
  • Development Boards
  • Drone Parts
  • EBike parts
  • Sensor Modules
  • Electronic Components
  • Electronic Modules
  • IoT and Wireless
  • Mechanical Parts and Workbench Tools
  • Motors & Drivers & Pumps & Actuators
  • DIY and Robot Kits
  • Show more
  • Home
  • Shop
  • Sale
  • 3D Print Service
  • PCB Service
  • B2B
  • Blogs
  • Contact Us
Return to previous page
Home Student Projects & STEM Education

Physics Smart Project: Electromagnetic Induction with Arduino

Physics Smart Project: Electromagnetic Induction with Arduino

March 11, 2026 /Posted byJayesh Jain / 0

Visualise Faraday’s Law with Arduino: Electromagnetic Induction Smart Project

Electromagnetic induction is one of the most important principles in physics — it is the foundation of generators, transformers, wireless charging, and electric motors. Yet most students encounter it only as equations on paper. This smart project uses Arduino to bring electromagnetic induction to life, measuring and visualising the induced EMF as you move a magnet near a coil in real time.

This project connects abstract physics concepts to measurable data, making it ideal for Class 12 physics demonstrations, CBSE science fair submissions, and undergraduate lab reports.

Physics Background: Faraday’s Law

Faraday’s Law states that the induced EMF in a coil is proportional to the rate of change of magnetic flux through it:

ε = −N × (dΦ/dt)

Where:

  • ε = induced EMF (volts)
  • N = number of turns in the coil
  • dΦ/dt = rate of change of magnetic flux

The negative sign represents Lenz’s Law — the induced current opposes the change in flux that caused it. With Arduino, you can quantify this relationship: move the magnet faster, see a larger voltage spike. More coil turns, larger voltage. This is Faraday’s Law made tangible.

Components Required

  • Arduino Uno
  • Pickup coil: 500-1000 turns of 30 AWG enamelled copper wire on a 4cm diameter former (or repurposed from an old transformer secondary winding)
  • Neodymium magnet (strong, cylindrical preferred)
  • Op-amp amplifier: LM358 or LM741 in non-inverting configuration (×10 gain)
  • 100Ω and 1kΩ resistors (for op-amp gain setting)
  • 0.1µF decoupling capacitor
  • Processing software (free, from processing.org) or Arduino Serial Plotter
  • USB cable, breadboard, jumper wires
Recommended: Arduino Uno R3 Development Board — 10-bit ADC with 0-5V range, 1kΩ input impedance ideal for EMF signal acquisition.

Building the Sensing Circuit

The Pickup Coil

Wind 500 turns of 30 AWG enamelled (magnet) wire on a cylindrical former about 4cm in diameter and 3cm long. Sand the enamel off the wire ends with fine sandpaper or light flame, then tin with solder. The coil resistance should be approximately 100-200Ω.

Alternatively, the secondary winding from a small mains transformer (240V/6V type) works perfectly — the 6V secondary has approximately the right number of turns and is already wound on a former.

Amplifier Circuit (LM358)

The raw induced EMF from a moving magnet is typically 10-50mV — too small for accurate Arduino ADC measurement. An amplifier with ×10 to ×50 gain brings the signal into the 0-5V ADC range.

Non-inverting amplifier configuration:

  • LM358 VCC → 5V, GND → Arduino GND
  • Coil positive → LM358 pin 3 (non-inverting input +)
  • Coil negative → GND
  • LM358 pin 1 (output) → 1kΩ resistor → pin 2 (inverting input −) AND → Arduino A0
  • LM358 pin 2 → 100Ω resistor → GND

This gives a gain of 1 + (1000/100) = 11×. Add a 2.5V bias to the non-inverting input (via voltage divider 10kΩ/10kΩ) to centre the signal in the ADC range, allowing both positive and negative EMF to be measured.

Arduino Code

// Electromagnetic Induction Visualiser
// Reads amplified coil voltage and sends to Serial Plotter

const int EMF_PIN = A0;
const float V_REF = 5.0;       // Arduino reference voltage
const float GAIN = 11.0;        // Op-amp gain
const float BIAS = 2.5;         // DC bias voltage added
const int NUM_SAMPLES = 5;      // Averaging samples

float rawVoltage, coilVoltage;
float baseline;
int sampleIndex = 0;
float sampleBuffer[NUM_SAMPLES];

void setup() {
  Serial.begin(115200);
  
  // Calculate baseline (coil at rest, no magnet)
  long sum = 0;
  for (int i = 0; i < 100; i++) {
    sum += analogRead(EMF_PIN);
    delay(5);
  }
  baseline = (sum / 100.0) * (V_REF / 1023.0);
  
  Serial.println("EMF_mV"); // Header for Serial Plotter
}

void loop() {
  // Read ADC
  int adcValue = analogRead(EMF_PIN);
  rawVoltage = adcValue * (V_REF / 1023.0);
  
  // Remove bias and calculate actual coil EMF
  coilVoltage = (rawVoltage - baseline) / GAIN;
  float emf_mV = coilVoltage * 1000.0; // Convert to mV
  
  // Send to Serial Plotter
  Serial.println(emf_mV);
  
  delayMicroseconds(500); // 2kHz sample rate
}

Open the Arduino Serial Plotter (Tools → Serial Plotter) to see real-time EMF graphs as you move the magnet near and away from the coil.

Experiments to Conduct

Experiment 1: Verify Faraday’s Law

Move the magnet at different speeds — slow, medium, fast. Observe that:

  • Faster movement = larger EMF spike (higher dΦ/dt)
  • Slower movement = smaller but wider EMF pulse (same total flux change)
  • Stationary magnet = zero EMF (no change in flux)

This directly demonstrates that induced EMF depends on the rate of flux change, not the flux magnitude itself.

Experiment 2: Verify Lenz’s Law

With the bias offset, your circuit can show both positive and negative EMF. Push the magnet toward the coil — note the sign of EMF. Pull it away — the EMF reverses sign. This demonstrates that the induced current opposes the change (Lenz’s Law).

Experiment 3: Effect of Coil Turns

If you have coils with different turn counts, compare peak EMF for the same magnet movement speed. EMF should scale linearly with N (number of turns). This is a quantitative verification of Faraday’s Law.

Experiment 4: AC Generator Simulation

Rotate the magnet continuously near the coil at constant speed. You will see a roughly sinusoidal EMF waveform on the Serial Plotter — a direct demonstration of AC generator operation. Vary the rotation speed to see frequency change.

Recommended: Arduino Sensor Kit (37-in-1) — Contains Hall effect sensor for magnetic field strength measurements, complementing this electromagnetic induction experiment.

Adding Data Logging

// Enhanced version with timestamp and CSV output
void loop() {
  unsigned long timestamp = micros();
  int adcValue = analogRead(EMF_PIN);
  float rawV = adcValue * (V_REF / 1023.0);
  float emf_mV = ((rawV - baseline) / GAIN) * 1000.0;
  
  // CSV format: timestamp_us, emf_mV
  Serial.print(timestamp);
  Serial.print(",");
  Serial.println(emf_mV);
}

Open Arduino Serial Monitor, set baud to 115200, and copy-paste output into Excel or Google Sheets for analysis. Calculate peak EMF, total impulse (area under curve), and compare with theoretical predictions.

Project Enclosure Ideas

For a polished competition display:

  • Mount the coil in a fixed perspex holder with a guide tube for the magnet
  • Add a laptop or small display showing real-time EMF graph
  • Add a small LED bank connected through the coil (via a bridge rectifier) to visually show induced current — the LEDs light up as you move the magnet
  • Include a printed chart comparing your experimental results to theoretical Faraday’s Law predictions

Frequently Asked Questions

Why does my Arduino read noise even when the magnet is not moving?

The amplified coil acts as an antenna and picks up electromagnetic interference (EMI) from power lines, phone signals, and nearby electronics. Add a 100nF capacitor across the coil input to the amplifier to filter high-frequency noise. Keep the coil away from switching power supplies.

Can I use a Hall effect sensor instead of a coil?

A Hall effect sensor measures magnetic field strength (B), not rate of change. It will not demonstrate electromagnetic induction directly. However, you can use one alongside the coil — compare static field strength (Hall sensor) with the induced EMF (coil) to show the distinction between flux and flux rate of change.

What makes this better than a galvanometer demonstration?

A galvanometer shows qualitative deflection. This Arduino setup provides quantitative measurements with timestamps, allowing you to calculate actual induced EMF values, verify the mathematical form of Faraday’s Law numerically, and export data for further analysis. It is far more suitable for a science fair or physics lab report.

Is this project appropriate for Class 12 CBSE?

Yes. Electromagnetic induction is a key Chapter 6 topic in CBSE Class 12 Physics. This project directly demonstrates the concepts assessed in board practical examinations and is excellent material for internal assessment projects.

Conclusion

Building an electromagnetic induction visualiser with Arduino transforms a textbook equation into a real-time measurable phenomenon. You not only understand that Faraday’s Law is true — you can prove it quantitatively with your own data. This is the essence of physics: theory confirmed by experiment. For competitions, the combination of correct physics, clean data, and professional Arduino-based measurement makes for a genuinely impressive submission.

Shop Arduino & Physics Project Kits at Zbotic →

Tags: Arduino physics experiment, CBSE Class 12 physics project, electromagnetic induction Arduino, Faraday's law project, induced EMF Arduino, physics smart project, science fair project, STEM physics
Share Post
  • Facebook
  • Linkedin
  • Whatsapp
SMD Footprint Creation in KiCa...
blog smd footprint creation in kicad custom component library 599351
blog wm8960 audio codec high quality sound on raspberry pi 599359
WM8960 Audio Codec: High Quali...

Related posts

Svg%3E
Read more

CubeSat Kit: Satellite Building for Education

April 1, 2026 0
The cubesat kit is one of the most exciting STEM projects you can take on in India today. Whether you... Continue reading
Svg%3E
Read more

Weather Balloon: High-Altitude Data Collection

April 1, 2026 0
The weather balloon is one of the most exciting STEM projects you can take on in India today. Whether you... Continue reading
Svg%3E
Read more

Automatic Irrigation: Multi-Zone Watering Controller

April 1, 2026 0
The automatic irrigation is one of the most exciting STEM projects you can take on in India today. Whether you... Continue reading
Svg%3E
Read more

Smart Weighbridge: Load Cell Industrial Scale

April 1, 2026 0
The smart weighbridge is one of the most exciting STEM projects you can take on in India today. Whether you... Continue reading
Svg%3E
Read more

Vending Machine: Arduino Coin and Product Dispenser

April 1, 2026 0
The vending machine is one of the most exciting STEM projects you can take on in India today. Whether you... Continue reading

Add comment Cancel reply

Your email address will not be published. Required fields are marked

Facebook Twitter Instagram Pinterest Linkedin Youtube

Get the latest deals and more.

Download on Google Play Download on the App Store

Call us: 020 69134444 / 1800 209 0998

Monday - Saturday 09:30 AM - 06:00 PM
For Technical Supports Email: [email protected]
For Sales / Enquiries Email: [email protected]

  • My Account

    • Cart

    • Wishlist

    • Checkout

    • My Orders

    • Track Order

    • My Account

  • Information

    • FAQs

    • Blogs

    • Career

    • About Us

    • Contact Us

    • Payment Options

  • Policies

    • Privacy Policy

    • Terms & Conditions

    • GST Input Tax Credit

    • Shipping Return Policy

    • E-Waste Collection Points

    • Our Sitemap

© Zbotic.in is registered trademark of Moxie Supply Pvt Ltd – All Rights Reserved
Login
Use Phone Number
Use Email Address
Not a member yet? Register Now
Reset Password
Use Phone Number
Use Email Address
Register
Already a member? Login Now