summaryrefslogtreecommitdiff
path: root/Modern_physics_for_engineers_by_S.P.Taneja/chapter19.ipynb
blob: 3a506ecc0cf860fcbe9465322db60d86d5215cef (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
{
 "metadata": {
  "name": "",
  "signature": "sha256:1d083196ab02ad5ba2396b4a10a213058e506c3fee2a8be71f6824530382e5a1"
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "Chapter 19 Schrodinger Equation and its Applications"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.1 Page no 168"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given                       \n",
      "h=6.624*10**-34\n",
      "m=9.1*10**-31\n",
      "a=10**-10\n",
      "\n",
      "#Calculation\n",
      "E1=h**2/(8*m*a**2)\n",
      "\n",
      "#Result\n",
      "print\"Energy is\", round(E1*10**19,1),\"*10**-10 J\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Energy is 60.3 *10**-10 J\n"
       ]
      }
     ],
     "prompt_number": 23
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.4 Page no 169"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "a=10**-9                        #m\n",
      "m=9.1*10**-31                      #Kg\n",
      "h=6.63*10**-34                     #J-s\n",
      "\n",
      "#Calculation\n",
      "E0=h**2/(8*m*a**2)\n",
      "\n",
      "#Result\n",
      "print\"Value of E0 is\",round(E0*10**20,2)*10**-17,\"J\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Value of E0 is 6.04e-17 J\n"
       ]
      }
     ],
     "prompt_number": 28
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 19.5 Page no 169"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "x=5*10**-10\n",
      "a=25*10**-10\n",
      "\n",
      "#Calculation\n",
      "P=(2*x)/a\n",
      "\n",
      "#Result\n",
      "print\"Probability of finding the particle is\",P"
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Probability of finding the particle is 0.4\n"
       ]
      }
     ],
     "prompt_number": 29
    }
   ],
   "metadata": {}
  }
 ]
}