summaryrefslogtreecommitdiff
path: root/backup/Principles_of_Physics_by_F.J.Bueche_version_backup/Chapter26.ipynb
blob: ab561997cdecc49c8c8170fc116721cfca169a3f (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
{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Chapter 26: Energy levels and Spectra"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Ex26.1:pg-1208"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The ionization energy of the hydrogen atom is E= 13.6  eV\n"
     ]
    }
   ],
   "source": [
    "  #Example 26_1\n",
    " \n",
    "  \n",
    "#To find the ionization energy of the hydrogen atom\n",
    "e=13.6        #units in eV\n",
    "print \"The ionization energy of the hydrogen atom is E=\",round(e,1),\" eV\"\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Ex26.2:pg-1209"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The wavelength of fourth line in Paschen series is= 1002.0  nm\n"
     ]
    }
   ],
   "source": [
    "  #Example 26_2\n",
    " \n",
    "  \n",
    "  #To find the wavelength of fourth line in Paschen series\n",
    "n1=3     #Units in constant\n",
    "n2=7     #Units in constant\n",
    "r=1.0974*10**7         #units in meter**-1\n",
    "lamda=round((1/r)*((n1**2*n2**2)/(n2**2-n1**2))*10**9)       #Units in nm\n",
    "print \"The wavelength of fourth line in Paschen series is=\",round(lamda),\" nm\"\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Ex26.3:pg-1209"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The energy associated with line 1 is E1= -54.4  eV\n",
      "The energy associated with line 2 is E2= -13.6  eV\n",
      "The energy associated with line 3 is E3= -6.04  eV\n",
      "\n",
      "The first line of balmer series is lamda= 163.0  nm and belongs to the ultraviolet region\n"
     ]
    }
   ],
   "source": [
    "  #Example 26_3\n",
    " \n",
    "  \n",
    "  #To draw the energy level diagram and the find the first line of balmer type series\n",
    "n=1\n",
    "e1=-54.4/n**2      #units in ev\n",
    "n=2\n",
    "e2=-54.4/n**2      #units in ev\n",
    "n=3\n",
    "e3=-54.4/n**2      #units in ev\n",
    "print \"The energy associated with line 1 is E1=\",round(e1,1),\" eV\\nThe energy associated with line 2 is E2=\",round(e2,1),\" eV\\nThe energy associated with line 3 is E3=\",round(e3,2),\" eV\\n\"\n",
    "e1=1       #units in eV\n",
    "e2=7.6       #Units in eV\n",
    "lamda1=1240         #units in nm\n",
    "lamda=(e1/e2)*lamda1        #Units in nm\n",
    "print \"The first line of balmer series is lamda=\",round(lamda),\" nm and belongs to the ultraviolet region\"\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Ex26.4:pg-1209"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The longest wavelength of light capable of ionizing hydrogen atom is lamda= 91.2  nm\n"
     ]
    }
   ],
   "source": [
    "  #Example 26_4\n",
    " \n",
    "  \n",
    "  #To find the longest wavelength of light capable of ionizing hydrogen atom\n",
    "  #First method\n",
    "R=1.097*10**7          #Units in meter**-1\n",
    "lamda=(1/R)*10**9                 #Units in meters\n",
    "  #Second method\n",
    "E=13.6        #units in eV\n",
    "e1=1        #units in eV\n",
    "lamda3=1240.0         #Units in eV\n",
    "lamda2=(e1/E)*(lamda3)        #Units in nm\n",
    "print \"The longest wavelength of light capable of ionizing hydrogen atom is lamda=\",round(lamda2,1),\" nm\"\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Ex26.5:pg-1210"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {
    "collapsed": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The energy difference between n=1 and n=2 level is E= 17713.0  eV\n"
     ]
    }
   ],
   "source": [
    "  #Example 26_5\n",
    " \n",
    "  \n",
    "  #To find  the energy difference between the n is 1 and n is 2 level\n",
    "e1=1        #Units in eV\n",
    "lamda2=1240        #Units in eV\n",
    "lamda3=0.07       #Units in eV\n",
    "e2=lamda2/lamda3        #Units in eV\n",
    "e=e2-e1            #Units in eV\n",
    "print \"The energy difference between n=1 and n=2 level is E=\",round(e),\" eV\"\n",
    "  #In textbook answer is prinred wrong as E=18000 eV the correct answer is E=17713 eV \n"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 2",
   "language": "python",
   "name": "python2"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 2
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython2",
   "version": "2.7.11"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 0
}