blob: 16da7a6dbec865a246e5bde4d2c9627fc681e55d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//Find the Reading of the Ammeter
//Example 32.8
clear;
clc;
R1=140.8;//Given resistance
RA=480;//Reactance of the Coil
Rsh=20;//Shunt resistance
Req=RA*Rsh/(RA+Rsh);//Equivalent resistance of the ammeter
Reqc=R1+Req;//Equivalent resistance of the circuit
I=Rsh/Reqc;//current goes through the ammeter
printf("Reading of the Ammeter is = %f A",I);
|