blob: 0882048153a7deec1953905549e4a510878a184d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//Example 4.25
close;
clc;
V=3; //in volts
Rm=50; //In ohms
Rh=10; //in ohms
Im=10*10^-3; //in amperes
Ih=0.5*Im; //Half scale definition
Vm=Ih*Rm; //Voltage across the movement
//Voltage across unknown resitence =Voltage across meter movement
Ix=Vm/Rh; //Current through unknown resistence
Ish=Ix-Im/2; //Current through shunt
Rsh=Vm/Ish; //Shunt resistence
printf('\nValue of Shunt resistence Rs = %.2f ohm\n',Rsh)
//Calculation of R1
It=Ix+Im/2+Ish; //Total battery current
V_drop=V-Vm; //Voltage drop across limiting resistor
R1=V_drop/It;
printf('Value of limiting resistence R1 = %.2f ohm\n',R1)
|