From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 608/CH10/EX10.02/10_02.sce | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 608/CH10/EX10.02/10_02.sce (limited to '608/CH10/EX10.02') 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 -- cgit