diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3554/CH4/EX4.3 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3554/CH4/EX4.3')
-rw-r--r-- | 3554/CH4/EX4.3/Ex4_3.sce | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/3554/CH4/EX4.3/Ex4_3.sce b/3554/CH4/EX4.3/Ex4_3.sce new file mode 100644 index 000000000..3a33e3ea9 --- /dev/null +++ b/3554/CH4/EX4.3/Ex4_3.sce @@ -0,0 +1,37 @@ +// Exa 4.3
+
+clc;
+clear all;
+
+// Given data
+// Refer Fig. 4.3 on page no. 77
+
+Rm=50; // Internal resistance of Voltmeter(ohms)
+Ifsd=2; // full sclae deflection current(mA)
+
+//Solution
+
+// For 10V range(V4 position of switch)
+V1=10;//Volts
+Rt1=V1/(Ifsd*10^-3); //total resistance in k Ohms
+R4=Rt1-Rm;
+printf('The value of R4 = %d Ohms \n',R4);
+// For a 50V range(V3 position of switch)
+V2=50;//Volts
+Rt2=V2/(Ifsd*10^-3);
+R3=Rt2-(R4+Rm);
+printf(' The value of R3 = %d k Ohms \n',R3/1000);
+
+// For 100V range(V2 position of switch)
+V3=100;//Volts
+Rt3=V3/(Ifsd*10^-3); //total resistance in k Ohms
+R2=Rt3-(R3+R4+Rm);
+printf(' The value of R2 = %d k Ohms \n',R2/1000);
+// For a 250V range(V3 position of switch)
+V4=250;//Volts
+Rt4=V4/(Ifsd*10^-3);
+R1=Rt4-(R2+R3+R4+Rm);
+printf(' The value of R1 = %d k Ohms \n',R1/1000);
+
+
+
|