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 /2885/CH6/EX6.8/ex6_8.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 '2885/CH6/EX6.8/ex6_8.sce')
-rwxr-xr-x | 2885/CH6/EX6.8/ex6_8.sce | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/2885/CH6/EX6.8/ex6_8.sce b/2885/CH6/EX6.8/ex6_8.sce new file mode 100755 index 000000000..cb862e51d --- /dev/null +++ b/2885/CH6/EX6.8/ex6_8.sce @@ -0,0 +1,35 @@ +//Calculate max and min value of emitter current
+clear;
+clc;
+//soltion
+//given
+
+//At B=50
+
+B=50; //dc beta
+Rc=75;//ohm //resistor connected to collector
+Re=100;//ohm //resistor connected to emitter
+Rb=10*10^3;//ohm //resistor connected to base
+Vcc=6;//V //Voltage supply across the collector resistor
+Vbe=0.3;//V //for germanium
+Ib=(Vcc-Vbe)/(Rb+(1+B)*Re); //Base current
+Ie=(1+B)*Ib;
+Vce=Vcc-(Rc+Re)*Ie
+printf("Minimum emitter current %.2f mA\n",Ie*10^3);
+printf("The collector to emitter volatge is %.2f V\n",Vce);
+
+//At B=300
+
+B1=300; //dc beta
+Ib1=(Vcc-Vbe)/(Rb+(1+B1)*Re); //Base current
+Ie1=(1+B1)*Ib1;
+Vce1=Vcc-(Rc+Re)*Ie1
+//Here Vce1= -1.4874 V but can never have negative voltage because Ie1 is wrong as it can't be more than saturation value therefore
+Ie1=Vcc/(Rc+Re);
+
+//And Vce=0 V
+
+Vce1=0;//V
+printf("Maximum emitter current %.2f mA\n",Ie1*10^3);
+printf("The collector to emitter volatge(saturation) is %.0f V\n",Vce1);
+
|