summaryrefslogtreecommitdiff
path: root/Modern_physics_for_engineers_by_S.P.Taneja/chapter20.ipynb
blob: 4653b2c4e97acd093215c418f13c224983558501 (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
{
 "metadata": {
  "name": "",
  "signature": "sha256:28632a8e2e8b8cfc35d61b358e115b3b420083bd7c5c7f588f01ea1f5ef49276"
 },
 "nbformat": 3,
 "nbformat_minor": 0,
 "worksheets": [
  {
   "cells": [
    {
     "cell_type": "heading",
     "level": 1,
     "metadata": {},
     "source": [
      "Chapter 20 Free electron theory"
     ]
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 20.1 Page no 191"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "a=0.971*10**3               #Kg/m**3\n",
      "w=22.99\n",
      "N0=6*10**26\n",
      "m=9.1*10**-31                #Kg\n",
      "h=6.626*10**-34                 #J-s\n",
      "\n",
      "#Calculation\n",
      "import math\n",
      "N=(N0*a)/w\n",
      "Ef=(h/(8*m))*((3*N)/math.pi)**0.66\n",
      "\n",
      "#Result\n",
      "print\"Fermi energy is\", round(Ef*10**-14,0)*10**-19,\"J\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Fermi energy is 5e-19 J\n"
       ]
      }
     ],
     "prompt_number": 12
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 20.2 Page no 192"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "a=10**-10                 #m\n",
      "m=9.1*10**-31               #Kg\n",
      "h=6.626*10**-34                #J-s\n",
      "\n",
      "#Calculation\n",
      "E=3*h**2/(8*m*a**2)\n",
      "\n",
      "#Result\n",
      "print\"Energy difference is\", round(E*10**17,3)*10**-17,\"J\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Energy difference is 1.809e-17 J\n"
       ]
      }
     ],
     "prompt_number": 18
    },
    {
     "cell_type": "heading",
     "level": 2,
     "metadata": {},
     "source": [
      "Example 20.3 Page no 192"
     ]
    },
    {
     "cell_type": "code",
     "collapsed": false,
     "input": [
      "#Given\n",
      "x=1.39\n",
      "K=0.025\n",
      "Ef=3.2\n",
      "\n",
      "#Calculation\n",
      "E=x*K\n",
      "E1=E+Ef\n",
      "\n",
      "#Result\n",
      "print\"Energy at 300 K is\", round(E1,3),\"ev\""
     ],
     "language": "python",
     "metadata": {},
     "outputs": [
      {
       "output_type": "stream",
       "stream": "stdout",
       "text": [
        "Energy at 300 K is 3.235 ev\n"
       ]
      }
     ],
     "prompt_number": 23
    }
   ],
   "metadata": {}
  }
 ]
}