Skip to content
Snippets Groups Projects
Commit 46de856f authored by Kostas Vilkelis's avatar Kostas Vilkelis :flamingo:
Browse files

fix legend

parent 261e3177
No related branches found
No related tags found
No related merge requests found
Pipeline #60034 passed
......@@ -93,8 +93,8 @@ fig, ax = pyplot.subplots()
n_F = 1/(np.exp(2*(E - E_F)) + 1)
g_e = m_e * sqrt_plus(E - E_C)
g_h = m_h * sqrt_plus(E_V - E)
ax.plot(E, g_h, label="$g_e$")
ax.plot(E, g_e, label="$g_h$")
ax.plot(E, g_h, label="$g_h$")
ax.plot(E, g_e, label="$g_e$")
sigma = 0.01
g_D = np.exp(-(E_D - E)**2 / sigma**2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment