Hi,
I am trying to determine the bandgap of graphene nanoribbons. I am also trying to compare with the density of states with the bandstructure diagram, and something doesn't add up.
The system under question:
(http://i.imgur.com/10dZcgA.png)
This is a nanoribbon 20 atoms wide in the armchair configuration.
This is the bandstructure diagram I get with the following settings:
bandstructure = Bandstructure (
configuration=configuration_obj,
route=band_route,
points_per_segment=100,
bands_above_fermi_level=5
)
(http://i.imgur.com/u7ypYxU.png)
As you can see the bandgap is around ~100meV.
Now, the Density of States curve with the following settings:
dos = DensityOfStates(
configuration=configuration_obj,
kpoints=MonkhorstPackGrid(4,4,4),
bands_above_fermi_level=5,
energy_zero_parameter=FermiLevel,
)
(http://i.imgur.com/T1ka1De.png)
In this photo you can see the bandgap to be around 2eV. Why is this difference so large? Is there anything wrong in my setup?
The settings for the DFT calculation were PBE.GGA Double Polarized, 4x4x4 k point grid and 65 Rydberg E cutoff.
Any help is appreciated.