diff options
Diffstat (limited to '165/CH11/EX11.8.a/ex11_8_a.sce')
-rw-r--r-- | 165/CH11/EX11.8.a/ex11_8_a.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/165/CH11/EX11.8.a/ex11_8_a.sce b/165/CH11/EX11.8.a/ex11_8_a.sce new file mode 100644 index 000000000..43f2c5957 --- /dev/null +++ b/165/CH11/EX11.8.a/ex11_8_a.sce @@ -0,0 +1,14 @@ +//Example 11.8(a)
+clc;
+
+//Given values of bridge elements
+R1=470000;
+R2=5100;
+R3=100000;
+C1=0.01*10^-6;
+//We Know Balanced bridge equations as
+Rx=R2*R3/R1;
+//For the calculation of Capacitance
+//we have Lx=R2*R3*C1
+Lx=R2*R3*C1;
+disp(Rx,Lx,'The unknown impedence is the series combination of Lx & Rx')
\ No newline at end of file |