summaryrefslogtreecommitdiff
path: root/sample_notebooks/srinivasparupalli/CHAPTER_3.ipynb
blob: b5416e8b031bf6b1c03010d7d1df1d8d47775355 (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
{
 "metadata": {
  "name": "",
  "signature": "sha256:f24ed387c9c220910a22c3b53359904a6b96b4e1c0307b247f6eff7ab0a91f27"
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "CHAPTER 3 - Semiconductor devices switching mode operation"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "EXAMPLE 3.3 -PG NO.88"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#page no.88\n",
      "#example 3.3#\n",
      "#clears the screen#\n",
      "#clears already existing varibales#\n",
      "a=10.#\n",
      "#input voltage (in volts)#\n",
      "b=.7#\n",
      "#transistor voltage(saturation voltage)#\n",
      "c=5.#\n",
      "#resistor b/w input voltage and the transistor#\n",
      "d=10.#\n",
      "#input voltage from collector side#\n",
      "e=0.1#\n",
      "#transistor voltage(saturation voltage from collector side)#\n",
      "f=2.#\n",
      "#resistor in kilo-ohm#\n",
      "g=30.#\n",
      "h=-10.#\n",
      "#input voltage from emitter side#\n",
      "I=(a-b)/c#\n",
      "#base current of transistor from given figure#\n",
      "print('the base current of given circuit is (in mA):')\n",
      "print(I)\n",
      "#base current is in mA#\n",
      "K=(d-e)/f\n",
      "#collector current of transistor from given figure#\n",
      "print('the collector current of given circuit is (in mA):')\n",
      "print(round(K))\n",
      "#collector current in mA(saturation current)#\n",
      "L=K/g\n",
      "print('base current required for the transistor to be in saturation is (in mA):')\n",
      "print(L)\n",
      "#current in mA#\n",
      "M=(h-b)/c\n",
      "print('the base current is (in mA):')\n",
      "print(M)\n",
      "#base current in mA#"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "the base current of given circuit is (in mA):\n",
        "1.86\n",
        "the collector current of given circuit is (in mA):\n",
        "5.0\n",
        "base current required for the transistor to be in saturation is (in mA):\n",
        "0.165\n",
        "the base current is (in mA):\n",
        "-2.14\n"
       ]
      }
     ],
     "prompt_number": 1
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "EXAMPLE 3.4.a- PG NO.95"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#page no. 95\n",
      "#example 3.4(a)#\n",
      "#clears the screen#\n",
      "#clears already existing variables#\n",
      "print('when the input voltage V(i)= -5V, the JFET is opening at point A, where I(D)=0 and V(0)=V(DD)=20V')\n",
      "print('this corresponds to the switch in OFF state')"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "when the input voltage V(i)= -5V, the JFET is opening at point A, where I(D)=0 and V(0)=V(DD)=20V\n",
        "this corresponds to the switch in OFF state\n"
       ]
      }
     ],
     "prompt_number": 2
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "EXAMPLE 3.4.b- PG NO. 95"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#page no. 95\n",
      "#example 3.4(b)#\n",
      "#clears the screen#\n",
      "#clears the command window#\n",
      "print('when V(i)=0V, the JFET is operating at point B, where I(D)=3.8mA and V(0)=1V')\n",
      "print('this corresponds to the switch in ON state')\n",
      "#the answers have been taken directly from the figure#"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "when V(i)=0V, the JFET is operating at point B, where I(D)=3.8mA and V(0)=1V\n",
        "this corresponds to the switch in ON state\n"
       ]
      }
     ],
     "prompt_number": 3
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "EXAMPLE 3.5.a - PG NO.96"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#page no. 96\n",
      "#example 3.5(a)#\n",
      "#clears the window#\n",
      "#clears already existing variables#\n",
      "print('when V(i)=0, the transistor is cutoff because the voltage between the gate and the source is below the threshold voltage. Correspondingly the output voltage V(0)=5V(point (N) as in figure)')\n",
      "#answer according to the cuts of load line#"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "when V(i)=0, the transistor is cutoff because the voltage between the gate and the source is below the threshold voltage. Correspondingly the output voltage V(0)=5V(point (N) as in figure)\n"
       ]
      }
     ],
     "prompt_number": 4
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "EXAMPLE 3.5.b -PG NO.96"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#page 96\n",
      "#example 3.5(b)#\n",
      "#clears the window#\n",
      "#clears already existing variables#\n",
      "print('when V(i)=5V, the transistor is operating at point M and V(0)=0')\n",
      "print('this corresponds to ON state!')"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "when V(i)=5V, the transistor is operating at point M and V(0)=0\n",
        "this corresponds to ON state!\n"
       ]
      }
     ],
     "prompt_number": 5
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "EXAMPLE 3.7.a - PG NO. 97"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#page no. 97\n",
      "#example 3.7(a)#\n",
      "#clears the screen#\n",
      "#clears existing variables#\n",
      "print('when V(i)=0, the transistor T(1) is operating at point B')\n",
      "t=5.#\n",
      "#input voltage as given in question#\n",
      "x=0.#\n",
      "V=t-x#\n",
      "#output voltage in volts#\n",
      "print('here V(0)(in volts)=')\n",
      "print(V)"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "when V(i)=0, the transistor T(1) is operating at point B\n",
        "here V(0)(in volts)=\n",
        "5.0\n"
       ]
      }
     ],
     "prompt_number": 6
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "EXAMPLE 3.7.b - PG NO. 97"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#page no.97\n",
      "#example 3.7(b)#\n",
      "#clears the screen#\n",
      "#clears already existing variables#\n",
      "print('when V(i)=5V, the transistor T(1) is operating at point C')\n",
      "V=0#\n",
      "print('output voltage in volts=')\n",
      "print(V)\n",
      "#all the outcomes are as per the diagram#"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "when V(i)=5V, the transistor T(1) is operating at point C\n",
        "output voltage in volts=\n",
        "0\n"
       ]
      }
     ],
     "prompt_number": 8
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [],
     "language": "python",
     "metadata": {},
     "outputs": []
    }
   ],
   "metadata": {}
  }
 ]
}