From b930cb8a69096eb3d0105372fbf69a55b8630e83 Mon Sep 17 00:00:00 2001
From: Johanna <johanna@zijderveld.de>
Date: Tue, 7 May 2024 13:21:33 +0200
Subject: [PATCH] increase the number of points in the graphene phase diagram

---
 docs/source/graphene_example.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/source/graphene_example.md b/docs/source/graphene_example.md
index 699b948..97106ee 100644
--- a/docs/source/graphene_example.md
+++ b/docs/source/graphene_example.md
@@ -109,8 +109,8 @@ We chose to initialize a new guess for each $U$ value, but not for each $V$ valu
 We can now compute the phase diagram and then plot it
 
 ```{code-cell} ipython3
-Us = np.linspace(0, 4, 5)
-Vs = np.linspace(0, 1.5, 5)
+Us = np.linspace(0, 4, 10)
+Vs = np.linspace(0, 1.5, 10)
 gap, mf_sols = compute_phase_diagram(Us, Vs, int_builder, h_0)
 plt.imshow(gap.T, extent=(Us[0], Us[-1], Vs[0], Vs[-1]), origin='lower', aspect='auto')
 plt.colorbar()
-- 
GitLab