summaryrefslogtreecommitdiff
path: root/165/CH11/EX11.6.a/ex11_6_a.sce
blob: 27829f1e8cf503e519f8a2f478b0009f36b501e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Example 11.6(a)
clc;
//Given values of bridge elements
R1=10000;
R2=50000;
R3=100000;
C3=100*10^-6;
//We Know Balanced bridge equations as
//    R1*R3=R2*R4
Rx=R2*R3/R1;
//For the calculation of Capacitance
//we have R1*C3=R2*Cx
Cx=C3*R1/R2;
disp(Rx,Cx,'The unknown impedence is the series combination of Cx & Rx')