diff options
Diffstat (limited to '3554/CH4/EX4.4/Ex4_4.sce')
-rw-r--r-- | 3554/CH4/EX4.4/Ex4_4.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3554/CH4/EX4.4/Ex4_4.sce b/3554/CH4/EX4.4/Ex4_4.sce new file mode 100644 index 000000000..4e3df5cda --- /dev/null +++ b/3554/CH4/EX4.4/Ex4_4.sce @@ -0,0 +1,18 @@ +// Exa 4.4
+
+clc;
+clear all;
+
+// Given data
+
+Iful= 200; // Full scale deflection current in micro Amperes
+Rm= 100;// Internal resistance of the movement in Ohms
+Range= 50; // Voltage range
+
+// Solution
+
+S= 1/(Iful * 10^-6); // Sensitivity of voltmeter is ohms/volt
+// Rs=S*Range-Rm ;
+Rs=S*Range-Rm; // Multiplier resistance
+
+printf(' The value of multiplier resistance = %.1f K Ohms \n', Rs/1000);
|