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
|
{
"metadata": {
"name": "Ch_1"
},
"nbformat": 2,
"worksheets": [
{
"cells": [
{
"cell_type": "markdown",
"source": [
"<h1>Chapter 1: Integrated circuit fabrication<h1>"
]
},
{
"cell_type": "markdown",
"source": [
"<h3>Example 1.1, Page No:23<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"'''sheet resistance of P-type diffusion'''",
"",
"#Variable Declaration:",
"Rs=200.0 #Sheet resistance of p-type diffusion in ohm/square",
"R=5000.0 #Resistance in ohm",
"",
"#Calculations:",
"luponw= R/Rs #calculating dimentions of pattern ",
"",
"#Results:",
"print('L upon W =%d'%luponw)",
"print('\\n5kohm resistor can be fabricated by using a pattern of %d mil*1mil'%luponw)"
],
"language": "python",
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"L upon W =25",
"",
"5kohm resistor can be fabricated by using a pattern of 25 mil*1mil"
]
}
],
"prompt_number": 3
},
{
"cell_type": "markdown",
"source": [
"<h3>Example 1.2, Page No:23<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"'''sheet resistance of polysilicon layer'''",
"",
"#Variable Declaration:",
"Rs=30.0 #Sheet resistance of p-type diffusion in ohm/square",
"R=1000.0 #resistance in ohm",
"",
"#Calculations:",
"luponw=R/Rs #calculating dimentions of pattern ",
"",
"#Results:",
"print('L upon W =100/3')",
"print('\\n1kohm resistor can be fabricated by using a pattern of 100 mil* 3 mil')"
],
"language": "python",
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"L upon W =100/3",
"",
"1kohm resistor can be fabricated by using a pattern of 100 mil* 3 mil"
]
}
],
"prompt_number": 4
}
]
}
]
}
|