summaryrefslogtreecommitdiff
path: root/3492/CH5/EX5.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3492/CH5/EX5.9
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '3492/CH5/EX5.9')
-rw-r--r--3492/CH5/EX5.9/Ex5_9.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3492/CH5/EX5.9/Ex5_9.sce b/3492/CH5/EX5.9/Ex5_9.sce
new file mode 100644
index 000000000..952fd7528
--- /dev/null
+++ b/3492/CH5/EX5.9/Ex5_9.sce
@@ -0,0 +1,19 @@
+clc
+//Chapter5
+//Ex_9
+//Given
+e=1.6*10^-19 // in coulombs
+Nd=10^17 //in cm^-3
+Na=9*10^16 //in cm^-3
+//part(a)
+ue1=800 // at 300 kelvin ue in cm2/V/s
+sigma1=e*Nd*ue1
+ue2=420 // at 400 kelvin ue in cm2/V/s
+sigma2=e*Nd*ue2
+disp(sigma2,sigma1,"when Si sample is doped with 10^17 arsenic atoms/cm3, the conductivity of the sample at 300K and 400K in ohm^-1*cm^-1 is")
+//part(b)
+ue1=600 // at 300 kelvin ue in cm2/V/s
+sigma1=e*(Nd-Na)*ue1
+ue2=400 // at 400 kelvin ue in cm2/V/s
+sigma2=e*(Nd-Na)*ue2
+disp(sigma2,sigma1,"when n-type Si is further doped with 9*10^16 boron atoms /cm3, the conductivity of the sample at 300K and 400K in ohm^-1*cm^-1 is")