summaryrefslogtreecommitdiff
path: root/1445/CH4/EX4.6/Ex4_6.sce
blob: 3c544005582e642457785d4ea1c0883447f25302 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//CHAPTER 4- MEASURING INSTRUMENTS
//Example 6

clc;
disp("CHAPTER 4");
disp("EXAMPLE 6");

//VARIABLE INITIALIZATION
I_m=20/1000;        //full scale deflection in Amperes
v_m=50/1000;        //applied potential difference in Volts
v=500;              //in Volts

//SOLUTION
r_m=v_m/I_m;        //resistance of moving-coil instrument
r_s=(v/I_m)-r_m;
disp(sprintf("The series resistance to measure 500 V on full scale is %f Ω",r_s));

//END