summaryrefslogtreecommitdiff
path: root/165/CH11/EX11.6.a/ex11_6_a.sce
diff options
context:
space:
mode:
Diffstat (limited to '165/CH11/EX11.6.a/ex11_6_a.sce')
-rw-r--r--165/CH11/EX11.6.a/ex11_6_a.sce14
1 files changed, 14 insertions, 0 deletions
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