Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pypl/config_coord_1d_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def compute_spectrum(self, eneaxis=None, linshape=None, tdm=1.0, zpl=0.0, spectr
ax.tick_params(direction="in")
ax.xaxis.set_ticks_position("both")
ax.yaxis.set_ticks_position("both")
ax.set_xlabel("$\hbar\omega$ (eV)")
ax.set_xlabel(r"$\hbar\omega$ (eV)")
ax.set_ylabel("PL/Abs (arb. unit.)")

plt.show()
4 changes: 2 additions & 2 deletions pypl/hr_factors.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def compute_hrf_forces(self, forces):
deltaq = deltaq / self.freqs[self.nom_translational + self.nom_imag_freq :] ** 2

print(
"Total \Delta Q is % .12e amu^{0.5} \AA"
r"Total \Delta Q is % .12e amu^{0.5} \AA"
% (np.linalg.norm(deltaq) / constants.physical_constants["atomic mass constant"][0] ** 0.5 * 1e10)
)

Expand Down Expand Up @@ -276,7 +276,7 @@ def compute_hrf_dis(self, gs_coord, es_coord, cell_parameters):
deltaq = np.dot(modes[self.nom_translational + self.nom_imag_freq :, :], mass_dis)

print(
"Total \Delta Q is % .12e amu^{0.5} \AA"
r"Total \Delta Q is % .12e amu^{0.5} \AA"
% (np.linalg.norm(deltaq) / constants.physical_constants["atomic mass constant"][0] ** 0.5 * 1e10)
)

Expand Down