diff options
Diffstat (limited to '608/CH10/EX10.02/10_02.sce')
-rwxr-xr-x | 608/CH10/EX10.02/10_02.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/608/CH10/EX10.02/10_02.sce b/608/CH10/EX10.02/10_02.sce new file mode 100755 index 000000000..76cd8886b --- /dev/null +++ b/608/CH10/EX10.02/10_02.sce @@ -0,0 +1,13 @@ +//Problem 10.02: A moving-coil instrument having a resistance of 10 ohms, gives a f.s.d. when the current is 8 mA. Calculate the value of the multiplier to be connected in series with the instrument so that it can be used as a voltmeter for measuring p.d.s. up to 100 V.
+
+//initializing the variables:
+V = 100; // in volts
+I = 0.008; // in Amperes
+ra = 10; // in ohms
+
+
+//calculation:
+Rm = (V/I) - ra
+
+printf("\n\n Result \n\n")
+printf("\n value of the multiplier to be connected in series = %.3Eohms\n", Rm)
\ No newline at end of file |