diff options
Diffstat (limited to '2384/CH6/EX6.4/ex6_4.sce')
-rwxr-xr-x | 2384/CH6/EX6.4/ex6_4.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2384/CH6/EX6.4/ex6_4.sce b/2384/CH6/EX6.4/ex6_4.sce new file mode 100755 index 000000000..f512b3a6f --- /dev/null +++ b/2384/CH6/EX6.4/ex6_4.sce @@ -0,0 +1,16 @@ +// Exa 6.4
+clc;
+clear;
+close;
+format('v',5)
+// Given data
+V=250;// full scale voltage reading in V
+Rm = 2;// in ohm
+Rsh = 2;// in m ohm
+Rsh = Rsh * 10^-3;// in ohm
+R = 5000;// in ohm
+Im = V/(Rm+R);// in A
+Ish = (Im*Rm)/Rsh;// in A
+// Current range of instrument
+I = Im+Ish;// in A
+disp(I,"The current range of instrument in A is");
|