blob: 0746fec9b854242862dbfe8f8fb592b1f9d83c7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clc;
clear all;
T=300;//temperature in kelvin
k=1.38e-23;//boltzman constant
h=6.626e-34;//planks constant
e = 1.6e-19; // Charge of an electron
Eg=1.1;
mo =9.1e-31; // mass of electron
me=0.31; // Effective mass of electron
r = ((2*%pi*k*T*me*mo)/(h^2))^1.5;// Temporary variable
s = exp((-Eg*e)/(2*k*T));// Temporary variable
ni=2*r*s
disp('m^-3',ni,'the intrinsic concentration is:')
|