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.11 | |
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.11')
-rwxr-xr-x | 2444/CH4/EX4.11/ex4_11.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2444/CH4/EX4.11/ex4_11.sce b/2444/CH4/EX4.11/ex4_11.sce new file mode 100755 index 000000000..fb654e74b --- /dev/null +++ b/2444/CH4/EX4.11/ex4_11.sce @@ -0,0 +1,17 @@ +// Exa 4.11
+clc;
+clear;
+close;
+format('v',5)
+// Given data
+V_CC = 8;// in V
+I_CR_C = 0.5;// in V
+R_C = 800;// in ohm
+V_CE = V_CC - I_CR_C;// in V
+disp(V_CE,"The collector emitter voltage in V is");
+I_C = I_CR_C/R_C;// in A
+Alpha = 0.96;// unit less
+Beta = Alpha/(1-Alpha);
+I_B = I_C/Beta;// in A
+I_B = I_B * 10^6;// in µA
+disp(I_B,"The Base current in µA is");
|