Dear Edoardo,
Thanks for your comments. I appreciate the example you provided, but I should
add that it only worked for me if I replicate the DPLOT task block for the s component
to the p component, that is,
dplot
dos
vectors h2o.movecs
output h2odos_p.xy
end
Continuing with this issue I noticed there is an input parameter named translx, that
from the comment on the code I gather this is some empiral correction I can add to bring
the calculated HOMO energies close to the -IP (IP=ionization potential). Is this so?
Thanks again.
Domingos
Quote:Edoapra Nov 5th 7:25 pmDomingos,
The DOS section of the Gaussian DFT NWChem code is undocumented since it is still a work in progress (for example,
it might not work for open-shell systems).
Total DOS is activated by inserting the dos keyword in the dplot input section.
The output file can be fed into plotting programs (Grace, Gnuplot, etc ...) since it is made of columns of floating point values.
First column reports energy values, second column total DOS, next column PDOS
Right now, the only kind of PDOS that the module can calculate is the one corresponding to a given angular momentum (by using the set dplot:angproj [value of angular momentum directive).
The raw histogram is convoluted by means of Lorentzian broadening.
Let me know if you need more details
Here is an input example
=======
start h2o
geometry autosym
O 0.0 0.0 -0.02
H -0.74 0.0 -0.76
H 0.74 0.0 -0.76
end
basis
* library cc-pvdz
end
task dft
dplot
dos
vectors h2o.movecs
output h2odos_s.xy
end
set dplot:dos_doproj t
set dplot:angproj 0
task dplot
dplot
output h2odos_p.xy
end
set dplot:angproj 1
task dplot
|