summaryrefslogtreecommitdiff
path: root/165/CH4/EX4.9/ex4_9.sce
blob: 0ae0a941853e9d1bceb7273f54f8fc1a4cf93f00 (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.9
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-3 V
V=3;         //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-30 V
V=30;        //Full range voltage of the instrument
Rs=S*V-Rm;   //Multiplier resistence
disp(Rs,'Value of Multipliier Resistence for 50 V range')