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 /284/CH9/EX9.10 | |
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 '284/CH9/EX9.10')
-rwxr-xr-x | 284/CH9/EX9.10/ex_10.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/284/CH9/EX9.10/ex_10.sce b/284/CH9/EX9.10/ex_10.sce new file mode 100755 index 000000000..db2a94dac --- /dev/null +++ b/284/CH9/EX9.10/ex_10.sce @@ -0,0 +1,14 @@ +// Chapter 9_The bipolar transistor
+//Caption_Ebers Moll model
+//Ex_10//page 394
+T=300
+alpha_f=0.99
+alpha_r=0.20
+Ic=.001
+Ib=50*10^-6
+Vt=0.0259
+x=Ic*(1-alpha_r)+Ib
+y=alpha_f*Ib-((1-alpha_f)*Ic)
+z=alpha_f/alpha_r
+VCEsat=Vt*log(x*z/y)
+printf('The collector emitter saturation voltage is %1.3f V',VCEsat)
\ No newline at end of file |