From 226b3b61e83e6f8571b9ad3cb7ee629bcd00a478 Mon Sep 17 00:00:00 2001 From: Kevin Choi <k.choi-1@student.tudelft.nl> Date: Sat, 19 Jan 2019 20:08:16 +0000 Subject: [PATCH] Update 4_sommerfeld_model.md --- src/4_sommerfeld_model.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/4_sommerfeld_model.md b/src/4_sommerfeld_model.md index 3ccc097..5432712 100644 --- a/src/4_sommerfeld_model.md +++ b/src/4_sommerfeld_model.md @@ -44,7 +44,7 @@ Econt = kcont**2; fig = pyplot.figure(); ax = fig.add_subplot(111); -ax.plot(kcont, Econt, 'b-'); +ax.plot(kcont, Econt); ax.plot(ks, Edis, 'k.', markersize=10); for i in range(2*kf + 1): ax.plot([ks[i], ks[i]], [0.0, Edis[i]], 'k:'); @@ -133,9 +133,10 @@ Estates = kstates**2; fig = pyplot.figure(); ax = fig.add_subplot(111); +ax.fill_between(kfilled, Efilled, kf*kf); ax.plot([kf, kf], [0.0, kf*kf], 'k:'); ax.plot(kstates, Estates, 'k--'); -ax.plot(kfilled, Efilled, 'b-', linewidth=4); +ax.plot(kfilled, Efilled, linewidth=4); ax.axhline(kf*kf, linestyle="dotted", color='k'); ax.set_xticks([kf]); -- GitLab