From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 165/CH11/EX11.6.a/ex11_6_a.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 165/CH11/EX11.6.a/ex11_6_a.sce (limited to '165/CH11/EX11.6.a') diff --git a/165/CH11/EX11.6.a/ex11_6_a.sce b/165/CH11/EX11.6.a/ex11_6_a.sce new file mode 100644 index 000000000..27829f1e8 --- /dev/null +++ b/165/CH11/EX11.6.a/ex11_6_a.sce @@ -0,0 +1,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') \ No newline at end of file -- cgit