blob: aeca30d89ec9a054300f4e61a5120786d07f7d03 (
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
|
//CHAPTER 4- MEASURING INSTRUMENTS
//Example 3
disp("CHAPTER 4");
disp("EXAMPLE 3");
//VARIABLE INITIALIZATION
I=1; //in Amperes (I=1 is an assumption)
I_g=I/100; //in Amperes
G=2970; //in Ohms
//SOLUTION
S=(G*I_g)/(I-I_g); //since I_g=(S*I)/(S+G);
disp(sprintf("The wire should have a resistance of %f Ω",S));
//END
|