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
|
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 6: Frequency Modulation:Reception"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 6.1 Page no 265"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Given\n",
"G=200000 #voltage gain\n",
"v=200*10**-3 #quieting voltage\n",
"\n",
"#calculation\n",
"In=v/G\n",
"\n",
"#Result\n",
"print\"To reach quieting, the input must be \",In*10**6,\"microV\""
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"To reach quieting, the input must be 1.0 microV\n"
]
}
],
"prompt_number": 6
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 6.2 Page no 272"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Given\n",
"f=10*10**6 #frequency\n",
"f1=50*10**3 #input frequency\n",
"f2=200*10**3 #output frequency\n",
"\n",
"#Calculatiion\n",
"x=f1*2\n",
"y=f2*2\n",
"\n",
"#Result\n",
"print\"The capture occurred at from the free-running VCO frequency.\",f1,\"Hz\"\n",
"print\"Assume symmetrical operation,which implies a capture range of \",x,\"Hz\"\n",
"print\"Once captured the VCO follows the input to a \",f2,\"Hz deviation,implying a lock range of \",y,\"Hz\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The capture occurred at from the free-running VCO frequency. 50000 Hz\n",
"Assume symmetrical operation,which implies a capture range of 100000 Hz\n",
"Once captured the VCO follows the input to a 200000 Hz deviation,implying a lock range of 400000 Hz\n"
]
}
],
"prompt_number": 11
}
],
"metadata": {}
}
]
}
|