summaryrefslogtreecommitdiff
path: root/3554/CH11/EX11.2/Ex11_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3554/CH11/EX11.2/Ex11_2.sce')
-rw-r--r--3554/CH11/EX11.2/Ex11_2.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/3554/CH11/EX11.2/Ex11_2.sce b/3554/CH11/EX11.2/Ex11_2.sce
new file mode 100644
index 000000000..aa19bc4ee
--- /dev/null
+++ b/3554/CH11/EX11.2/Ex11_2.sce
@@ -0,0 +1,24 @@
+// Exa 11.2
+
+clc;
+clear all;
+
+// Given data
+//Refering fig. 11.5 - Unbalanced Wheatstone bridge
+
+R1=1; // in k Ohms
+R2= 2.5; // in k Ohms
+R3=3.5; // in k Ohms
+R4=10; // in k Ohms
+V= 6; // Applied Voltage(V)
+Rg=0.3; // Galvanometer resistance in k Ohms
+
+// Solution
+
+// Eth=Ea-Eb ; \\ Thevenin's equivalent voltage
+Eth=V*(R4/(R2+R4) - R3/(R1+R3));
+Rth=(R1*R3/(R1+R3)) + (R2*R4/(R2+R4)) ;
+// Refering the equivalent circuit connected along with the galvanometer as shown in fig. 11.6
+Ig=Eth/(Rth+Rg) ; // Current through galvanometer
+printf(' The current through galvanometer is = %.2f micro Amp \n',round(Ig*10^3));
+//The answer vary due to round off error