summaryrefslogtreecommitdiff
path: root/165/CH11/EX11.9.b/ex11_9_b.sce
diff options
context:
space:
mode:
Diffstat (limited to '165/CH11/EX11.9.b/ex11_9_b.sce')
-rw-r--r--165/CH11/EX11.9.b/ex11_9_b.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/165/CH11/EX11.9.b/ex11_9_b.sce b/165/CH11/EX11.9.b/ex11_9_b.sce
new file mode 100644
index 000000000..ab5aeaf33
--- /dev/null
+++ b/165/CH11/EX11.9.b/ex11_9_b.sce
@@ -0,0 +1,15 @@
+//Example 11.9(b)
+clc;
+f=50; //frequency in Hz
+//Given values of bridge elements
+R2=1000;
+R3=16500;
+R4=800;
+w=2*%pi*f;
+C4=2*10^-6;
+//Value of Rx for Hay's Bridge
+Rx=(R4*R2*R3*(w*C4)^2)/(1+(w*R4*C4)^2);
+//Value of Lx for Hay's Bridge
+Lx=(R2*R3*C4)/(1+(w*R4*C4)^2);
+disp(Rx,'Value of resistence is')
+disp(Lx,'Value of Inductance is') \ No newline at end of file