Skip to content

Commit 003d9f0

Browse files
committed
add problems notebook
1 parent 6909d37 commit 003d9f0

File tree

2 files changed

+442
-0
lines changed

2 files changed

+442
-0
lines changed

99-problems.ipynb

+102
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# Exercise"
8+
]
9+
},
10+
{
11+
"cell_type": "markdown",
12+
"metadata": {},
13+
"source": [
14+
"## super cell expansion\n",
15+
"\n",
16+
"- load Au.cif cif file and convert it to a 2x2x2 supercell"
17+
]
18+
},
19+
{
20+
"cell_type": "code",
21+
"execution_count": 1,
22+
"metadata": {},
23+
"outputs": [],
24+
"source": [
25+
"# hints:\n",
26+
"# see diffpy.structure.loadStructure function and\n",
27+
"# diffpy.structure.expansion module."
28+
]
29+
},
30+
{
31+
"cell_type": "markdown",
32+
"metadata": {},
33+
"source": [
34+
"## particle generation from crystal structure\n",
35+
"\n",
36+
"- create a spherical cutout (radius = 8A) from Au.cif crystal structure"
37+
]
38+
},
39+
{
40+
"cell_type": "code",
41+
"execution_count": 2,
42+
"metadata": {},
43+
"outputs": [],
44+
"source": [
45+
"# hints: see diffpy.structure.expansion module"
46+
]
47+
},
48+
{
49+
"cell_type": "markdown",
50+
"metadata": {},
51+
"source": [
52+
"## make cylindrical layer\n",
53+
"\n",
54+
"- load Au.cif cif file and expand it to a cylindrical layer with R=30A, d=4A."
55+
]
56+
},
57+
{
58+
"cell_type": "code",
59+
"execution_count": null,
60+
"metadata": {},
61+
"outputs": [],
62+
"source": []
63+
},
64+
{
65+
"cell_type": "markdown",
66+
"metadata": {},
67+
"source": [
68+
"## extract molecule from a CIF file\n",
69+
"\n",
70+
"- extract single quinacridone molecule from the quinacridone-beta.cif structure"
71+
]
72+
},
73+
{
74+
"cell_type": "code",
75+
"execution_count": null,
76+
"metadata": {},
77+
"outputs": [],
78+
"source": []
79+
}
80+
],
81+
"metadata": {
82+
"kernelspec": {
83+
"display_name": "Python 3",
84+
"language": "python",
85+
"name": "python3"
86+
},
87+
"language_info": {
88+
"codemirror_mode": {
89+
"name": "ipython",
90+
"version": 3
91+
},
92+
"file_extension": ".py",
93+
"mimetype": "text/x-python",
94+
"name": "python",
95+
"nbconvert_exporter": "python",
96+
"pygments_lexer": "ipython3",
97+
"version": "3.6.8"
98+
}
99+
},
100+
"nbformat": 4,
101+
"nbformat_minor": 2
102+
}

0 commit comments

Comments
 (0)