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 --- 1316/CH2/EX2.10/example2_10.sce | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 1316/CH2/EX2.10/example2_10.sce (limited to '1316/CH2/EX2.10') diff --git a/1316/CH2/EX2.10/example2_10.sce b/1316/CH2/EX2.10/example2_10.sce new file mode 100644 index 000000000..7417d62b6 --- /dev/null +++ b/1316/CH2/EX2.10/example2_10.sce @@ -0,0 +1,25 @@ +//Chapter 2 +//Example 2.10 +//Page 68 + +clear; +clc; + +R1 = 1000; +R2 = 2000; +R3 = 1000; +C1 = 1; + +printf("Because the bridge is at null , we have \n ") +printf("Z2*Z3 = Z1*Zx \n") +printf("R2(R3-j/wC)=R1(Rx-j/wCx) \n") +printf("The real and imaginary parts must be indpendently equal,so that \n") +printf("Rx-(R2*R3/R1)=0 \n") +//Calculation of value of Rx +x=(R2*R3/R1)/1000 +printf("Rx = %.0f kilo ohm \n",x) +//Calculation of value of Cx +y=(C1*(R1/R2)) +printf("Cx=C(R1/R2) \n Cx = %.1f uF",y) + + -- cgit