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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
|
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 3:Atomic Spectra-III"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:4,Page no:485"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Variable declaration\n",
"R=109729.0 #(cm-1)\n",
"T1=43487.0 #(cm-1)\n",
"T2=28583.0 #(cm-1)\n",
"n=2.0\n",
"\n",
"#calculation\n",
"import math\n",
"delta=n-math.sqrt(R/T2) #quantum defect\n",
"\n",
"#Result\n",
"print\"\\nquantum defect =\",round(delta,4)\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"quantum defect = 0.0407\n"
]
}
],
"prompt_number": 15
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:5,Page no:485"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Variable declaration\n",
"R=109737 #(cm-1)\n",
"n=1.805 #effective quantum number for the ground state of rubidium\n",
"\n",
"#calculation\n",
"T=R/(8065*n**2) #ionization potential of rubidium (eV)\n",
"\n",
"#Result\n",
"print\"The ionization potential of rubidium =\",round(T,3),\"eV\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The ionization potential of rubidium = 4.176 eV\n"
]
}
],
"prompt_number": 43
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:6,Page no:485"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Variable declaration\n",
"ratio=2.5 #ratio of ionization potential of hydrogen and sodium\n",
"n=3.0\n",
"\n",
"#calculation\n",
"import math\n",
"z=math.sqrt(n**2/ratio) #effective atomic number of sodium\n",
"\n",
"#Result\n",
"print\"\\nEffective atomic number of sodium =\",round(z,2)\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"Effective atomic number of sodium = 1.9\n"
]
}
],
"prompt_number": 44
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:7,Page no:485"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Variable declaration\n",
"hc=12400.0 #value of product of plank's constant and speed of light (eV \u00c5)\n",
"E1=3.18 #separation of 4s and 3s level (eV)\n",
"lembda=5890.0 #wavelength of the first member of principal series of sodium (\u00c5)\n",
"\n",
"#calculation\n",
"E2=round(hc/lembda,1) #separation of 3s and 3p levels (eV)\n",
"deltaE=E1-E2 #separation of 4s and 3p level (eV)\n",
"lembda1=hc/deltaE #wavelength of the first member of sharp series (\u00c5)\n",
"\n",
"#Result\n",
"print\"\u03bb =%d\"%lembda1,\"\u00c5\" \n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\u03bb =11481 \u00c5\n"
]
}
],
"prompt_number": 45
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:8,Page no:486"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Variable declaration\n",
"lembda1=5890*10**-10 #wavelength of doublet (\u00c5)\n",
"lembda2=5896*10**-10 #wavelength of doublet (\u00c5)\n",
"h=6.63*10**-34 #Plank's constant (Js)\n",
"c=3*10**8 #speed of light (m/s)\n",
"e=1.6*10**-19 #Charge of electron (coulombs)\n",
"\n",
"#calculation\n",
"deltaV=(lembda2-lembda1)/(lembda1*lembda2) #wave no. (m-1)\n",
"deltaE=(h*c*deltaV)/e #separation of energy levels (eV)\n",
"\n",
"#Result\n",
"print\"\u0394E =%.2e\"%deltaE,\"eV\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\u0394E =2.15e-03 eV\n"
]
}
],
"prompt_number": 46
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:9,Page no:486"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Variable declaration\n",
"deltaT=2.1*10**-3 #(eV)\n",
"lembda=5893*10**-8 #(\u00c5)\n",
"\n",
"#calculation\n",
"deltaV=deltaT*8065 #(cm-1)\n",
"deltalembda=deltaV*lembda**2 #(cm)\n",
"\n",
"#Result\n",
"print\"\u0394\u03bb =%.2e\"%deltalembda,\"cm\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\u0394\u03bb =5.88e-08 cm\n"
]
}
],
"prompt_number": 47
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:10,Page no:486"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Variable declaration\n",
"E1=16960.0 #mean position of the level (cm-1)\n",
"E2=24490 #convergence limit of sharp series (cm-1)\n",
"\n",
"#calculation\n",
"I=(E1+E2)/8065.0 #ionization energy of sodium atom (eV)\n",
"\n",
"#Result\n",
"print\"I =\",round(I,4),\"eV\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"I = 5.1395 eV\n"
]
}
],
"prompt_number": 48
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:11,Page no:486"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Variable declaration\n",
"E1=41450.0 #principal series for sodium atom (cm-1)\n",
"E2=24477.0 #sharp series for sodium atom (cm-1)\n",
"\n",
"#calculation\n",
"I=(E1)/8065.0 #ionization energy of sodium atom (eV)\n",
"\n",
"print\"\\nI =\",round(I,3),\"eV\" \n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"I = 5.139 eV\n"
]
}
],
"prompt_number": 49
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:12,Page no:487"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Variable declaration\n",
"E1=14904 #mean position of the level (cm-1)\n",
"E2=28583 #convergence limit of sharp series (cm-1)\n",
"\n",
"#calculation\n",
"I=(E1+E2)/8065.0 #ionization energy of Li atom (eV)\n",
"\n",
"#Result\n",
"print\"I =\",round(I,2),\"eV\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"I = 5.39 eV\n"
]
}
],
"prompt_number": 50
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:13,Page no:487"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Variable declaration\n",
"R=109734 #(cm-1)\n",
"T=24477.0 #(cm-1)\n",
"Zeff=1\n",
"n=3\n",
"\n",
"#calculation\n",
"import math\n",
"delta=n-(Zeff*math.sqrt(R/T)) #quantum defect for 3p configuration of sodium\n",
"\n",
"#Result\n",
"print\"\\n\u0394 =\",round(delta ,3)\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"\n",
"\u0394 = 0.883\n"
]
}
],
"prompt_number": 51
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example no:14,Page no:487"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"#Variable declaration\n",
"z1=1.0 #atomic no.\n",
"z2=2.0 #atomic no.\n",
"deltaT2=5.84 #doublet splitting of the first excited state for z=2 (cm-1)\n",
"\n",
"#calculation\n",
"deltaT1=deltaT2*(z1/z2)**4 #separation in hydrogen atom (cm-1)\n",
"\n",
"#Result\n",
"print\"Separation in hydrogen atom =\",deltaT1,\"cm**-1\"\n"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"Separation in hydrogen atom = 0.365 cm**-1\n"
]
}
],
"prompt_number": 42
}
],
"metadata": {}
}
]
}
|