summaryrefslogtreecommitdiff
path: root/3554/CH4/EX4.9/Ex4_9.sce
blob: 27b204e21d19d07aeb92c4e36a5707a7ead3d2ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Exa 4.9

clc;
clear all;

// Given data
// As per values given in Fig.4.19(page no.94)

ein=10; // Input RMS voltage(V)
Ifsd=1; // Full scale deflection current(mA)
Rm=200;// Internal resistance of voltmeter(Ohms)

// Solution

Range=0.45*ein; // Range of Voltmeter
Sdc=1/(Ifsd*10^-3); // DC Sensitivity of meter movement(k Ohm/V)
Rs=Sdc* Range-Rm;// Multiplier resistance(Ohm)
printf(' The value of the multiplier resistor = %.1f k Ohms\n',Rs/1000);