From phonon dispersion to density of state

In summary, this person is trying to find out how to calculate the phonon density of state from a dispersion curve. They are looking for help from the community to find an approximate form of the delta function that can be used to calculate w(q).
  • #1
manutdhk
4
0
I have searched this topic in our forums. no answer about that.

I have obtained the phonon dispersion curve by applied a numerical simulation. However, how can I obtain the phonon density of state from such a curve?

generally speaking,

g(q)dq = g(w)dw, here q is the wave-vector; w is the phonon frequency. g(q), g(w) is the density of quantities mentioned above. g(w) is the right one I expect to calculate. and the phonon dispersion curve provide the relation of dw/dq. from the wikipedia, I know
g(q) = V*k^2/(2*pi^3) in 3-D homogenous solid.

My question is How to transfer g(q) into a functional form of "w", in order to subsitute the "dw/dq" into it, and obtain the "g(w)" ?

Thanks
 
Physics news on Phys.org
  • #2
If you know the dispersion relation, aka w(q), then you can find dw/dq.
 
  • #3
the question is :

the expression of g(q) is a function of q, it should be transfer into a function of "w" instead.

but How can I do that?
 
  • #4
If you have the dispersion, you have a function like w(q), right?
Then to calculate the density of states you do
[tex]g(\omega) = \sum_{q} \delta(\omega - \omega(q))[/tex]

You can do this numerically by choosing an approximate form of a delta function (like the derivative of the Fermi function) and summing over a regular grid of q points. But if you just have the dispersion along symmetry lines, that's not enough.
 
  • #5
Agree !
just the dispersion along high symmetrical lines are not enough, by using delta function method..
however, for an isotropic solid, it's possible to approximate that w(q) is just a function of the amplitute of q, which is equal to "w(q) = w(|q|)".
the high symmetrical lines, can cover all the possible value of |q|. it just requires the density of |q| in the first BZ.
is that right?

my question is I don't know how to construct the g(|q|) numerically.

Thanks for Kanato and genneth's discussion.
 
  • #6
Well you would calculate g(w) the same way I mentioned.. the functional form of omega is arbitrary. But using that approximation you could assume that the values obtained along high symmetry lines give you w(|q|) and that would tell you the frequency in the entire zone.

Numerically, in pseudocode you do this:

Select a grid of N points for w from 0 to your highest frequency value or something above it.
Create a regular grid of q points to sample frequencies from.

Code:
Define g(N) and initialize to zero

For each of the N points
    For each q point in the grid
        g(i) += delta(w_i - frequency(q))
    end for

end for

You need a function to approximate the delta function. I often use -df/de where f(e) is the Fermi function. This will require a temperature parameter that "smears" out the delta function. This is needed since you are sampling a finite grid of q points, and the 'temperature' will need to be higher the more coarse your grid is.

The above code can be optimized to run faster, but it should be adequate unless you need a really dense q grid.
 

1. What is phonon dispersion?

Phonon dispersion is a graphical representation of the relationship between the frequency and wavevector of a phonon, which is a quantized lattice vibration in a solid material.

2. How is phonon dispersion calculated?

Phonon dispersion is typically calculated using density functional theory (DFT) or other computational methods that take into account the interatomic forces and lattice structure of a material.

3. What is the purpose of studying phonon dispersion?

Studying phonon dispersion allows scientists to understand the vibrational properties of materials, which is important for predicting their thermal conductivity, mechanical properties, and other characteristics.

4. What is the relationship between phonon dispersion and density of states?

The density of states is a measure of the number of energy states available to a system. Phonon dispersion provides information on the available energy states for lattice vibrations, so the two are closely related.

5. How does phonon dispersion affect material properties?

The shape of the phonon dispersion curve can affect the thermal and mechanical properties of a material. For example, a flat phonon dispersion curve can lead to high thermal conductivity, while a steep curve can result in low thermal conductivity.

Similar threads

  • Atomic and Condensed Matter
Replies
1
Views
2K
  • Atomic and Condensed Matter
Replies
1
Views
2K
  • Advanced Physics Homework Help
Replies
3
Views
1K
  • Atomic and Condensed Matter
Replies
4
Views
2K
  • Atomic and Condensed Matter
Replies
0
Views
474
  • Atomic and Condensed Matter
Replies
5
Views
2K
  • Atomic and Condensed Matter
Replies
2
Views
1K
  • Atomic and Condensed Matter
Replies
1
Views
1K
  • Atomic and Condensed Matter
Replies
1
Views
4K
  • Quantum Physics
Replies
1
Views
1K
Back
Top