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 /317/CH12/EX12.6/example6.sce | |
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 '317/CH12/EX12.6/example6.sce')
-rwxr-xr-x | 317/CH12/EX12.6/example6.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/317/CH12/EX12.6/example6.sce b/317/CH12/EX12.6/example6.sce new file mode 100755 index 000000000..f932083b2 --- /dev/null +++ b/317/CH12/EX12.6/example6.sce @@ -0,0 +1,28 @@ +// calculate dc collector current,dc collector-emitter voltage,ac resistance seen by collector +// Electronic Principles +// By Albert Malvino , David Bates +// Seventh Edition +// The McGraw-Hill Companies +// Example 12-6, page 391 + +clear;clc; close; +// Given data +R1=50;// in ohms +R2=100;// in ohms +Re=16;// in ohms +Vcc=12;// in volts +Rl=16;// in ohms + +// Calculations +Vb=R2*Vcc/(R2+R1);// in volts +Ve=Vb-0.7; +Ie=Ve/Re;// in amperes +Icq=Ie;// dc collector current in amperes +Vceq=Vcc-Ve;// dc collector-emitter voltage in volts +re=Re/2;// in ohms,re=Re||Rl +disp("Amperes",Icq,"dc collector current=") +disp("Volts",Vceq,"dc collector-emitter voltage=") +disp("ohms",re,"ac resistance =") + +// Results +// Icq=456 mAmperes,Vceq=4.7 ohms,re=8 ohms |