1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
|
{
"metadata": {
"celltoolbar": "Raw Cell Format",
"name": "",
"signature": "sha256:4fe36e3e0da1a77ee9793bbcdad9ed8d44455b05327e70b42ad389ca8fb3e239"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 2: Semiconductor Physics"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 2.21.1,Page number 2-47"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"#Given Data:\n",
"\n",
"ro=1.72*10**-8 #resistivity of Cu\n",
"s=1/ro #conductivity of Cu\n",
"n=10.41*10**28 #no of electron per unit volume\n",
"e=1.6*10**-19 #charge on electron\n",
"\n",
"u=s/(n*e)\n",
"print\"mobility of electron in Cu =\",round(u,4),\"m**2/volt-sec\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"mobility of electron in Cu = 0.0035 m**2/volt-sec\n"
]
}
],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 2.21.2,Page number 2-47"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"#Given Data:\n",
"\n",
"m=63.5 #atomic weight\n",
"u=43.3 #mobility of electron\n",
"e=1.6*10**-19 #charge on electron\n",
"N=6.02*10**23 #Avogadro's number\n",
"d=8.96 #density\n",
"\n",
"Ad=N*d/m #Atomic density\n",
"n=1*Ad\n",
"\n",
"ro=1/(n*e*u)\n",
"\n",
"print\"Resistivity of Cu =\",\"{0:.3e}\".format(ro),\"ohm-cm\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Resistivity of Cu = 1.699e-06 ohm-cm\n"
]
}
],
"prompt_number": 4
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 2.21.3,Page number 2-47"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"#Given Data:\n",
"\n",
"e=1.6*10**-19 #charge on electron\n",
"ne=2.5*10**19 #density of carriers\n",
"nh=ne #for intrinsic semiconductor\n",
"ue=0.39 #mobility of electron\n",
"uh=0.19 #mobility of hole\n",
"\n",
"s=ne*e*ue+nh*e*uh #conductivity of Ge\n",
"ro=1/s #resistivity of Ge\n",
"\n",
"print\"Resistivity of Ge =\",round(ro,4),\"ohm-m\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Resistivity of Ge = 0.431 ohm-m\n"
]
}
],
"prompt_number": 6
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 2.21.6,Page number 2-49"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"#Given Data:\n",
"\n",
"c=5*10**28 #concentration of Si atoms\n",
"e=1.6*10**-19 #charge on electron\n",
"u=0.048 #mobility of hole\n",
"s=4.4*10**-4 #conductivity of Si\n",
"\n",
"#since millionth Si atom is replaced by an indium atom\n",
"\n",
"n=c*10**-6\n",
"sp=u*e*n #conductivity of resultant\n",
"\n",
"print\"conductivity =\",sp,\"mho/m\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"conductivity = 384.0 mho/m\n"
]
}
],
"prompt_number": 10
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 2.21.7,Page number 2-49"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"import math\n",
"\n",
"#Given Data:\n",
"\n",
"m=28.1 #atomic weight of Si\n",
"e=1.6*10**-19 #charge on electron\n",
"N=6.02*10**26 #Avogadro's number\n",
"d=2.4*10**3 #density of Si\n",
"p=0.25 #resistivity\n",
"\n",
"#no. of Si atom/m**3\n",
"Ad=N*d/m #Atomic density\n",
"\n",
"#impurity level is 0.01 ppm i.e. 1 atom in every 10**8 atoms of Si\n",
"n=Ad/10**8 #no of impurity atoms\n",
"\n",
"#since each impurity produce 1 hole\n",
"nh=n\n",
"print\"1) hole concentration =\",\"{0:.3e}\".format(n),\"holes/m**3\"\n",
"up=1/(e*p*nh)\n",
"print\"2) mobility =\",round(up,4),\"m**2/volt.sec\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"1) hole concentration = 5.142e+20 holes/m**3\n",
"2) mobility = 0.0486 m**2/volt.sec\n"
]
}
],
"prompt_number": 12
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}
|