blob: a1b093ce8666a59a17008e882bc8564bdec955ec (
plain)
1
2
3
4
5
6
7
|
//Chapter 9, Problem 7
clc;
N=200; //no of turns
dphi=25*10^-3; //change in flux
dt=50*10^-3; //change in time
E=-N*(dphi/dt); //calculating induced emf
printf("Induced emf E = %d V",E);
|