blob: 07723237a873b8a72f9af7327c18d19bdaa9b364 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Exa 4.1
clc;
clear all;
// Given data
Iful = 200; // Fullscale deflection current in micro Amperes
Sen= 1/(Iful*10^-3) ; // Sensitivity of Voltmeter(K Ohms/V)
// Solution
printf(' The sensitivity of the voltmeter = %d k Ohms/V \n',Sen);
|