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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
|
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#2: Crystal Structures"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 2.1, Page number 2.23"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"lattice constant is 4.0 *10**-10 m\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"M=60.2; #molecular weight\n",
"Na=6.023*10**26; #avagadro number(kg/mole)\n",
"n=4; \n",
"rho=6250; #density(kg/m**3)\n",
"\n",
"#Calculation\n",
"a=(n*M/(rho*Na))**(1/3); #lattice constant(m)\n",
"\n",
"#Result\n",
"print \"lattice constant is\",round(a*10**10),\"*10**-10 m\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 2.2, Page number 2.23"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"density is 8.93 gm/cm**3\n",
"answer in the book varies due to rounding off errors\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"M=63.5; #molecular weight\n",
"Na=6.023*10**26; #avagadro number(kg/mole)\n",
"n=4; \n",
"r=1.278*10**-8; #atomic radius(cm)\n",
"\n",
"#Calculation\n",
"a=2*math.sqrt(2)*r; #lattice constant(m)\n",
"rho=n*M/(a**3*Na); #density(kg/cm**3)\n",
"\n",
"#Result\n",
"print \"density is\",round(rho*10**3,2),\"gm/cm**3\"\n",
"print \"answer in the book varies due to rounding off errors\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 2.3, Page number 2.24"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"ratio of densities is 0.92\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"pf_BCC=math.pi*math.sqrt(3)/8; #packing factor for BCC\n",
"pf_FCC=math.pi/(3*math.sqrt(2)); #packing factor of FCC\n",
"\n",
"#Calculation\n",
"r=pf_BCC/pf_FCC; #ratio of densities\n",
"\n",
"#Result\n",
"print \"ratio of densities is\",round(r,2)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 2.4, Page number 2.24"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"lattice constant is 2.8687 angstrom\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"M=55.85; #molecular weight\n",
"Na=6.02*10**26; #avagadro number(kg/mole)\n",
"n=2; \n",
"rho=7860; #density(kg/m**3)\n",
"\n",
"#Calculation\n",
"a=(n*M/(rho*Na))**(1/3); #lattice constant(m)\n",
"\n",
"#Result\n",
"print \"lattice constant is\",round(a*10**10,4),\"angstrom\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 2.5, Page number 2.24"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"lattice constant is 5.6 angstrom\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"M=58.5; #molecular weight\n",
"Na=6.02*10**26; #avagadro number(kg/mole)\n",
"n=4; \n",
"rho=2189; #density(kg/m**3)\n",
"\n",
"#Calculation\n",
"a=(n*M/(rho*Na))**(1/3); #lattice constant(m)\n",
"\n",
"#Result\n",
"print \"lattice constant is\",round(a*10**10,1),\"angstrom\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 2.6, Page number 2.25"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"lattice constant is 3.517 angstrom\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"M=6.94; #molecular weight\n",
"Na=6.02*10**26; #avagadro number(kg/mole)\n",
"n=2; \n",
"rho=530; #density(kg/m**3)\n",
"\n",
"#Calculation\n",
"a=(n*M/(rho*Na))**(1/3); #lattice constant(m)\n",
"\n",
"#Result\n",
"print \"lattice constant is\",round(a*10**10,3),\"angstrom\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 2.7, Page number 2.25"
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"percent volume change is 0.493 %\n",
"answer in the book varies due to rounding off errors\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"r1=1.258*10**-10; #radius(m)\n",
"r2=1.292*10**-10; #radius(m)\n",
"\n",
"#Calculation\n",
"a_bcc=4*r1/math.sqrt(3);\n",
"v=a_bcc**3;\n",
"V1=v/2;\n",
"a_fcc=2*math.sqrt(2)*r2;\n",
"V2=a_fcc**3/4;\n",
"V=(V1-V2)*100/V1; #percent volume change is\",V,\"%\"\n",
"\n",
"#Result\n",
"print \"percent volume change is\",round(V,3),\"%\"\n",
"print \"answer in the book varies due to rounding off errors\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 2.8, Page number 2.26"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"number of atoms/m**3 is 1.77 *10**29\n",
"density of diamond is 3534.47 kg/m**3\n",
"answer in the book is wrong\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"\n",
"#Variable declaration\n",
"a=0.356*10**-9; #cube edge(m)\n",
"w=12; #atomic weight\n",
"Na=6.02*10**26; #avagadro number(kg/mole)\n",
"\n",
"#Calculation\n",
"n=8/(a**3); #number of atoms/m**3\n",
"m=w/Na; #mass(kg)\n",
"rho=m*n; #density of diamond(kg/m**3)\n",
"\n",
"#Result\n",
"print \"number of atoms/m**3 is\",round(n/10**29,2),\"*10**29\"\n",
"print \"density of diamond is\",round(rho,2),\"kg/m**3\"\n",
"print \"answer in the book is wrong\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 2.9, Page number 2.26"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"maximum radius of sphere is 0.414 r\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"from sympy import *\n",
"\n",
"#Variable declaration\n",
"r=Symbol('r')\n",
"\n",
"#Calculation\n",
"a=4*r/math.sqrt(2);\n",
"R=(4*r/(2*math.sqrt(2)))-r; #maximum radius of sphere\n",
"\n",
"#Result\n",
"print \"maximum radius of sphere is\",round(R/r,3),\"r\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"##Example number 2.10, Page number 2.26"
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"radius of largest sphere is 0.155 r\n"
]
}
],
"source": [
"#importing modules\n",
"import math\n",
"from __future__ import division\n",
"from sympy import *\n",
"\n",
"#Variable declaration\n",
"r=Symbol('r')\n",
"\n",
"#Calculation\n",
"a=4*r/math.sqrt(3);\n",
"R=(a/2)-r; #radius of largest sphere\n",
"\n",
"#Result\n",
"print \"radius of largest sphere is\",round(R/r,3),\"r\""
]
}
],
"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.9"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
|