Skip to content
Snippets Groups Projects
Commit f96ec61f authored by Anton Akhmerov's avatar Anton Akhmerov
Browse files

fix missing raw string

parent 98a31dbc
Branches
No related tags found
No related merge requests found
Pipeline #52213 passed
......@@ -135,8 +135,8 @@ dEmin = integrate.quad(integral, 0, 1e1, args=(T-dT))[0] - 0.8e10 * 5.2**(5./2)
CV = (dEplus - dEmin) / (2*dT);
print('dE = {:.4e} eV'.format(dE))
print('Cv = {:.4e} eV/K'.format(CV))
print(f'dE = {dE:.4e} eV')
print(f'Cv = {CV:.4e} eV/K')
```
Check the source code written in python for solving integral using midpoint rule.
......@@ -163,7 +163,7 @@ ax.set_xticks([])
ax.set_yticks([])
ax.set_xlabel(r'$\mid \vec k \mid$', fontsize=14)
ax.set_ylabel('$\varepsilon$', fontsize=18, rotation='horizontal')
ax.set_ylabel(r'$\varepsilon$', fontsize=18, rotation='horizontal')
ax.yaxis.set_label_coords(0.5,1)
ax.xaxis.set_label_coords(1.0, 0.49)
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment