diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /147/CH8/EX8.17/Example8_17.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '147/CH8/EX8.17/Example8_17.sce')
-rw-r--r-- | 147/CH8/EX8.17/Example8_17.sce | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/147/CH8/EX8.17/Example8_17.sce b/147/CH8/EX8.17/Example8_17.sce new file mode 100644 index 000000000..80cbaf7ad --- /dev/null +++ b/147/CH8/EX8.17/Example8_17.sce @@ -0,0 +1,34 @@ +close();
+clear;
+clc;
+Re = 200; //ohm
+R1 = 1000; //ohm
+R2 = 10*R1; //ohm
+Rc = 2000; //ohm
+Rl = Rc;
+Vbeq = 0.7; //V
+B = 100;
+Vcc = 15; //V
+//(a)
+Rb = (R1*R2)/(R1+R2); //ohm
+Vbb = R1*Vcc/(R1+R2); //V
+Icq = (Vbb-Vbeq)/(Rb/(B+1) + Re); //A
+mprintf("(a) Icq = %0.3f mA\n\n",Icq*1000);
+//(b)
+//KVL around collector circuit with Icq = Ieq
+Vceq = Vcc - Icq*(Re+Rc); //V
+mprintf("(b) Vceq = %0.2f V\n\n",Vceq);
+
+//(c)
+slope1 = 1/Rc + 1/Rl; //S
+Rac = 1/slope1;
+mprintf("(c) slope of ac load line, slope1 = %d mS\n\n",slope1*1000);
+
+//(d)
+slope2 = 1/(Rc+Re); //S
+Rdc = 1/slope2;
+mprintf("(d) slope of dc load line, slope2 = %0.3f mS\n\n",slope2*1000);
+Vcemax = Vceq + Icq*Rac;
+Ilm = (Vcemax-Vceq)/Rl; //A
+mprintf("(e) peak value of undistorted il, Ilm = %0.3f mA",Ilm*1000);
+
|