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 /1964/CH13/EX13.7 | |
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 '1964/CH13/EX13.7')
-rwxr-xr-x | 1964/CH13/EX13.7/ex13_7.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1964/CH13/EX13.7/ex13_7.sce b/1964/CH13/EX13.7/ex13_7.sce new file mode 100755 index 000000000..0b4e81445 --- /dev/null +++ b/1964/CH13/EX13.7/ex13_7.sce @@ -0,0 +1,13 @@ +//Chapter-13, Example 13.7, Page 390
+//=============================================================================
+clc
+clear
+//INPUT DATA
+Ie=10;//emitter current in mA
+b=150;//common-emitter DC current gain
+//CALCULATIONS
+a=b/(b+1);//common-base DC current gain
+Ic=a*Ie;//collector current in mA
+Ib=Ie-Ic;//base current in mA
+mprintf("Thus collector and base currents are %1.2f mA and %1.2f mA respectively",Ic,Ib);
+//=================================END OF PROGRAM=======================================================================================================
|