-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathdiffraction.py
32 lines (24 loc) · 995 Bytes
/
diffraction.py
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
from __future__ import annotations
import dash
from pymatgen.core import Lattice, Structure
import crystal_toolkit.components as ctc
from crystal_toolkit.helpers.layouts import H1, H2, Container
from crystal_toolkit.settings import SETTINGS
app = dash.Dash(assets_folder=SETTINGS.ASSETS_PATH)
structure = Structure(Lattice.cubic(4.2), ["Na", "K"], [[0, 0, 0], [0.5, 0.5, 0.5]])
xrd_component = ctc.XRayDiffractionComponent(initial_structure=structure)
# example layout to demonstrate capabilities of component
layout = Container(
[
H1("XRDComponent Example"),
H2("Generated from Structure object", style={"fontSize": "1rem"}),
xrd_component.layout(),
]
)
# as explained in "preamble" section in documentation
ctc.register_crystal_toolkit(app=app, layout=layout)
# run this app with "python path/to/this/file.py"
# in production, deploy behind gunicorn or similar
# see Dash docs for more info
if __name__ == "__main__":
app.run(debug=True, port=8050)