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
|
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Chapter 8 : The Telephone System"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 3 : pg 323"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The net loss is 0.8 dB\n"
]
}
],
"source": [
" \n",
"# page no 323\n",
"# prob no 8.3\n",
"#calculate the net loss\n",
"#A telephone signal takes 3 ms to reach its destination\n",
"#given\n",
"t=2.;\n",
"#calculations\n",
"#Determination of net loss VNL reqd for acceptable amount of echo.\n",
"VNL=(0.2*t)+0.4;\n",
"#results\n",
"print 'The net loss is',VNL,'dB'"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 5 : pg 326"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The value of carrier freq for channel 5 is 92.0 kHz\n"
]
}
],
"source": [
" \n",
"# page no 326\n",
"# prob no 8.5\n",
"#calculate the carrier freq value\n",
"#given\n",
"#Refering the fig.8.15 channel 12 has lowest carrierr freq 64 kHz\n",
"F=64.;\n",
"c_total=12.;\n",
"#Carrier freq goes up 4kHz per channel\n",
"f_up=4;\n",
"#Determination of carrier freq for channel 5\n",
"c=5;\n",
"#calculations\n",
"fc=F+(f_up*(c_total-c));\n",
"#results\n",
"print 'The value of carrier freq for channel 5 is',fc,'kHz'"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Example 6 : pg 328"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"The tone appear in the supergroup output at frequency of 426.0 kHz\n"
]
}
],
"source": [
" \n",
"#page no 328\n",
"#prob no 8.6\n",
"#calculate the tone \n",
"# 2kHz tone is present on channel 5 of group 3 of a supergroup\n",
"# refer to example 8.5, calculated fc=92kHz\n",
"#given\n",
"fc=92.;#in kHz\n",
"#calculations\n",
"# Here signal is lower sideband,the 2kHz baseband signal therefore will be\n",
"fg=fc-2;\n",
"#from fig 10.15,group 3 in the supergroup is moved to the range 408-456 kHz, with a suppressed carrier frequency of 516kHz.\n",
"fsc=516;# in kHz\n",
"#the modulation is lower sideband,so the supergroup o/p freq will be 90kHz lower than carrier freq\n",
"fsg=fsc-fg;\n",
"#results\n",
"print 'The tone appear in the supergroup output at frequency of',fsg,'kHz'"
]
}
],
"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.11"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
|