summaryrefslogtreecommitdiff
path: root/3428/CH19/EX12.19.7/Ex12_19_7.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3428/CH19/EX12.19.7/Ex12_19_7.sce
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 '3428/CH19/EX12.19.7/Ex12_19_7.sce')
-rw-r--r--3428/CH19/EX12.19.7/Ex12_19_7.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3428/CH19/EX12.19.7/Ex12_19_7.sce b/3428/CH19/EX12.19.7/Ex12_19_7.sce
new file mode 100644
index 000000000..265ee50bb
--- /dev/null
+++ b/3428/CH19/EX12.19.7/Ex12_19_7.sce
@@ -0,0 +1,14 @@
+//Section-12,Example-7,Page no.-SS.61
+//To find the no.of charge carriers essential to get te given conductivity and the no. of Antimony dopant atoms to be added to germanium.
+clc;
+C=100
+e=1.6*10^-19
+u_e=2800
+N_D=C/(e*u_e)
+disp(N_D,'No.of charge carriers essential to get the given conductivity(per cm^3)')
+a=5.658*10^-8
+V=a^3
+N_Sb=2.23*10^17
+N_Ge=8/V
+N=N_Sb/N_Ge
+disp(N,'No. of Antimony dopant atoms to be added to germanium(ppm)').