blob: c8986abb6ddea5900756c924e863fb73626a5710 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Chapter 9, Problem 16
clc
N=750 //no of turns
L=3 //inductance in henry
I=2 //current in ampere
t=20e-3 //time in milisec
phi=(L*I)/N
E=-(N*phi)/t
printf("Flux linking the coil = %d mWb\n\n",phi*1000)
printf("Induced emf = %d V",E)
|