diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3554/CH11/EX11.9/Ex11_9.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3554/CH11/EX11.9/Ex11_9.sce')
-rw-r--r-- | 3554/CH11/EX11.9/Ex11_9.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/3554/CH11/EX11.9/Ex11_9.sce b/3554/CH11/EX11.9/Ex11_9.sce new file mode 100644 index 000000000..1d9f63b6a --- /dev/null +++ b/3554/CH11/EX11.9/Ex11_9.sce @@ -0,0 +1,26 @@ +// Exa 11.9
+
+clc;
+clear all;
+
+// Given data
+
+// Refering Fig. 11.26(page no.328) - an AC bridge(SCHERING'S BRIDGE)
+
+R1= 1; // k Ohms
+C1=0.5; // micro farads
+R2=2; // k Ohms
+C3=0.5; // micro farads
+f= 1000; // Hz
+
+// Solution
+// Using Equations 11.20(a) and 11.20(b) given on page no. 328 we get value Rx and Cx
+
+Rx=C1/C3*R2;// in k Ohms
+Cx=R1/R2 * C3; // in micro farads
+
+D=2*%pi*f*Cx*10^-6*Rx*10^3; // Dissipation factor
+
+printf(' The unknown capacitance Cx is equal to %.2f micro farads\n ',Cx);
+printf(' The dissipation factor = %.4f \n ',D);
+
|