diff options
Diffstat (limited to '3020/CH18/EX18.1/ex18_1.sce')
-rwxr-xr-x | 3020/CH18/EX18.1/ex18_1.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3020/CH18/EX18.1/ex18_1.sce b/3020/CH18/EX18.1/ex18_1.sce new file mode 100755 index 000000000..076fe5a2a --- /dev/null +++ b/3020/CH18/EX18.1/ex18_1.sce @@ -0,0 +1,20 @@ +clc;
+clear all;
+T=300;//temperature in kelvin
+ue=0.4;//electon mobility in m^2/V*s
+uh=0.2;//hole mobility in m^2/V*s
+k=1.38e-23;//boltzman constant
+h=6.626e-34;//planks constant
+m0=9.1e-31;
+e = 1.6e-19; // Charge of an electron
+Eg=0.7;
+mh=0.37*m0;
+me=0.55*m0;
+r = ((2*%pi*k*T)/(h^2))^1.5;// Temporary variable
+s = exp((-Eg*e)/(k*T));// Temporary variable
+ni=2*((me*mh)^(3/4))*r*s
+disp('m^-3',ni,'the intrinsic consentration is:')
+rho = ni*e*(ue+uh);// Intrinsic Conductivity
+disp('1/(ohm.meter)',rho,'The intrinsic conductivity is')
+p = 1/rho; // Intrinsic resistivity
+disp('Ohm.meter',p,'The intrinsic resistivity is')
|