summaryrefslogtreecommitdiff
path: root/3830/CH1/EX1.17/Ex1_17.sce
diff options
context:
space:
mode:
Diffstat (limited to '3830/CH1/EX1.17/Ex1_17.sce')
-rw-r--r--3830/CH1/EX1.17/Ex1_17.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3830/CH1/EX1.17/Ex1_17.sce b/3830/CH1/EX1.17/Ex1_17.sce
new file mode 100644
index 000000000..160ae65f0
--- /dev/null
+++ b/3830/CH1/EX1.17/Ex1_17.sce
@@ -0,0 +1,16 @@
+// Exa 1.17
+
+clc;
+clear;
+
+// Given
+
+// Refer Fig. 1.77
+Ifs = 10^-6; // Full scale deflection current in Amp
+Rm = 300; // Meter resistance in Ohms
+Erms = 10; // in Volts
+Idc = 1*10^-3; // in Amp
+// Solution
+S = 1/Ifs;
+Rs = 0.45* Erms/Idc - Rm;
+printf(' The value of multiplier resistance Rs = %.1f k Ohms \n',Rs/1000);