summaryrefslogtreecommitdiff
path: root/3769/CH12/EX12.3/Ex12_3.sce
blob: a0d8d5472d1138cdb2d908e1c240435723c920bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
clear
//Given
A=10**-2                           //m**2
a=45                               //degree
B1=0.1                             //T
R=0.5                              //ohm
t=0.7                              //S

//Calculation
//
a1=B1*A*cos(a*3.14/180.0)
a2=0
a3=a1-a2
e=a3/t
I=e/R

//Result
printf("\n Current during this time interval is %0.1f  *10**-3 A",I*10**3)
printf("\n Magnitude of induced emf is %0.0f  *10**-3 V",e*10**3)