diff options
Diffstat (limited to '2792/CH6/EX6.2/Ex6_2.sce')
-rwxr-xr-x | 2792/CH6/EX6.2/Ex6_2.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2792/CH6/EX6.2/Ex6_2.sce b/2792/CH6/EX6.2/Ex6_2.sce new file mode 100755 index 000000000..ea763da5b --- /dev/null +++ b/2792/CH6/EX6.2/Ex6_2.sce @@ -0,0 +1,11 @@ +clc
+e = 1.6*10^-19
+disp("e= "+string(e)+"C")//initializing value of charge of electron
+apsilen = 11.9*8.85*10^-12
+disp("apsilen = "+string(apsilen)+"F/m") //initializing value of relative permitivity
+A= 7.85*10^-9
+disp("A= "+string(A)+"m^2") //initializing value of area
+S= 3*10^24
+disp("d(1/c2)/dV = S= "+string(S)+"F^-2V^-1") //initializing value of area of slope of the (1/c2) vs V relation
+Nd = (2/(S*e*apsilen*(A^2)))
+disp("The doping density in silicon is ,Nd = (2/(S*e*Es*(A^2)))= "+string(Nd)+"m^-3")//calculation
|