Skip to content
Snippets Groups Projects
Commit 226b3b61 authored by Kevin Choi's avatar Kevin Choi
Browse files

Update 4_sommerfeld_model.md

parent e88f1b52
No related branches found
No related tags found
No related merge requests found
......@@ -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]);
......
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