blob: 4e3df5cda1fe7d95c07047f04e86e1f64d0fcb1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Exa 4.4
clc;
clear all;
// Given data
Iful= 200; // Full scale deflection current in micro Amperes
Rm= 100;// Internal resistance of the movement in Ohms
Range= 50; // Voltage range
// Solution
S= 1/(Iful * 10^-6); // Sensitivity of voltmeter is ohms/volt
// Rs=S*Range-Rm ;
Rs=S*Range-Rm; // Multiplier resistance
printf(' The value of multiplier resistance = %.1f K Ohms \n', Rs/1000);
|