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 /2288/CH5/EX5.14.9 | |
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 '2288/CH5/EX5.14.9')
-rwxr-xr-x | 2288/CH5/EX5.14.9/ex5_14_9.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/2288/CH5/EX5.14.9/ex5_14_9.sce b/2288/CH5/EX5.14.9/ex5_14_9.sce new file mode 100755 index 000000000..db59be3c8 --- /dev/null +++ b/2288/CH5/EX5.14.9/ex5_14_9.sce @@ -0,0 +1,21 @@ +//Exa 5.14.9
+clc;
+clear;
+close;
+//Given data
+bita = 100;
+V_CE = 0.2;//in V
+V_BE = 0.8;// in V
+R_C= 500;// in Ω
+R_B= 44*10^3;// in Ω
+R_E= 1*10^3;// in Ω
+V_CC= 15;// in V
+V_GE= -15;// in V
+// Applying KVL to collector circuit
+// V_CC-V_GE - I_Csat*R_C-V_CE-I_E*R_E=0, but I_Csat= bita*I_Bmin and I_E= 1+bita
+I_Bmin= (V_CC-V_GE-V_CE)/(R_C*bita+(1+bita)*R_E);// in A
+// Applying KVL to the base emitter circuit
+// V_BB-I_Bmin*R_B-V_BE-I_E*R_E + V_CC=0
+V_BB= I_Bmin*R_B + V_BE + (1+bita)*I_Bmin*R_E-V_CC;// in V
+disp(I_Bmin*10^3,"The value of I_B(min) in mA is : ")
+disp(V_BB,"The value of V_BB in volts is : ")
|