blob: b968d1b8882358eaa864d61206a713cd76d14723 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Exa 1.12
clc;
clear;
// Given
// Referring Fig. 1.49
Ifs = 10; // Full scale deflection current in Amp
Im = 0.015; // Meter resistance in Amp
R = 5; // Resistance in Ohms
// Solution
Isg = Ifs-Im;
Rsg = Im*R/Isg;
printf('The value of shunt resistance for the milli Ammeter = %.2f * 10^-3 Ohms \n',Rsg*1000);
|