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 --- 2384/CH6/EX6.4/ex6_4.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 2384/CH6/EX6.4/ex6_4.sce (limited to '2384/CH6/EX6.4') 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"); -- cgit