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
|
{
"metadata": {
"name": "Chapter_1"
},
"nbformat": 2,
"worksheets": [
{
"cells": [
{
"cell_type": "markdown",
"source": [
"<h1>Chapter 1: Semiconductor Basics<h1>"
]
},
{
"cell_type": "markdown",
"source": [
"<h3>Example 1.1(a), Page Number:29<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"'''Voltages of different models'''",
"",
"# variable declaration",
"V_bias=10.0; #bias voltage in volt",
"R_limit=1000; #limiting resistance in ohm",
"r_d =10.0; #r_d value",
"",
"#calculation",
"#IDEAL MODEL",
"print \"IDEAL MODEL\"",
"V_f=0; #voltage in volt",
"I_f=V_bias/R_limit; #foward current",
"V_R_limit=I_f*R_limit; #limiting voltage",
"print \"forward voltage = %.2f volts\" %V_f",
"print \"forward current = %.2f amperes\" %I_f",
"print \"voltage across limiting resistor = %.2f volts\" %V_R_limit",
"",
"#PRACTICAL MODEL",
"print \"\\nPRACTICAL MODEL\"",
"V_f=0.7; #voltage in volt",
"I_f=(V_bias-V_f)/R_limit; #foward current",
"V_R_limit=I_f*R_limit; #limiting voltage",
"print \"forward voltage = %.2f volts\" %V_f",
"print \"forward current = %.3f amperes\" %I_f",
"print \"voltage across limiting resistor = %.2f volts\" %V_R_limit",
"",
"#COMPLETE MODEL",
"print \"\\nCOMPLETE MODEL\"",
"I_f=(V_bias-0.7)/(R_limit+r_d); #foward current",
"V_f=0.7+I_f*r_d; #forward voltage",
"V_R_limit=I_f*R_limit; #limiting voltage",
"print \"forward voltage = %.3f volts\" %V_f",
"print \"forward current = %.3f amperes\" %I_f",
"print \"voltage across limiting resistor = %.2f volts\" %V_R_limit"
],
"language": "python",
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"IDEAL MODEL",
"forward voltage = 0.00 volts",
"forward current = 0.01 amperes",
"voltage across limiting resistor = 10.00 volts",
"",
"PRACTICAL MODEL",
"forward voltage = 0.70 volts",
"forward current = 0.009 amperes",
"voltage across limiting resistor = 9.30 volts",
"",
"COMPLETE MODEL",
"forward voltage = 0.792 volts",
"forward current = 0.009 amperes",
"voltage across limiting resistor = 9.21 volts"
]
}
],
"prompt_number": 1
},
{
"cell_type": "markdown",
"source": [
"<h3>Example 1.1(b), Page Number:29<h3>"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"'''voltages of different models'''",
"",
"# variable declaration",
"V_bias=5; #bias voltage in volt",
"I_R=1*10**-6; #current",
"R_limit=1000 #in Ohm",
"",
"#calculation",
"#IDEAL MODEL",
"print \"IDEAL MODEL\"",
"I_r=0.0; #current in ampere",
"V_R=V_bias; #voltages are equal",
"V_R_limit=I_r*R_limit; #limiting voltage",
"print \"Reverse voltage across diode = %.2f volts\" %V_R",
"print \"Reverse current through diode= %.2f amperes\" %I_r",
"print \"voltage across limiting resistor = %.2f volts\" %V_R_limit",
"",
"#PRACTICAL MODEL",
"print \"\\nPRACTICAL MODEL\"",
"I_r=0.0; #current in ampere",
"V_R=V_bias; #voltages are equal",
"V_R_limit=I_r*R_limit; #limiting voltage",
"print \"Reverse voltage across diode= %.2f volts\" %V_R",
"print \"Reverse current through diode = %.2f amperes\" %I_r",
"print \"voltage across limiting resistor = %.2f volts\" %V_R_limit",
"",
"#COMPLETE MODEL",
"print \"\\nCOMPLETE MODEL\"",
"I_r=I_R; #current in ampere",
"V_R_limit=I_r*R_limit; #limiting voltage",
"V_R=V_bias-V_R_limit; #voltage in volt",
"print \"Reverse voltage across diode = %.3f volts\" %V_R",
"print \"Reverse current through diode = %d micro Amp\" %(I_r*10**6)",
"print \"voltage across limiting resistor = %d mV\" %(V_R_limit*1000)"
],
"language": "python",
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"IDEAL MODEL",
"Reverse voltage across diode = 5.00 volts",
"Reverse current through diode= 0.00 amperes",
"voltage across limiting resistor = 0.00 volts",
"",
"PRACTICAL MODEL",
"Reverse voltage across diode= 5.00 volts",
"Reverse current through diode = 0.00 amperes",
"voltage across limiting resistor = 0.00 volts",
"",
"COMPLETE MODEL",
"Reverse voltage across diode = 4.999 volts",
"Reverse current through diode = 1 micro Amp",
"voltage across limiting resistor = 1 mV"
]
}
],
"prompt_number": 2
}
]
}
]
}
|