blob: 14520fe33444e466eea62632b9b1e786c866c9c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
|