summaryrefslogtreecommitdiff
path: root/3830/CH6/EX6.2/Ex6_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3830/CH6/EX6.2/Ex6_2.sce')
-rw-r--r--3830/CH6/EX6.2/Ex6_2.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/3830/CH6/EX6.2/Ex6_2.sce b/3830/CH6/EX6.2/Ex6_2.sce
new file mode 100644
index 000000000..2bd384dcb
--- /dev/null
+++ b/3830/CH6/EX6.2/Ex6_2.sce
@@ -0,0 +1,27 @@
+// Exa 6.2
+
+clc;
+clear;
+
+// Given
+
+//Fig. 6.9 shows wheatstone bridge
+R1 = 1000; // Ohms
+R2 = 100; // Ohms
+R3 = 400; // Ohms
+Rx = 41; // Ohms(Unknown resistance)
+V = 1.5; // Voltage supplied
+Rg = 50; // Galvanometer resistance (ohms)
+Si = 2; // current sensitivity in mm/microAmp
+
+
+// Solution
+
+Rth = (R1*R3/(R1+R3)) + R2*Rx/(R2+Rx);
+Eth = V*(R3/(R1+R3) - Rx/(R2+Rx));
+Ig = Eth/(Rth+Rg);
+d = Ig*Si;
+printf('The thevenins equivalent resistance = %.1f Ohms \n',round(Rth));
+printf(' The thevenins equivalent voltage = %.1f mV \n',abs(Eth*10^3));
+printf(' The current through the galvanometer = %.2f micro Amp \n',abs(Ig*10^6));
+printf(' The deflection produced by the galvanometer caused by the imbalance in the circuit = %.2f mm \n',abs(d*10^6));