blob: f2ee5d30034d5b2afc4af62bf860cf724e9c11fa (
plain)
1
2
3
4
5
6
7
|
//Example 4.2(a)
clc;
V=10; //Full range voltage of the instrument
Im=50*10^-6; //Full Scale Deflection Current
Rm=500; //Internal resistance of movement
Rs=V/Im-Rm; //Multiplier resistence
disp(Rs,'Value of Multipliier Resistence')
|