summaryrefslogtreecommitdiff
path: root/147/CH18/EX18.4/Example18_4.sce
blob: 34eaa4bfa46b166cd75a1eec455cad5c6923279e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Resistance of moving coil instrument R, Full deflection current I
close();
clear;
clc;
R = 10;//ohm
I = 0.05;//A
//Part (i)
V = 750;
Rse = V/I - R;
//Part(ii)
Ii = I;
I = 100;
Ish = I-Ii;
Rsh = R*Ii/Ish;
mprintf('(i)Rse = %0.2f k ohm\n(ii)Rsh = %0.0f m ohm',Rse/1000,Rsh*1000);