We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As a diagonostic it would be nice to calculate u^2 in addition to the 2W that is currently calculated. essentially 2W =u^2Q^2
u^2 has the advantage of being Q independent.
I would like an additional function added to src/multiphonon/forward/phonon.py
I think the function would be
def usqcalc(E,dE,g,beta,M): g0 = gamma0(E, g, beta, dE) return g0* J2meV * (h_b / A2m) ** 2.0 / 2.0 / (M * amu)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As a diagonostic it would be nice to calculate u^2 in addition to the 2W that is currently calculated.
essentially 2W =u^2Q^2
u^2 has the advantage of being Q independent.
I would like an additional function added to src/multiphonon/forward/phonon.py
I think the function would be
def usqcalc(E,dE,g,beta,M):
g0 = gamma0(E, g, beta, dE)
return g0* J2meV * (h_b / A2m) ** 2.0 / 2.0 / (M * amu)
The text was updated successfully, but these errors were encountered: