diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /608/CH10/EX10.02 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '608/CH10/EX10.02')
-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 |