diff options
Diffstat (limited to '3554/CH11/EX11.3/Ex11_3.sce')
-rw-r--r-- | 3554/CH11/EX11.3/Ex11_3.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3554/CH11/EX11.3/Ex11_3.sce b/3554/CH11/EX11.3/Ex11_3.sce new file mode 100644 index 000000000..14520fe33 --- /dev/null +++ b/3554/CH11/EX11.3/Ex11_3.sce @@ -0,0 +1,19 @@ +// Exa 11.3
+
+clc;
+clear all;
+
+// Given data
+
+// Refering Fig. 11.9(page no.311) - slightly unbalanced Wheatstone bridge
+R= 700; // in Ohms
+Dell_R= 35; // in Ohms
+E=10; // Supplied voltage(V)
+Rg=125;//Internal resistance of galvanometer(Ohms)
+
+// Solution
+
+Eth= E*Dell_R/(4*R) ; // Thevenin's equivalent voltage(V)
+Rth=R; // Thevenin's equivalent resistance(Ohms)
+Ig= Eth/(Rth+Rg); // Current through galvanometer(Amp)
+printf(' The current through galvanometer by the approximation method is %.1f micro Amp \n',Ig*10^6);
|