summaryrefslogtreecommitdiff
path: root/3830/CH1/EX1.18/Ex1_18.sce
blob: 6202c237703eb23a8acb83ad3e47ff38711211fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Exa 1.18

clc;
clear;

// Given

Ifs = 10^-3; // Full scale deflection current in Amp
Rm = 500; // Meter resistance in Ohms
Range = 10; // Em = 10*Vrms 
// Solution

Sdc = 1/Ifs; // Dc Sensitivity in Ohms/Volt 
Sac = 0.9*Sdc; // Ac Sensitivity in Ohms/Volt

Rs = Sac * Range - Rm; 
printf('The value of multiplier resistance Rs = %d Ohms \n',Rs);