summaryrefslogtreecommitdiff
path: root/Engineering_Physics/Chapter13_1.ipynb
blob: 83323d13eb0b07de8ea92284955f81f80ada9769 (plain)
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
{
 "metadata": {
  "name": "",
  "signature": "sha256:46a82c7fe1b65af7ee26b9fa38521b26c61cee31bc75dd5001fe45442416739c"
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "13: Optical Fibre"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 13.1, Page number 250"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "n1=1.49;                    #refractive index of core\n",
      "n2=1.46;                    #refractive index of cladding\n",
      "\n",
      "#Calculation                        \n",
      "NA=math.sqrt((n1**2)-(n2**2));      #Numerical aperture\n",
      "\n",
      "#Result\n",
      "print \"The numerical aperture is\",round(NA,1)"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The numerical aperture is 0.3\n"
       ]
      }
     ],
     "prompt_number": 2
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 13.2, Page number 250"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "NA=0.5;                       #numerical aperture of fibre \n",
      "n0=1;                         #refractive index of the medium(air)\n",
      "\n",
      "#Calculation                        \n",
      "i=math.asin(NA/n0);           #acceptance angle(radian)\n",
      "i=i*180/math.pi;         #angle(degrees)\n",
      "\n",
      "#Result\n",
      "print \"The acceptance angle is\",i,\"degrees\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The acceptance angle is 30.0 degrees\n"
       ]
      }
     ],
     "prompt_number": 3
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 13.3, Page number 250"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "\n",
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "NA=0.25;                        #numerical apperture\n",
      "lamda=0.75;                    #wavelength(micro m)\n",
      "a=25;                           #core radius(micro m)\n",
      "\n",
      "#Calculation                        \n",
      "f=(2*math.pi*a*NA)/lamda;      #normalised frequency\n",
      "Ng=(f**2)/2;                    #number of guided modes\n",
      "\n",
      "#Result\n",
      "print \"The number of guided modes is\",int(Ng)"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The number of guided modes is 1370\n"
       ]
      }
     ],
     "prompt_number": 6
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 13.4, Page number 250"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "pi=100;                 #mean optical power launched(micro m)\n",
      "po=5;                   #mean optical power at fibre output(micro W)\n",
      "l=6;                    #length(km)\n",
      "\n",
      "#Calculation                        \n",
      "S=10*math.log10(pi/po);         #signal attenuation(dB)\n",
      "Sk=S/l;                 #signal attenuation(dB/km)\n",
      "\n",
      "#Result\n",
      "print \"The signal attenuation is\",round(Sk,3),\"dB/km\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The signal attenuation is 2.168 dB/km\n"
       ]
      }
     ],
     "prompt_number": 8
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 13.5, Page number 250"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "ns=2.89;                 #sum of refractive indices of core & cladding\n",
      "nd=0.03;                 #difference of refractive indices of core & cladding\n",
      "\n",
      "#Calculation                        \n",
      "NA=math.sqrt(ns*nd);         #numerical apperture\n",
      "\n",
      "#Result\n",
      "print \"The numerical apperture for the optical fibre is\",round(NA,2)"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The numerical apperture for the optical fibre is 0.29\n"
       ]
      }
     ],
     "prompt_number": 10
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 13.6, Page number 250"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "NA=0.28;                  #numerical aperture\n",
      "a=30;                     #core radius(micro m)\n",
      "lamda=0.8;               #wavelength(micro m)\n",
      "\n",
      "#Calculation                        \n",
      "f=(2*math.pi*a*NA)/lamda;           #normalised frequency\n",
      "Ng=f**2/2;                           #number of guided modes\n",
      "\n",
      "#Result\n",
      "print \"The number of guided modes is\",int(Ng)\n",
      "print \"answer in the book varies due to rounding off errors\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The number of guided modes is 2176\n",
        "answer in the book varies due to rounding off errors\n"
       ]
      }
     ],
     "prompt_number": 14
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 13.7, Page number 250"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "S=2;                  #signal attenuation(dB/km)\n",
      "l=1;                  #length(km)\n",
      "p0=20;                #mean optical power at fibre output(micro W)\n",
      "\n",
      "#Calculation                        \n",
      "pi=p0*10**(S/10);     #mean optical power launched into fibre(micro W)\n",
      "\n",
      "#Result\n",
      "print \"The mean optical power launched into a fibre is\",round(pi,1),\"micro W\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "The mean optical power launched into a fibre is 31.7 micro W\n"
       ]
      }
     ],
     "prompt_number": 16
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 13.8, Page number 251"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "S=2.3;                #Signal attenuation(dB/km)\n",
      "l=4;                  #length(km)\n",
      "\n",
      "#Calculation                        \n",
      "S=S*l;                #signal attenuation for 4km in dB\n",
      "P=10**(S/10);         #ratio of mean optical power\n",
      "\n",
      "#Result\n",
      "print \"ratio of mean optical power is\",round(P,1)"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "ratio of mean optical power is 8.3\n"
       ]
      }
     ],
     "prompt_number": 18
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 13.9, Page number 251"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "op=1/4;          #ratio\n",
      "\n",
      "#Calculation                        \n",
      "#S=10*log(pi/po)\n",
      "S=10*math.log10(1/op);         #signal attenuation(dB)\n",
      "\n",
      "#Result\n",
      "print \"Signal attenuation is\",int(S),\"dB\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Signal attenuation is 6 dB\n"
       ]
      }
     ],
     "prompt_number": 20
    }
   ],
   "metadata": {}
  }
 ]
}