diff options
Diffstat (limited to '1529/CH10/EX10.2/10_02.sce')
-rwxr-xr-x | 1529/CH10/EX10.2/10_02.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1529/CH10/EX10.2/10_02.sce b/1529/CH10/EX10.2/10_02.sce new file mode 100755 index 000000000..99149f9af --- /dev/null +++ b/1529/CH10/EX10.2/10_02.sce @@ -0,0 +1,9 @@ +//Chapter 10, Problem 2, figure 10.6
+clc;
+I=0.008; //total circuit current
+ra=10; //resistance of instrument
+V=100; //total p.d
+Va=I*ra; //calculating voltage across moving coil instrument
+Rm=(V-(I*ra))/I; //calculating value of multiplier
+printf("Multiplier Rm = %f K.ohm\n\n\n",Rm/1000);
+printf("A resistance of value 12.49 k ohm needs to be connected in series with the instrument.");
|