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/CH8/EX8.4/example4.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/CH8/EX8.4/example4.sce')
-rwxr-xr-x | 317/CH8/EX8.4/example4.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/317/CH8/EX8.4/example4.sce b/317/CH8/EX8.4/example4.sce new file mode 100755 index 000000000..a196a723e --- /dev/null +++ b/317/CH8/EX8.4/example4.sce @@ -0,0 +1,31 @@ +// find resistances to fit in the given VDB design +// Electronic Principles +// By Albert Malvino , David Bates +// Seventh Edition +// The McGraw-Hill Companies +// Example 8-4, page 269 + +clear;clc; close; + +// Given data +// 2N3904 +Bdc=100;// current gain +Vcc=10 ;// supply voltage in volts +Ic=10*10^-3;// collector current in amperes + +// Calculations +Ve=0.1*Vcc;// emitter voltage in volts +Ie=Ic;// collector current is equal to emitter current +Re=Ve/Ie;// emitter resistance in ohms +Rc=4*Re;// collector resistance in ohms +R2max=0.01*Bdc*Re;// in ohms +V2=Ve+0.7;// in volts +V1=Vcc-V2;// in volts +R1=(V1*R2max)/V2;// in ohms +disp("Ohms",R1,"R1=") +disp("Ohms",R2max,"R2=") +disp("Ohms",Rc," Collector Resistance=") +disp("Ohms",Re,"Emitter Resistance=") + +// Result +// R1=488 ohms, R2=100 ohms, Rc=400 ohms, Re=100 ohms |