summaryrefslogtreecommitdiff
path: root/3554/CH3/EX3.1/Ex3_1.sce
blob: 2a081ccf3cd8747c048c79cebb43b277097304b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//  Exa 3.1

clc;
clear all;

// Given data

Rm= 100; // Internal resistance in Ohm's
Im= 1; // Full scale deflecfion current in milliAmpere
I= 100; // Total current in milli Ampere

// Solution

Rsh= (Im*Rm)/(I-Im); // Shunt resistance 
printf('The value of shunt resistance = %.2f  Ohm \n', Rsh);