diff options
Diffstat (limited to '3554/CH11/EX11.4/Ex11_4.sce')
-rw-r--r-- | 3554/CH11/EX11.4/Ex11_4.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3554/CH11/EX11.4/Ex11_4.sce b/3554/CH11/EX11.4/Ex11_4.sce new file mode 100644 index 000000000..240568637 --- /dev/null +++ b/3554/CH11/EX11.4/Ex11_4.sce @@ -0,0 +1,19 @@ +// Exa 11.4
+
+clc;
+clear all;
+
+// Given data
+// Refering Fig. 11.12(page no.315)- Kelvin's bridge
+
+Ra_b=1000;// The ratio of Ra to Rb
+R1= 5; // in Ohms
+
+// Solution
+
+// We have R1=0.5*R2
+R2=R1/0.5;
+
+//From the eqation for Kelvin'd bridge- Rx*Ra=Rb*R2
+Rx=R2*(1/1000); // Unknown resistance
+printf(' The value of Rx = %.2f Ohm \n ',Rx);
|