blob: e99e441b2051cdc6d2cf14c403b6d8187abda3c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
//CHAPTER 4- MEASURING INSTRUMENTS
//Example 4
disp("CHAPTER 4");
disp("EXAMPLE 4");
//VARIABLE INITIALIZATION
r_A=10; //in Ohms
I_A=15/1000; //from mA to A
I=100; //in A
V=500; //in Volts
//SOLUTION
//solution (a)
R_sh=r_A/((I/I_A)-1); //(I/I_A) is the multiplying factor of the shunt
disp(sprintf("The required shunt resistance is %f Ω",R_sh));
//solutuion (b)
r=V/I_A; //total resistance required
R_se=r-r_A;
disp(sprintf("The required resistance to be added in series is %f Ω",R_se));
//END
|