diff options
Diffstat (limited to '3850/CH32/EX32.8/Ex32_8.sce')
-rw-r--r-- | 3850/CH32/EX32.8/Ex32_8.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3850/CH32/EX32.8/Ex32_8.sce b/3850/CH32/EX32.8/Ex32_8.sce new file mode 100644 index 000000000..16da7a6db --- /dev/null +++ b/3850/CH32/EX32.8/Ex32_8.sce @@ -0,0 +1,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);
|