summaryrefslogtreecommitdiff
path: root/2300/CH3/EX3.11.2
diff options
context:
space:
mode:
Diffstat (limited to '2300/CH3/EX3.11.2')
-rwxr-xr-x2300/CH3/EX3.11.2/Ex3_2.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2300/CH3/EX3.11.2/Ex3_2.sce b/2300/CH3/EX3.11.2/Ex3_2.sce
new file mode 100755
index 000000000..acdcd1024
--- /dev/null
+++ b/2300/CH3/EX3.11.2/Ex3_2.sce
@@ -0,0 +1,16 @@
+
+//scilab 5.4.1
+//WINDOWS 7 Operating Systems
+//chapter 3 PROPERTIES OF SEMICONDUCTORS
+
+//example 2
+clc
+//Given data
+Sn=480; //Conductivity in S/m
+yn=0.38; //Electron mobility in m^2/(V*s)
+e=1.6*10^-19; //Charge of electron in C
+
+//Required Formula
+Nd=Sn/(e*yn); //Concentration of donor atoms per m^3
+ disp('m^-3',Nd,'Concentration of donor atoms');
+ //End