GEMDAT-repos / gemdat-notebooks

Notebooks used to explain GEMDAT
Apache License 2.0
2 stars 0 forks source link

Add radial distribution to introduction #12

Closed stefsmeets closed 1 month ago

stefsmeets commented 1 month ago

Side note, should we have transitions.radial_distribution as a shortcut?

from gemdat.rdf import radial_distribution

rdf_data = radial_distribution(
    transitions=transitions,
    floating_specie='Li',
)

for rdfs in rdf_data.values():
    fig = rdfs.plot()
    fig.show()