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 --- 2444/CH4/EX4.4/ex4_4.sce | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 2444/CH4/EX4.4/ex4_4.sce (limited to '2444/CH4/EX4.4') diff --git a/2444/CH4/EX4.4/ex4_4.sce b/2444/CH4/EX4.4/ex4_4.sce new file mode 100755 index 000000000..f903480cd --- /dev/null +++ b/2444/CH4/EX4.4/ex4_4.sce @@ -0,0 +1,24 @@ +// Exa 4.4 +clc; +clear; +close; +format('v',7) +// Given data +I_B = 45;// in µA +I_B = I_B * 10^-6;// in A +I_C = 5.45;// in mA +I_C = I_C * 10^-3;// in A +I_E = I_B+I_C;// in A +I_E= I_E*10^3;// in mA +disp(I_E,"The value of I_E in mA is"); +I_E= I_E*10^-3;// in A +Alpha = I_C/I_E;// unit less +disp(Alpha,"The value of Alpha is"); +format('v',5) +Beta = I_C/I_B;// unit less +disp(Beta,"The value of Beta is"); +I_C = 10;// in mA +I_C = I_C * 10^-3;// in A +I_B = I_C/Beta;// in A +I_B = I_B * 10^6;// in µA +disp(I_B,"The required base current in µA is"); -- cgit