blob: a6997554a1570d41a92aee56fce84eb3d734f3f1 (
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 3
clc;
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
|