summaryrefslogtreecommitdiff
path: root/Engineering_Physics_by_Rajendran/Chapter8.ipynb
blob: eb8b969a2aabc273a39cd5b52fee7a48aff1d38b (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
{
 "metadata": {
  "name": "",
  "signature": "sha256:1c07cbfc0dc96926ceae744a226fe3c57743d67509eccb306df708f4c814b436"
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "8: Polarisation"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 8.1, Page number 16"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "mew_e=1.553;     #refractive index of extraordinary ray\n",
      "mew0=1.544;    #refractive index of ordinary ray\n",
      "lamda=6*10**-7;    #wavelength(m)\n",
      "\n",
      "#Calculation\n",
      "t=lamda/(4*(mew_e-mew0));   #thickness of quarter wave plate(m)\n",
      "\n",
      "#Result\n",
      "print \"thickness of quarter wave plate is\",round(t*10**5,3),\"*10**-5 m\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "thickness of quarter wave plate is 1.667 *10**-5 m\n"
       ]
      }
     ],
     "prompt_number": 2
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 8.2, Page number 16"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "mew_e=1.553;     #refractive index of extraordinary ray\n",
      "mew0=1.544;    #refractive index of ordinary ray\n",
      "lamda=6*10**-7;    #wavelength(m)\n",
      "\n",
      "#Calculation\n",
      "t=lamda/(2*(mew_e-mew0));   #thickness of half wave plate(m)\n",
      "\n",
      "#Result\n",
      "print \"thickness of half wave plate is\",round(t*10**5,2),\"*10**-5 m\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "thickness of half wave plate is 3.33 *10**-5 m\n"
       ]
      }
     ],
     "prompt_number": 4
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 8.3, Page number 17"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "mew_e=1.486;     #refractive index of extraordinary ray\n",
      "mew0=1.658;    #refractive index of ordinary ray\n",
      "lamda=6*10**-7;    #wavelength(m)\n",
      "\n",
      "#Calculation\n",
      "t=lamda/(4*(mew0-mew_e));   #thickness of quarter wave plate(m)\n",
      "\n",
      "#Result\n",
      "print \"thickness of quarter wave plate is\",round(t*10**7,1),\"*10**-7 m\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "thickness of quarter wave plate is 8.7 *10**-7 m\n"
       ]
      }
     ],
     "prompt_number": 7
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example number 8.4, Page number 17"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#importing modules\n",
      "import math\n",
      "from __future__ import division\n",
      "\n",
      "#Variable declaration\n",
      "mew_e=1.486;     #refractive index of extraordinary ray\n",
      "mew0=1.658;    #refractive index of ordinary ray\n",
      "t=1.64*10**-6;   #thickness(m)    \n",
      "\n",
      "#Calculation\n",
      "lamda=2*t*(mew0-mew_e);   #wavelength of light(m)\n",
      "\n",
      "\n",
      "#Result\n",
      "print \"wavelength of light is\",round(lamda*10**6,3),\"*10**-6 m\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "wavelength of light is 0.564 *10**-6 m\n"
       ]
      }
     ],
     "prompt_number": 15
    }
   ],
   "metadata": {}
  }
 ]
}