summaryrefslogtreecommitdiff
path: root/3830/CH6/EX6.2/Ex6_2.sce
blob: 2bd384dcbc08bdb8e4ac6adbd36c410c2479c663 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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));