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:3f2462cfb429298e26fc6bf563d665947cd211731889b95d7dd1a2db3452c286"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Fibre Optics"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example number 3.1, Page number 98 "
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#importing modules\n",
"import math\n",
"\n",
"#Variable declaration\n",
"n1=1.6; #refractive index of core\n",
"n2=1.5; #refractive index of cladding\n",
"\n",
"#Calculation\n",
"NA=math.sqrt((n1**2)-(n2**2));\n",
"NA=math.ceil(NA*10**4)/10**4; #rounding off to 4 decimals\n",
"\n",
"#Result\n",
"print(\"the numerical aperture of the fibre is\",NA);\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"('the numerical aperture of the fibre is', 0.5568)\n"
]
}
],
"prompt_number": 4
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example number 3.2, Page number 98 "
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#importing modules\n",
"import math\n",
"\n",
"#Variable declaration\n",
"n1=1.54; #refractive index of core\n",
"n2=1.5; #refractive index of cladding\n",
"n0=1;\n",
"\n",
"#Calculation\n",
"NA=math.sqrt((n1**2)-(n2**2)); #numerical aperture of fibre\n",
"NA=math.ceil(NA*10**5)/10**5; #rounding off to 5 decimals\n",
"alpha=math.asin(NA/n0); #acceptance angle in radians\n",
"alpha=alpha*57.2957795; #converting radians to degrees\n",
"alpha=math.ceil(alpha*10**5)/10**5; #rounding off to 5 decimals\n",
"deg=int(alpha); #converting to degrees\n",
"t=60*(alpha-deg); \n",
"mi=int(t); #converting to minutes\n",
"sec=60*(t-mi); #converting to seconds\n",
"sec=math.ceil(sec*10**3)/10**3; #rounding off to 3 decimals\n",
"\n",
"#Result\n",
"print(\"the numerical aperture of the fibre is\",NA);\n",
"print(\"the acceptance angle of the fibre in degrees is\",alpha);\n",
"print(\"acceptance angle of the fibre is\",deg,\"degrees\",mi,\"minutes\",sec,\"seconds\");\n",
"\n",
"#answer for the angle given in the book is wrong"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"('the numerical aperture of the fibre is', 0.34872)\n",
"('the acceptance angle of the fibre in degrees is', 20.40905)\n",
"('acceptance angle of the fibre is', 20, 'degrees', 24, 'minutes', 32.581, 'seconds')\n"
]
}
],
"prompt_number": 7
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example number 3.3, Page number 99"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#importing modules\n",
"import math\n",
"\n",
"#Variable declaration\n",
"n1=1.6; #refractive index of core\n",
"n2=1.49; #refractive index of cladding\n",
"\n",
"#Calculation\n",
"thetac=math.asin(n2/n1); #critical angle in radians\n",
"thetac=thetac*57.2957795; #converting radians to degrees\n",
"theta_c=math.ceil(thetac*10**3)/10**3; #rounding off to 3 decimals\n",
"deg=int(thetac); #converting to degrees\n",
"t=60*(thetac-deg); \n",
"mi=int(t); #converting to minutes\n",
"sec=60*(t-mi); #converting to seconds\n",
"sec=math.ceil(sec*10**2)/10**2; #rounding off to 2 decimals\n",
"\n",
"#Result\n",
"print(\"the critical angle of the fibre in degrees is\",theta_c);\n",
"print(\"critical angle of the fibre is\",deg,\"degrees\",mi,\"minutes\",sec,\"seconds\");"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"('the critical angle of the fibre in degrees is', 68.631)\n",
"('critical angle of the fibre is', 68, 'degrees', 37, 'minutes', 49.85, 'seconds')\n"
]
}
],
"prompt_number": 10
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example number 3.4, Page number 99"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#importing modules\n",
"import math\n",
"\n",
"#Variable declaration\n",
"NA=0.15; #numerical aperture\n",
"n2=1.55; #refractive index of cladding\n",
"n0=1.33; #refractive index of water\n",
"\n",
"#Calculation\n",
"n1=math.sqrt((NA**2)+(n2**2)); #refractive index\n",
"n_1=math.ceil(n1*10**5)/10**5; #rounding off to 5 decimals\n",
"alpha=math.asin(math.sqrt(n1**2-n2**2)/n0); #acceptance angle in radians\n",
"alpha=alpha*57.2957795; #converting radians to degrees\n",
"alphaa=math.ceil(alpha*10**3)/10**3; #rounding off to 3 decimals\n",
"deg=int(alpha); #converting to degrees\n",
"t=60*(alpha-deg); \n",
"mi=int(t); #converting to minutes\n",
"sec=60*(t-mi); #converting to seconds\n",
"sec=math.ceil(sec*10**2)/10**2; #rounding off to 2 decimals\n",
"\n",
"#Result\n",
"print(\"refractive index of the core is\",n_1);\n",
"print(\"the acceptance angle of the fibre in degrees is\",alphaa);\n",
"print(\"acceptance angle of the fibre is\",deg,\"degrees\",mi,\"minutes\",sec,\"seconds\");\n",
"\n",
"#answer for acceptance angle given in the book is wrong"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"('refractive index of the core is', 1.55725)\n",
"('the acceptance angle of the fibre in degrees is', 6.476)\n",
"('acceptance angle of the fibre is', 6, 'degrees', 28, 'minutes', 32.55, 'seconds')\n"
]
}
],
"prompt_number": 13
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example number 3.5, Page number 100"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#importing modules\n",
"import math\n",
"\n",
"#Variable declaration\n",
"NA=0.26; #numerical aperture\n",
"n1=1.5; #refractive index of core\n",
"d=100; #core diameter in micro meter\n",
"\n",
"#Calculation\n",
"d=100*(10**-6); #core diameter in metre\n",
"n2=math.sqrt((n1**2)-(NA**2));\n",
"n2=math.ceil(n2*10**5)/10**5; #rounding off to 5 decimals\n",
"\n",
"#Result\n",
"print(\"refractive index of the cladding is\",n2);"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"('refractive index of the cladding is', 1.4773)\n"
]
}
],
"prompt_number": 16
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example number 3.6, Page number 100"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"\n",
"\n",
"#importing modules\n",
"import math\n",
"\n",
"#Variable declaration\n",
"NA=0.26; #numerical aperture\n",
"delta=0.015; #refractive index difference\n",
"\n",
"#Calculation\n",
"#NA=math.sqrt(n1**2-n2**2)\n",
"#let A=n1**2-n2**2\n",
"#therefore A=NA**2\n",
"A=NA**2;\n",
"#delta=(n1**2-n2**2)/2*(n1**2)\n",
"#let 2*(n1**2) be B\n",
"#therefore B=A/delta\n",
"B=A/delta;\n",
"n1=math.sqrt(B/2);\n",
"n1=math.ceil(n1*100)/100; #rounding off to 2 decimals\n",
"n2=math.sqrt(n1**2-NA**2);\n",
"n2=math.ceil(n2*10**3)/10**3; #rounding off to 4 decimals\n",
"\n",
"#Result\n",
"print(\"refractive index of the core is\",n1);\n",
"print(\"refractive index of the cladding is\",n2);\n",
"\n",
"#answer for refractive index of cladding given in the book is wrong"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"('refractive index of the core is', 1.51)\n",
"('refractive index of the cladding is', 1.488)\n"
]
}
],
"prompt_number": 19
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}
|