blob: d1322017ce8f55b1cd8f13cf016baf9bf39b8fc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
//Example 4.8
clc;
Ifsd=50*10^-6; //Full Scale Current
S=1/Ifsd; //Sensitivity
Rm=1000; //Internal resistance of movement
disp(S,'Sensitivity of 50 uA meter')
//Case I: For Range 0-5 V
V=5; //Full range voltage of the instrument
Rs=S*V-Rm; //Multiplier resistence
disp(Rs,'Value of Multipliier Resistence for 5 V range')
//Case II: For Range 0-10 V
V=10; //Full range voltage of the instrument
Rs=S*V-Rm; //Multiplier resistence
disp(Rs,'Value of Multipliier Resistence for 10 V range')
//Case III: For Range 0-50 V
V=50; //Full range voltage of the instrument
Rs=S*V-Rm; //Multiplier resistence
disp(Rs,'Value of Multipliier Resistence for 50 V range')
|