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.2/example2.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.2/example2.sce')
-rwxr-xr-x | 317/CH12/EX12.2/example2.sce | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/317/CH12/EX12.2/example2.sce b/317/CH12/EX12.2/example2.sce new file mode 100755 index 000000000..dbc05683e --- /dev/null +++ b/317/CH12/EX12.2/example2.sce @@ -0,0 +1,37 @@ +// calculate ac load line saturation, cutoff points, maximum peak-to-peak output voltage +// Electronic Principles +// By Albert Malvino , David Bates +// Seventh Edition +// The McGraw-Hill Companies +// Example 12-2, page 384 + +clear;clc; close; + +// Given data +R1=490;// in ohms +R2=68;// in ohms +Rc=120;// in ohms +Re=20;// in ohms +Vcc=30;// in volts +Rl=180;// in ohms +Vc=12;// in volts + +// 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=Vc-Ve; // dc collector-emitter voltage in volts +rc=Rc*Rl/(Rc+Rl);// rc=Rc||Rl +Icsat=Icq+Vceq/rc;// ac saturation current in amperes +Vcecutoff=Vceq+(Icq*rc);// in volts +// as supply voltage is 30 volts MPP<30 +MPP=2*Vceq ; // as (Icq*rc)>Vceq +disp("Amperes",Icsat,"ac load line saturation") +disp("Volts",Vcecutoff,"ac cutoff voltage") +disp("Volts",MPP,"maximum peak-to-peak output voltage=") + +// Results +// ac load line saturation is 273 mAmperes +// ac voltage at cutoff point is 19.7 volts +// maximum peak-to-peak output voltage is 18 volts |