Email (Optional)
No response
Problem
Currently, the PhononCalc does not return the frequencies, even though this is very useful information. I propose storing this in the output. Note that the weights need to be stored since some of the frequencies will have 0 weight.
This can be easily done as follows:
dos_dict = phonon.auto_total_dos()
frequencies = dos_dict["frequency_points"]
weights = dos_dict["total_dos"]
Proposed Solution
See above.
Alternatives
No response
Code of Conduct