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 /2825/CH5/EX5.2 | |
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 '2825/CH5/EX5.2')
-rwxr-xr-x | 2825/CH5/EX5.2/Ex5_2.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2825/CH5/EX5.2/Ex5_2.sce b/2825/CH5/EX5.2/Ex5_2.sce new file mode 100755 index 000000000..330f9ecf2 --- /dev/null +++ b/2825/CH5/EX5.2/Ex5_2.sce @@ -0,0 +1,15 @@ +//Ex5_2 Pg-279
+clc
+
+Ic=5.255*10^(-3) //collector current in A
+Ib=100*10^(-6) //base current in A
+ICBO=5*10^(-6) //collector to base leakage current in A
+
+alpha_dc=(Ic-ICBO)/(Ib+Ic) //common current gain factor
+printf("Common current gain factor alpha_dc = %.2f",alpha_dc)
+
+Beta=alpha_dc/(1-alpha_dc) //Dc emitter current gain factor value in text book is wrong
+printf("\n Dc emitter current gain factor beta = %.2f",Beta)
+
+Ie=Ic+Ib //emitter current value in text book wrong
+printf("\n Emitter current = %.3f mA",Ie*10^3)
|