summaryrefslogtreecommitdiff
path: root/3769/CH9/EX9.35/Ex9_35.sce
blob: c656f576b6cae186f246be3a53d7dd965ff8d44c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
clear
//Given
Ig=0.015               //A
G=5
I=1
V=15

//Calculation
S=(Ig*G)/(I-Ig)
R=G*S/(G+S)
R1=(V/Ig)-G
R2=R1+G

//Result
printf("\n (i) Resistance of ammeter of range 0-1 A is %0.3f  ohm", R)
printf("\n (ii) Resistance of ammeter of range 0-15 A is %0.3f  ohm", R2)