From 581066f6931da6f56440193718e539ab66207233 Mon Sep 17 00:00:00 2001
From: Anton Akhmerov <anton.akhmerov@gmail.com>
Date: Tue, 22 Jan 2019 10:22:53 +0000
Subject: [PATCH] remove commented code, add units to temperature

---
 src/2_debye_model.md | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/src/2_debye_model.md b/src/2_debye_model.md
index 3d58cad..4bede8a 100644
--- a/src/2_debye_model.md
+++ b/src/2_debye_model.md
@@ -123,19 +123,15 @@ temp = np.linspace(1, 215, 100)
 
 fit = curve_fit(c_einstein, T, c, 500)
 T_E = fit[0][0]
-#delta_T_E = np.sqrt(fit[1][0, 0])
-#print(f"T_E = {T_E:.5} ± {delta_T_E:.3} K")
 
 fit = curve_fit(c_debye, T, c, 500)
 T_D = fit[0][0]
-#delta_T_D = np.sqrt(fit[1][0, 0])
-#print(f"T_D = {T_D:.5} ± {delta_T_D:.3} K")
 
 fig, ax = pyplot.subplots()
 ax.scatter(T, c)
 ax.set_title('Heat capacity of silver compared to the Debye and Einstein models')
-ax.plot(temp, c_debye(temp, T_D), label=f'Debye model, $T_D={T_D:.5}$')
-ax.plot(temp, c_einstein(temp, T_E), label=f'Einstein model, $T_E={T_E:.5}$')
+ax.plot(temp, c_debye(temp, T_D), label=f'Debye model, $T_D={T_D:.5}K$')
+ax.plot(temp, c_einstein(temp, T_E), label=f'Einstein model, $T_E={T_E:.5}K$')
 ax.set_ylim(bottom=0, top=3)
 ax.set_xlim(0, 215)
 ax.set_xlabel('$T(K)$')
-- 
GitLab