diff options
Diffstat (limited to '3830/CH1/EX1.12/Ex1_12.sce')
-rw-r--r-- | 3830/CH1/EX1.12/Ex1_12.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3830/CH1/EX1.12/Ex1_12.sce b/3830/CH1/EX1.12/Ex1_12.sce new file mode 100644 index 000000000..b968d1b88 --- /dev/null +++ b/3830/CH1/EX1.12/Ex1_12.sce @@ -0,0 +1,18 @@ +// Exa 1.12
+
+clc;
+clear;
+
+// Given
+
+// Referring Fig. 1.49
+Ifs = 10; // Full scale deflection current in Amp
+Im = 0.015; // Meter resistance in Amp
+R = 5; // Resistance in Ohms
+
+// Solution
+
+Isg = Ifs-Im;
+Rsg = Im*R/Isg;
+
+printf('The value of shunt resistance for the milli Ammeter = %.2f * 10^-3 Ohms \n',Rsg*1000);
|