blob: e59f683e3abd752ec804849dd2a7c593dde8d299 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Exa 4.2
clc;
clear all;
// Given data
Iful= 50; // Fullscale deflection current in micro Amperes
Rm= 500; // Internal resistance in Ohms
V= 10; // Full range voltage of instrument(Volts)
// Solution
Rs= V/(Iful *10^-6)-Rm; // Multiplier resistance
printf('The value of multiplier resistance = %.1f k Ohms\n',Rs/1000);
|