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
|
{
"metadata": {
"name": "",
"signature": "sha256:c4970c321276b9f7170413d941bf292098cec215a7f4a0308f53e52cf40aad5c"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 9: Transmission Lines"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 9.1, page no. 237"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"# Variable Declaration\n",
"Zo = 75 # Characteristic Impedance (Ohms) \n",
"C = 69.00*pow(10,-12) # Nominal Capacitance (F/m)\n",
"Di = 0.584*pow(10,-3) # Inner core diameter (m)\n",
"k = 2.23 # Dielectric Constant\n",
"\n",
"# Calculation\n",
"import math # Math Library\n",
"L = pow(Zo,2)*C # Inductance per meter (H/m)\n",
"Do = Di*pow(10,Zo*math.sqrt(k)/138) # Outer core diameter (m)\n",
"\n",
"# Result\n",
"print \"Inductance per meter, L =\",round(L/pow(10,-6),3),\"uH/m\"\n",
"print \"Outer Diameter, D =\",round(Do/pow(10,-3),2),\"mm\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Inductance per meter, L = 0.388 uH/m\n",
"Outer Diameter, D = 3.78 mm\n"
]
}
],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 9.2, page no. 237"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"# Variable Declaration\n",
"s = 1 # Assumed s (m)\n",
"d = s # Condition for minimum Zo (m)\n",
"\n",
"# Calculation\n",
"import math # Math Library\n",
"Zo_min = 276*math.log10(2*s/d) # Minimum value of characteristic impedance (Ohms)\n",
" \n",
"# Result\n",
"print \"The minimum value of characteristic impedance, Zo_min =\",round(Zo_min),\"Ohms\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The minimum value of characteristic impedance, Zo_min = 83.0 Ohms\n"
]
}
],
"prompt_number": 3
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 9.3, page no. 237"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"# Variable Declaration\n",
"Zo = 2000 # Characteristic Impedance (Ohms) \n",
"Di = 0.025*pow(10,-3) # Inner cable diameter (m)\n",
"k = 2.56 # Dielectric Constant \n",
"\n",
"# Calculation\n",
"import math # Math Library\n",
"Do = Di*pow(10,Zo*math.sqrt(k)/138) # Outer conductor diameter (m)\n",
"\n",
"# Result\n",
"print \"Outer Diameter, D =\",round(Do/pow(10,18),2),\"* 10^(15) km or\",round(Do/(9.44*pow(10,15))),\"light years\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Outer Diameter, D = 3.86 * 10^(15) km or 409.0 light years\n"
]
}
],
"prompt_number": 4
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 9.4, page no. 243"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"# Variable Declaration\n",
"Zo = 200 # Characteristic Impedance of main line (Ohms) \n",
"Zl = 300 # Load Impedance (Ohms)\n",
"\n",
"# Calculation\n",
"import math # Math Library\n",
"Zo1 = math.sqrt(Zo*Zl) # Characteristic impedance of the quarter wave transformer (Ohms)\n",
"\n",
"# Result\n",
"print \"Characteristic impedance of the quarter wave transformer, Zo1 =\",round(Zo1),\"Ohms\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Characteristic impedance of the quarter wave transformer, Zo1 = 245.0 Ohms\n"
]
}
],
"prompt_number": 5
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 9.5, page no. 246"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"# Variable Declaration\n",
"Zl = complex(200,75) # Load Impedance (Ohms)\n",
"Zo = 300 # Characteristic Impedance (Ohms)\n",
"\n",
"# Calculation\n",
"import math # Math Library\n",
"Yl = 1/Zl # Admittance (Mho)\n",
"Bstub = 1/Yl.imag # Reactance of the Stub (Ohms)\n",
"Gl = Yl.real # Real Part of Admittance (Mho)\n",
"Rl = 1/Gl # Resistance (Ohms)\n",
"Zo1 = math.sqrt(Zo*Rl) # Characteristic impedance of the quarter wave transformer (Ohms)\n",
"\n",
"# Result\n",
"print \"Reactance of the stub, Bstub =\",round(Bstub,1),\"Ohms\"\n",
"print \"Characteristic impedance of the quarter wave transformer, Zo1 =\",round(Zo1),\"Ohms\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Reactance of the stub, Bstub = -608.3 Ohms\n",
"Characteristic impedance of the quarter wave transformer, Zo1 = 262.0 Ohms\n"
]
}
],
"prompt_number": 6
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 9.6, page no. 250"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"# Variable Declaration\n",
"Y = complex(0.004,0.002) # Load Susceptance (Ohms)\n",
"Yo = 0.0033 # Ohms - Characteristic Admittance (Ohms)\n",
"f = 150*pow(10,6) # Operating Frequency (Hz)\n",
"vc = 3*pow(10,8) # Speed of light in vacuum (m/s)\n",
"\n",
"# Calculation\n",
"import math # Math Library\n",
"y = Y/Yo # Normalized susceptance required to cancel loads normalized susceptance\n",
"Lambda = vc/f # Wavelength (m)\n",
"Length = 0.337*Lambda # Length from Smith Chart (m)\n",
"\n",
"# Result\n",
"print \"Normalized susceptance required to cancel loads normalized susceptance = +j *\",round(y.imag,2)\n",
"print \"Length =\",round(Length*100,1),\"cm\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Normalized susceptance required to cancel loads normalized susceptance = +j * 0.61\n",
"Length = 67.4 cm\n"
]
}
],
"prompt_number": 7
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 9.7, page no. 250"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"# Variable Declaration\n",
"Z = complex(100,50) # Load Impedance (Ohms)\n",
"Zo = 75 # Characteristic Impedance (Ohms)\n",
"\n",
"# Calculation\n",
"import math # Math Library\n",
"z = Z/Zo # Normalized Load Impedance (Ohms)\n",
"Zg = 39.8 # Resistance at Distance = 0.184* Lambda, from Smith Chart (Ohms)\n",
"Zo_dash = math.sqrt(Zg*Zo) # Impedance of the transformer (Ohms)\n",
"\n",
"# Result\n",
"print \"(a) From Smith Chart the Distance = 0.184 * Lambda\"\n",
"print \"(b) Zo_dash for the transformer, Zo' =\",round(Zo_dash,1),\"Ohms\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"(a) From Smith Chart the Distance = 0.184 * Lambda\n",
"(b) Zo_dash for the transformer, Zo' = 54.6 Ohms\n"
]
}
],
"prompt_number": 8
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 9.8, page no. 253"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"# Variable Declaration\n",
"Z = complex(450,-600) # Load Impedance (Ohms)\n",
"Zo = 300 # Characteristic Impedance (Ohms)\n",
"\n",
"# Calculation\n",
"import math # Math Library\n",
"z = Z/Zo # Normalized Load Impedance (Ohms)\n",
"s = 4.6 # Standing Wave Ratio\n",
"L = 1/(2*math.pi)*math.atan(math.sqrt(s)/(s-1)) # (* Lambda) Stub Length (m)\n",
"\n",
"# Result\n",
"print \"Normalized load Impedance = \",z\n",
"print \"From Smith Chart the Distance to the stub = 0.130 * Lambda\"\n",
"print \"Stub Length =\",round(L,3),\"* Lambda\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Normalized load Impedance = (1.5-2j)\n",
"From Smith Chart the Distance to the stub = 0.130 * Lambda\n",
"Stub Length = 0.086 * Lambda\n"
]
}
],
"prompt_number": 9
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 9.9, page no. 254"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"# Variable Declaration\n",
"Z = complex(450,-600) # Load Impedance (Ohms)\n",
"Zo = 300 # Characteristic Impedance (Ohms)\n",
"f1 = 10 # Old frequency (MHz)\n",
"f2 = 12 # New frequency (MHz)\n",
"\n",
"# Calculation\n",
"import math # Math Library\n",
"z = Z/Zo # Normalized Load Impedance (Ohms)\n",
"z1 = z.imag * f1/f2 # Intermediate Impedance (Ohms)\n",
"z = complex(z.real,z1) # Normalized Load Impedance (Ohms)\n",
"s = 4.6 # Standing Wave Ratio\n",
"L = 1/(2*math.pi)*math.atan(math.sqrt(s)/(s-1))*f2/f1 # (* Lambda')Stub Length (m)\n",
"\n",
"# Result\n",
"print \"Normalized load Impedance = \",z\n",
"print \"From Smith Chart the Distance to the stub = 0.156 * Lambda'\"\n",
"print \"Stub Length =\",round(L,3),\"* Lambda'\"\n",
"print \"From Smith chart SWR = 2.2\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Normalized load Impedance = (1.5-1.66666666667j)\n",
"From Smith Chart the Distance to the stub = 0.156 * Lambda'\n",
"Stub Length = 0.103 * Lambda'\n",
"From Smith chart SWR = 2.2\n"
]
}
],
"prompt_number": 10
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 9.10, page no. 256"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"# Variable Declaration\n",
"Z = 200.00 # Load Impedance (Ohms)\n",
"Zo = 300.00 # Characteristic Impedance (Ohms)\n",
"\n",
"# Calculation\n",
"import math # Math Library\n",
"z = Z/Zo # Normalized Load Impedance (Ohms)\n",
"L1_by_Lambda = 0.311 # Ratio from Smith Chart\n",
"L2_by_Lambda1 = L1_by_Lambda*1.1 # Ratio\n",
"\n",
"# Result\n",
"print \"(a) Normalized load Impedance = \",round(z,2)\n",
"print \" From Smith Chart the Distance to the stub = 0.11 * Lambda\"\n",
"print \" From Smith Chart the Length of stub = 0.311 * Lambda\"\n",
"print \"(b) New Length of stub =\",round(L2_by_Lambda1,3),\"* Lambda'\"\n",
"print \" From Smith chart SWR = 1.3\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"(a) Normalized load Impedance = 0.67\n",
" From Smith Chart the Distance to the stub = 0.11 * Lambda\n",
" From Smith Chart the Length of stub = 0.311 * Lambda\n",
"(b) New Length of stub = 0.342 * Lambda'\n",
" From Smith chart SWR = 1.3\n"
]
}
],
"prompt_number": 11
}
],
"metadata": {}
}
]
}
|