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
|
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Chapter 14 Thyristors"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 14.1 Page No 342"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The load current = 140.00 mA\n"
]
}
],
"source": [
"# given data\n",
"V1=15.## V\n",
"V2=1.## V\n",
"R= 100.## Ω\n",
"# The load current \n",
"I= (V1-V2)/R## A\n",
"I= I*10**3## mA\n",
"print \"The load current = %.2f mA\"%I"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 14.2 Page No 342"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The input voltage = 0.90 volts\n"
]
}
],
"source": [
"# given data\n",
"I= 4## mA\n",
"I=I*10**-3## A\n",
"V1=0.5## voltage across diode = %.2f V\n",
"R=100## Ω\n",
"# The input voltage \n",
"V= V1+I*R## V\n",
"print \"The input voltage = %.2f volts\"%V"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 14.6 Page No 351"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The emitter current = 50.00 mA\n"
]
}
],
"source": [
"# given data\n",
"Eta= 0.85#\n",
"V= 10.## V\n",
"V1= Eta*V## V\n",
"V= 20.## V\n",
"R= 400.## Ω\n",
"# The emitter current\n",
"I_E= V/R## A\n",
"I_E= I_E*10**3## mA\n",
"print \"The emitter current = %.2f mA\"%I_E"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 14.7 Page No 351"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The emitter supply voltage = 3.80 volts\n"
]
}
],
"source": [
"# given data\n",
"V_E= 1## V\n",
"R= 400## Ω\n",
"I= 7*10**-3## A\n",
"# The emitter supply voltage\n",
"V= V_E+I*R## V\n",
"print \"The emitter supply voltage = %.2f volts\"%V"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.9"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
|