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
|
{
"metadata": {
"name": ""
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Chapter 4: Cohesion between atoms"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Example 4.1, page no-92"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"# Coulomb interatomic energy\n",
"\n",
"import math\n",
"#Variable declaration\n",
"R=2.81*10**-10 # distance between oppositely charged ion\n",
"e=1.6*10**-19 # Charge of an electron\n",
"eps=8.854*10**-12 # epsilon\n",
"\n",
"#calculation\n",
"U=-(e**2)/(4*math.pi*eps*R)\n",
"\n",
"#Result\n",
"print('The Coulomb interatomic energy is %.2f eV'%(U*10**19/1.6))"
],
"language": "python",
"metadata": {},
"outputs": [
{
"output_type": "stream",
"stream": "stdout",
"text": [
"The Coulomb interatomic energy is -5.12 eV\n"
]
}
],
"prompt_number": 1
}
],
"metadata": {}
}
]
}
|