summaryrefslogtreecommitdiff
path: root/3665/CH8/EX8.3/Ex8_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3665/CH8/EX8.3/Ex8_3.sce')
-rw-r--r--3665/CH8/EX8.3/Ex8_3.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3665/CH8/EX8.3/Ex8_3.sce b/3665/CH8/EX8.3/Ex8_3.sce
new file mode 100644
index 000000000..b9c66e33c
--- /dev/null
+++ b/3665/CH8/EX8.3/Ex8_3.sce
@@ -0,0 +1,19 @@
+clc//
+//
+//
+
+//Variable declaration
+T=300; //temperature(K)
+k=1.38*10^-23; //boltzmann constant
+m=9.109*10^-31; //mass(kg)
+h=6.626*10^-34; //plancks constant
+Eg=0.7; //energy(eV)
+e=1.6*10^-19;
+
+//Calculation
+x=(2*%pi*m*k/h^2)^(3/2);
+y=exp(-Eg*e/(2*k*T));
+ni=2*x*(T^(3/2))*y; //concentration of intrinsic charge carriers(per m^3)
+
+//Result
+printf("\n concentration of intrinsic charge carriers is %0.2f *10^18 per m^3",ni/10^18)