diff options
Diffstat (limited to '284/CH3/EX3.5')
-rwxr-xr-x | 284/CH3/EX3.5/ex_5.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/284/CH3/EX3.5/ex_5.sce b/284/CH3/EX3.5/ex_5.sce new file mode 100755 index 000000000..6137586ca --- /dev/null +++ b/284/CH3/EX3.5/ex_5.sce @@ -0,0 +1,11 @@ +// Chapter 3_The Semiconductor in Equilibrium
+//Caption_Extrinsic Semiconductor
+//Ex_5//page 101
+T=300 //temperature in kelvin
+Nc=2.8*(10^19);
+Nv=1.04*(10^19); //
+Fe=0.25 //Fermi energy is FeeV below the conduction band
+Eg=1.12 // Bandgap energy of silicon is Eg in eV
+no=Nc*exp(-Fe/0.0259);
+po=Nv*exp(-(Eg-Fe)/0.0259);
+printf('Thermal equilibrium concentration of electrons is %1.2fd cm ^-3 and of holes is %1.2fd cm^-3 ',no,po)
\ No newline at end of file |