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.6 | |
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.6')
-rwxr-xr-x | 2885/CH6/EX6.6/ex6_6.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2885/CH6/EX6.6/ex6_6.sce b/2885/CH6/EX6.6/ex6_6.sce new file mode 100755 index 000000000..d700133f4 --- /dev/null +++ b/2885/CH6/EX6.6/ex6_6.sce @@ -0,0 +1,18 @@ +//Calculate the collector current and change in it if B is changed by three times of previous B
+clear;
+clc;
+//soltion
+//given
+B=50; //dc beta
+Rc=2*10^3;//ohm //resistor connected to collector
+Rb=300*10^3;//ohm //resistor connected to base
+Vcc=9;//V //Voltage supply across the collector as it is PNP so taking positive
+Ib=Vcc/(Rb+B*Rc); //Base current
+Ic=B*Ib; //Colletor current
+printf("Collector current (B=50)= %.3f mA\n",Ic*1000);
+//Now B=150
+B=3*B; //three times of previous B
+Ib1=Vcc/(Rb+B*Rc); //Base current
+Ic1=B*Ib1; //Colletor current
+printf("Collector current (B=150)= %.2f mA\n",Ic1*1000);
+printf("The factor at which collector current increases %.0f",Ic1/Ic);
|