summaryrefslogtreecommitdiff
path: root/3428/CH19/EX12.19.7/Ex12_19_7.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:38:01 +0530
committerprashantsinalkar2017-10-10 12:38:01 +0530
commitf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch)
treeeb72842d800ac1233e9d890e020eac5fd41b0b1b /3428/CH19/EX12.19.7/Ex12_19_7.sce
parent7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff)
downloadScilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip
updated the code
Diffstat (limited to '3428/CH19/EX12.19.7/Ex12_19_7.sce')
-rw-r--r--3428/CH19/EX12.19.7/Ex12_19_7.sce16
1 files changed, 8 insertions, 8 deletions
diff --git a/3428/CH19/EX12.19.7/Ex12_19_7.sce b/3428/CH19/EX12.19.7/Ex12_19_7.sce
index 265ee50bb..3bfe06170 100644
--- a/3428/CH19/EX12.19.7/Ex12_19_7.sce
+++ b/3428/CH19/EX12.19.7/Ex12_19_7.sce
@@ -1,14 +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
+C=100 //ohm^-1cm^-1
+e=1.6*10^-19 //C
+u_e=2800 //cm^-1V^-1sec^-1
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
+a=5.658*10^-8 //cm
+V=a^3 //cm^3
+N_Sb=2.23*10^17 //No. of Sb atoms per cm^3
+N_Ge=8/V //No. of atoms of Ge
N=N_Sb/N_Ge
-disp(N,'No. of Antimony dopant atoms to be added to germanium(ppm)').
+disp(N,'No. of Antimony dopant atoms to be added to germanium(ppm)')