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
|
{
"metadata": {
"name": "",
"signature": "sha256:076f20d31c3bb1bd9e8b8227097af625d385f1bb7f3b7a30dfedf3e414bce0c7"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 10 Multiplexing and Demultiplexing"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 10.1 Page no 368"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Given\n",
"BW_service = 860*10**6\n",
"BW_ch = 6.0*10**6\n",
"\n",
"#calculation\n",
"total_ch = BW_service/BW_ch\n",
"\n",
"#result\n",
"print\"Total number of channels are \",round(total_ch,0)\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Total number of channels are 143.0\n"
]
}
],
"prompt_number": 1
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 10.2 Page no 380"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Given\n",
"channels =16\n",
"sampling_rate= 3.5*10**3\n",
"w_len=6\n",
"\n",
"#Calculation\n",
"available_ch =channels-1\n",
"bpf =channels*w_len\n",
"data_rate = sampling_rate * bpf\n",
"\n",
"#Result\n",
"print\"(a) Available channels are \",available_ch\n",
"print\"(b) Bits Per Frame = \",bpf\n",
"print\"(c) The serial data rate \",data_rate/10**3,\"Khz\"\n",
" \n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"(a) Available channels are 15\n",
"(b) Bits Per Frame = 96\n",
"(c) The serial data rate 336.0 Khz\n"
]
}
],
"prompt_number": 2
}
],
"metadata": {}
}
]
}
|