-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathexample_supercell.py
More file actions
53 lines (41 loc) · 1.77 KB
/
Copy pathexample_supercell.py
File metadata and controls
53 lines (41 loc) · 1.77 KB
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
"""
Dans_Diffraction Examples
Build a supercell from multiple unit cells and simulate the diffraction pattern
"""
import sys, os
import numpy as np
import matplotlib.pyplot as plt # Plotting
cf = os.path.dirname(__file__)
sys.path.insert(0, os.path.join(cf, '..'))
import Dans_Diffraction as dif
f = cf+'/../Dans_Diffraction/Structures/Na0.8CoO2_P63mmc.cif'
xtl = dif.Crystal(f)
#P = [[2,-1,0],[1,3,0],[0,0,1]] # 1/7th Supercell
#P = [[-1,3,0],[4,3,0],[0,0,1]] # Square Supercell
P = [[3, 0, 0], [4, 5, 0], [0, 0, 1]] # Stripe Supercell
#P = [[1,3,0],[3,-1,0],[0,0,1]]
#P = [[2,0,0],[0,2,0],[0,0,1]] # Double supercell
#sup = xtl.generate_superstructure(P)
# Set discrete occupancies for average structure
xtl.Atoms.occupancy[2] = 0
xtl.Atoms.occupancy[3] = 1
xtl.generate_structure()
# Generate the superstructure, repeating the parent/average structure to fill the supercell
sup = xtl.generate_superstructure(P)
# Set the Na ion occupancies
# Stripe Cell
# Na1 6,7 16,17 26,27 36,37 46,47 56,57 66,67 76,77 86,87 96,97 106,107 116,117 126,127 136,137 146,147
# Na2 8,9 18,19 28,29 38,39 48,49 58,59 68,69 78,79 88,89 98,99 108,109 118,119 128,129 138,139 148,149
sup.Structure.occupancy[[6, 16, 26, 77, 87, 107]] = 1 # Na1
sup.Structure.occupancy[[8, 18, 38, 28, 48, 58, 139, 119, 149, 109, 89, 79]] = 0 # Na2
# Plot the Na layers showing the ordering
sup.Plot.plot_layers(layers=[0.25, 0.75], layer_width=0.01, show_labels=True)
# Generate hk0 plane, with overlapping hexagonal superlattice domains
#plt.ion()
print('Running simulation:')
sup.Plot.simulate_hk0(L=0) # (0,0,L) of the parent cell
plt.clim([0, 100])
#plt.ioff()
plt.show()
# Create a CIF file
sup.write_cif('NaCoO2_stripe_supercell', 'Na0.8CoO2 Stripe Supercell. P = %s' % P)