diff options
Diffstat (limited to '3554/CH4/EX4.10/Ex4_10.sce')
-rw-r--r-- | 3554/CH4/EX4.10/Ex4_10.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3554/CH4/EX4.10/Ex4_10.sce b/3554/CH4/EX4.10/Ex4_10.sce new file mode 100644 index 000000000..fc5ca250b --- /dev/null +++ b/3554/CH4/EX4.10/Ex4_10.sce @@ -0,0 +1,17 @@ +// Exa 4.10
+
+clc;
+clear all;
+
+// Given data
+
+Vin=10; // Input RMS voltage(V)
+Ifsd=1; // Full scale deflection current(mA)
+Rm=250;// Internal resistance of voltmeter(ohms)
+
+// Solution
+
+Sdc=1/(Ifsd*10^-3); // DC sensitivity(K ohm/V)
+Sac=0.9*Sdc; //AC sensitivity(k Ohm/V)
+Rs=Sac*Vin-Rm;// Multiplier resistor(Ohm)
+printf(' The value of multiplier resistor = %.2f k Ohms \n',Rs/1000);
|