diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2444/CH4/EX4.4 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2444/CH4/EX4.4')
-rwxr-xr-x | 2444/CH4/EX4.4/ex4_4.sce | 24 |
1 files changed, 24 insertions, 0 deletions
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");
|