summaryrefslogtreecommitdiff
path: root/2102/CH1/EX1.17/exa_1_17.sce
diff options
context:
space:
mode:
Diffstat (limited to '2102/CH1/EX1.17/exa_1_17.sce')
-rwxr-xr-x2102/CH1/EX1.17/exa_1_17.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2102/CH1/EX1.17/exa_1_17.sce b/2102/CH1/EX1.17/exa_1_17.sce
new file mode 100755
index 000000000..b4a2100c1
--- /dev/null
+++ b/2102/CH1/EX1.17/exa_1_17.sce
@@ -0,0 +1,14 @@
+// Exa 1.17
+clc;
+clear;
+close;
+// Given data
+ni= 1.8*10^16;// in /m^3
+q= 1.6*10^-19;// in C
+em=0.14;// electron mobility in m^2/v-sec
+hm=0.05;// hole mobility in m^2/v-sec
+resistivity= 1.2;// in Ωm
+n= 1/(q*em*resistivity);// in /m^3
+disp(n,"The electron concenration in /m^3 is :")
+p= ni^2/n;// in /m^3
+disp(p,"The hole concentration in /m^3 is : ")