Skip to content

Commit b8237aa

Browse files
committed
update E_bandgap to E_gap(k)
1 parent d04e97d commit b8237aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/source_estate/elecstate_print.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -278,14 +278,14 @@ void print_etot(const Magnetism& magnet,
278278
// print out the band gap if needed
279279
if (!PARAM.globalv.two_fermi)
280280
{
281-
titles.push_back("E_bandgap");
281+
titles.push_back("E_gap(k)"); // gap of given k-points
282282
energies_Ry.push_back(elec.bandgap);
283283
}
284284
else
285285
{
286-
titles.push_back("E_bandgap_up");
286+
titles.push_back("E_gap_up(k)");
287287
energies_Ry.push_back(elec.bandgap_up);
288-
titles.push_back("E_bandgap_dw");
288+
titles.push_back("E_gap_dw(k)");
289289
energies_Ry.push_back(elec.bandgap_dw);
290290
}
291291
energies_eV.resize(energies_Ry.size());

0 commit comments

Comments
 (0)