summaryrefslogtreecommitdiff
path: root/608/CH43/EX43.02/43_02.sce
blob: 9c547f6f7fb6ae189bfe144fa71a69909adf4bf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Problem 43.02: Two circuits have a mutual inductance of 600 mH. A current of 5 A in the primary is reversed in 200 ms. Determine the e.m.f. induced in the secondary, assuming the current changes at a uniform rate.

//initializing the variables:
M = 600E-3; // in Henry
Ia = 5; // in amperes
dt = 0.2; // in secs

//calculation:
//change of current
dIa = 2*Ia 
dIadt = dIa/dt
//secondary induced e.m.f., E2
E2 = -1*M*dIadt

printf("\n\n Result \n\n")
printf("\n secondary induced e.m.f., E2 is %.0f V",E2)