blob: 99149f9af0cfccfd52241fb84d1729df09c5872e (
plain)
1
2
3
4
5
6
7
8
9
|
//Chapter 10, Problem 2, figure 10.6
clc;
I=0.008; //total circuit current
ra=10; //resistance of instrument
V=100; //total p.d
Va=I*ra; //calculating voltage across moving coil instrument
Rm=(V-(I*ra))/I; //calculating value of multiplier
printf("Multiplier Rm = %f K.ohm\n\n\n",Rm/1000);
printf("A resistance of value 12.49 k ohm needs to be connected in series with the instrument.");
|