From b4950375fcee9ec4f95000dfcb44d27f64462c5f Mon Sep 17 00:00:00 2001 From: Pablo Piaggi Date: Wed, 26 Jul 2023 11:58:10 -0400 Subject: [PATCH] correct high-symmetry points example graphene --- examples/Graphene/api.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/Graphene/api.py b/examples/Graphene/api.py index b93e493..7e42ebf 100644 --- a/examples/Graphene/api.py +++ b/examples/Graphene/api.py @@ -15,9 +15,9 @@ bl = { - "ranges": [[[0.0, 0.0, 0.0], [0.5, 0.5, 0.0]], - [[0.5, 0.5, 0.0], [0.3333333333, 0.6666666666666, 0.0]], - [[0.3333333333, 0.6666666666666, 0.0], [0.0, 0.0, 0.0]]], + "ranges": [[[0.0, 0.0, 0.0], [0.5, 0.0, 0.0]], + [[0.5, 0.0, 0.0], [0.3333333333, 0.3333333333333, 0.0]], + [[0.3333333333, 0.3333333333333, 0.0], [0.0, 0.0, 0.0]]], "labels": [("GAMMA", "M"), ("M", "K"), ("K", "GAMMA")] } phlammps.plot_phonon_dispersion_bands(bands_and_labels=bl)