summaryrefslogtreecommitdiff
path: root/SEMICONDUCTOR_DEVICES_PHYSICS_AND_TECHNOLOGY_by_S._M._SZE/Chapter4_2.ipynb
blob: c3109b03d83bc0ae3adfc83dff9810c3b4b1a15d (plain)
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
{
 "metadata": {
  "name": ""
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "Chapter 4: p-n Junction"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 4.1, Page92"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#initialisation of variable\n",
      "from math import *\n",
      "Na=10**18;#concentration\n",
      "Nd=10**15;#concentration\n",
      "N=9.65*10**9\n",
      "\n",
      "#calculation\n",
      "Vb=.0259*log(Na*Nd/N**2);#built in potential\n",
      "\n",
      "#result\n",
      "print\"built in potential is\",round(Vb,3),\"V\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Populating the interactive namespace from numpy and matplotlib\n",
        "built in potential is 0.777 V\n"
       ]
      }
     ],
     "prompt_number": 1
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example4.2 Page96"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#initialisation of variable\n",
      "from math import *\n",
      "Na=10**19;#concentration\n",
      "Nd=10**16#concentration\n",
      "N=9.65*10**9\n",
      "q=1.6*10**-19#charge\n",
      "Es=10**-12;#constant\n",
      "\n",
      "#calculation\n",
      "Vb=.0259*log(Na*Nd/N**2);#voltage\n",
      "W=(2*Es*Vb/q/Nd)**.5;#width\n",
      "Em=q*W*Na/Es;#field\n",
      "\n",
      "#result\n",
      "print\"built in potential is\",round(Vb,3),\"V\"\n",
      "print\"depletion layer width is\",round(W*10**4,3),\"micro-m\"\n",
      "print\"maximum field at zero bias is\",round(Em/10299,0),\"V/cm\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "built in potential is 0.896 V\n",
        "depletion layer width is 0.335 micro-m\n",
        "maximum field at zero bias is 5200.0 V/cm\n"
       ]
      }
     ],
     "prompt_number": 1
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example4.3 Page 99"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#initialisation of variable\n",
      "from math import *\n",
      "I=10**20;#impurity\n",
      "W=.50;#width\n",
      "q=1.6*10**-19;#charge\n",
      "E=8.85*10**-14#constant\n",
      "N=9.65*10**9;#concentration\n",
      "\n",
      "#calculation\n",
      "Em=q*I*W**2/(8*11.9*E);#maximum field\n",
      "Vb=.0259*I*W/N/2;#built-in voltage\n",
      "\n",
      "#result\n",
      "print\"maximum field is\",round(Em/10**8,0),\"V/cm\"\n",
      "print\"built-in voltage is\",round(Vb/10**8,2),\"V\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "maximum field is 4748.0 V/cm\n",
        "built-in voltage is 0.67 V\n"
       ]
      }
     ],
     "prompt_number": 14
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example4.4 Page101"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#initialisation of variable\n",
      "from math import *\n",
      "Na=2*10**19;#concentration\n",
      "Nd=8*10**15;#concentration\n",
      "V=4.0;#voltage\n",
      "N=9.65*10**9\n",
      "q=1.6*10**-19;#charge\n",
      "E=10.53*10**-13#constant\n",
      "\n",
      "#calculation\n",
      "Vb=.0259*log(Na*Nd/N**2);#voltage at zero bias\n",
      "W1=(2*E*Vb/q/Nd)**.5;#width\n",
      "C1=E/W1;#capacitance at zero bias\n",
      "W2=(2*E*(Vb+V)/q/Nd)**.5;#width\n",
      "C2=E/W2;#capacitance at reverse bias\n",
      "\n",
      "#result\n",
      "print\"capacitance at zero bias is\",round(C1,11),\"F/cm^2\"\n",
      "print\"capacitance at reverse bias is\",round(C2,11),\"F/cm^2\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "capacitance at zero bias is 2.723e-08 F/cm^2\n",
        "capacitance at reverse bias is 1.172e-08 F/cm^2\n"
       ]
      }
     ],
     "prompt_number": 2
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 4.5 Page109"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#initialisation of variable\n",
      "from math import *\n",
      "Na=5*10**16;#concentration\n",
      "Nd=10**16;#concentration\n",
      "N=9.65*10**9\n",
      "Dn=21\n",
      "A=2*10**-4;#area\n",
      "Dp=10\n",
      "T=5*10**-7;#time\n",
      "q=1.6*10**-19;#charge\n",
      "\n",
      "#calculation\n",
      "J=q*(N**2)*(((Dp/T)**.5)/Nd +((Dn/T)**.5)/Na);#current density\n",
      "I=A*J;#ideal reverse current\n",
      "\n",
      "#result\n",
      "print\"ideal reverse current is\",round(I,17),\"A\"\n"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "ideal reverse current is 1.72e-15 A\n"
       ]
      }
     ],
     "prompt_number": 3
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example4.6 Page110"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#initialisation of variable\n",
      "from math import *\n",
      "Na=5*10**16;#concentration\n",
      "Nd=10**16;#concentration\n",
      "N=9.65*10**9\n",
      "V=4;#voltage\n",
      "E=10.53*10**-13;#constant\n",
      "T=5*10**-7;#time\n",
      "q=1.6*10**-19;#charge\n",
      "\n",
      "#calculation\n",
      "W=(2*E*(Na+Nd)/(q*Na*Nd)*(.0259*log(Na*Nd/N**2)+V))**.5;#width\n",
      "J=q*N*W/T;#current density\n",
      "\n",
      "#result\n",
      "print\"generation current density is\",round(J,9),\"A/cm^2\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "generation current density is 2.68e-07 A/cm^2\n"
       ]
      }
     ],
     "prompt_number": 4
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 4.7 Page115"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#initialisation of variable\n",
      "from math import *\n",
      "Nd=8*10**15;#concentration\n",
      "V=1.00;#voltage\n",
      "L=5*10**-4;#length of holes\n",
      "q=1.6*10**-19;#charge\n",
      "N=9.65*10**9\n",
      "\n",
      "#calculation\n",
      "Q=q*L*N**2/Nd*(e**(1/.0259)-1);#minority carriers\n",
      "\n",
      "#result\n",
      "print\"stored minority carriers is\",round(Q,2),\"C/cm^2\"\n",
      "print\"the answer in book is slightly wrong\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "stored minority carriers is 0.05 C/cm^2\n",
        "the answer in book is slightly wrong\n"
       ]
      }
     ],
     "prompt_number": 16
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example4.8, Page120"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#initialisation of variable\n",
      "from math import *\n",
      "Nd=5*10**16;#concentration\n",
      "E=10.53*10**-13;#constant\n",
      "N=5.7*10**5\n",
      "q=1.6*10**-19;#charge\n",
      "\n",
      "#calculation\n",
      "Vb=E*N**2/2/q/Nd;#breakdown voltage\n",
      "\n",
      "#result\n",
      "print\"breakdown voltage is\",round(Vb,1),\"V\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "breakdown voltage is 21.4 V\n"
       ]
      }
     ],
     "prompt_number": 34
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example4.9 Page122"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#initialisation of variable\n",
      "from math import *\n",
      "Nb=8*10**14;#concentration\n",
      "E=8.85*10**-14;#constant\n",
      "q=1.6*10**-19;#charge\n",
      "V=500;#voltage\n",
      "W=20*10**-4;#width\n",
      "\n",
      "#calculation\n",
      "Wm=(24.8*E*V/q/Nb)**.5;#width\n",
      "Vb=V*(W/Wm)*(2-(W/Wm));#breakdown voltage\n",
      "\n",
      "#result\n",
      "print\"width is\",round(Wm*10**4,1),\"micro-m\"\n",
      "print\"breakdown voltage is\",round(Vb,3),\"V\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "width is 29.3 micro-m\n",
        "breakdown voltage is 449.771 V\n"
       ]
      }
     ],
     "prompt_number": 10
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example4.10 Page126"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#initialisation of variable\n",
      "from math import *\n",
      "V=1.60;#voltage\n",
      "C1=10**16;#concentration\n",
      "C2=3*10**19;#concentration\n",
      "D1=12.00;#dielectric constant\n",
      "D2=13.00;#dielectric constant\n",
      "E=8.85*10**-14;#constant\n",
      "q=1.6*10**-19;#charge\n",
      "\n",
      "#calculation\n",
      "V1=D2*C2*V/(D1*C1+D2*C2);#voltage\n",
      "V2=D1*C1*V/(D1*C1+D2*C2);#voltage\n",
      "W1=(2*D1*D2*E*C2*V/(C1*D1+C2*D2)/q/C1)**.5;#depletion width\n",
      "W2=(2*D1*D2*E*C1*V/(C1*D1+C2*D2)/q/C2)**.5;#depletion width\n",
      "\n",
      "#result\n",
      "print\"electrostatic potential 1 is\",round(V1,2),\"V\"\n",
      "print\"electrostatic potential 2 is\",round(V2,5),\"V\"\n",
      "print\"depletion width 1 is\",round(W1,8),\"cm\"\n",
      "print\"depletion width 2 is\",round(W2,11),\"cm\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "electrostatic potential 1 is 1.6 V\n",
        "electrostatic potential 2 is 0.00049 V\n",
        "depletion width 1 is 4.608e-05 cm\n",
        "depletion width 2 is 1.536e-08 cm\n"
       ]
      }
     ],
     "prompt_number": 11
    }
   ],
   "metadata": {}
  }
 ]
}