summaryrefslogtreecommitdiff
path: root/165/CH11/EX11.10.e/ex11_10_e.sce
blob: 6666ecbdbd56411c8ff94708914bdebbef8c9ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Example 11.10(e)
clc;

//Given values of bridge elements
R3=100;
C2=100*10^-12;
R4=300;
C4=0.5*10^-6;
f=50;           //frequency in Hz
//Value of C1 for Schering's Bridge
C1=C2*R4/R3;
//Power factor
D=2*%pi*f*C4*R4;
disp(C1,'Value of Capacitance is ')
printf('\nPower Factor is %.4f \n',D)