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
|
{
"metadata": {
"name": "",
"signature": "sha256:8e1b5c14d4876dc6b60f9f51fe0f04e94941e7f01c84340bf3441e1daf170b7a"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 3 Amplitude modulation fundamentals"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.1 page no 99"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Given\n",
"Vmax = 5.9\n",
"Vmin = 1.2\n",
"\n",
"#Calculation\n",
"m = (Vmax-Vmin)/(Vmax+Vmin)\n",
"Vc = (Vmax+Vmin)/2.0\n",
"Vm = (Vmax-Vmin)/2.0\n",
"m = Vm/Vc\n",
"\n",
"#Result\n",
"print\"(a) The modulation index is \",round(m,2)\n",
"print\"Vc= \",Vc,\"Vm= \",Vm,\"(for 2 volt/div on verticle scale)\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The modulation index is 0.66\n",
"Vc= 3.55 Vm= 2.35 (for 2 volt/div on verticle scale)\n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.2 page no 102"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Given\n",
"frq =980*10**3\n",
"frq_range = 5*10**3\n",
"\n",
"#Calculation\n",
"fusb = frq+frq_range\n",
"flsb = frq-frq_range\n",
"bw=fusb-flsb\n",
"\n",
"#Result\n",
"print\"The upper sideband is at \",fusb/10**3,\"Khz\"\n",
"print\"Lower sideband is at \",flsb/10**3,\"Khz\"\n",
"print\"the babdwidth is \",bw/10**3,\"KHz\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The upper sideband is at 985 Khz\n",
"Lower sideband is at 975 Khz\n",
"the babdwidth is 10 KHz\n"
]
}
],
"prompt_number": 2
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.3 page no 106"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Given\n",
"Pc = 30\n",
"m=0.85\n",
"\n",
"#Calculation\n",
"Pt = Pc*(1+ (m**2/2.0))\n",
"Psb_both =Pt-Pc\n",
"Psb_one = Psb_both/2.0\n",
"\n",
"#Result\n",
"print\"The total power is \",round(Pt,1),\"watt\" \n",
"print\"The power in one sideband is \",round(Psb_one,1),\"Watt\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The total power is 40.8 watt\n",
"The power in one sideband is 5.4 Watt\n"
]
}
],
"prompt_number": 3
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.4 page no 108"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Given\n",
"R = 40\n",
"I = 4.8\n",
"m=0.9\n",
"\n",
"#Calculation\n",
"Pc = I**2*R\n",
"Pt = (I*(1+(m**2/2.0))**0.5)**2*R\n",
"Psb = Pt-Pc\n",
"\n",
"#Result\n",
"print\"(a) The carrier power is \",Pc,\" watt\"\n",
"print\"(b) Total power = \",round(Pt,0),\"watt\"\n",
"print\"(c) Sideband Power = \",round(Psb,1),\"watt\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"(a) The carrier power is 921.6 watt\n",
"(b) Total power = 1295.0 watt\n",
"(c) Sideband Power = 373.2 watt\n"
]
}
],
"prompt_number": 6
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.5 page no 108"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#given\n",
"It = 5.1\n",
"Ic =4.8\n",
"\n",
"#Calculation\n",
"m=(2*((It/Ic)**2-1))**0.5\n",
"\n",
"#Result\n",
"print\"The percentage of modulation is \",round(m*100,0)\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The percentage of modulation is 51.0\n"
]
}
],
"prompt_number": 7
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.6 page no 109"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Given\n",
"m = 0.9\n",
"Pc = 921.6\n",
"\n",
"#calculation\n",
"Psb = (m**2*Pc)/4.0\n",
"\n",
"#Result\n",
"print\"The power in one sideband \",round(Psb,1),\"Watt\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The power in one sideband 186.6 Watt\n"
]
}
],
"prompt_number": 8
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.7 page no 113"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Given\n",
"Vpp = 178\n",
"R = 75.0\n",
"\n",
"#Calculation\n",
"Vp =Vpp/2.0\n",
"Vrms = 0.707*Vp\n",
"PEP =(Vrms**2/R)\n",
"\n",
"#Result\n",
"print\"The peak envelop power is \", round(PEP,1),\"Watt\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The peak envelop power is 52.8 Watt\n"
]
}
],
"prompt_number": 9
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 3.8 page no 113"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Given\n",
"Vs =24\n",
"Im =9.3\n",
"\n",
"#Calculation\n",
"PEP = Vs*Im \n",
"Pavg1 = PEP/3.0\n",
"Pavg2 = PEP/4.0\n",
"\n",
"#Result\n",
"print\"(a) The peak envelope power is \",PEP,\"watt\"\n",
"print\"(b) Average power of transmitter is \",Pavg2,\"watt to\",Pavg1,\"watt\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"(a) The peak envelope power is 223.2 watt\n",
"(b) Average power of transmitter is 55.8 watt to 74.4 watt\n"
]
}
],
"prompt_number": 10
}
],
"metadata": {}
}
]
}
|