blob: 160ae65f0b5fc3a40f4a786d89a675d9a82949f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Exa 1.17
clc;
clear;
// Given
// Refer Fig. 1.77
Ifs = 10^-6; // Full scale deflection current in Amp
Rm = 300; // Meter resistance in Ohms
Erms = 10; // in Volts
Idc = 1*10^-3; // in Amp
// Solution
S = 1/Ifs;
Rs = 0.45* Erms/Idc - Rm;
printf(' The value of multiplier resistance Rs = %.1f k Ohms \n',Rs/1000);
|