1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
|
.. _lcaotddft:
================================
Time-propagation TDDFT with LCAO
================================
This page documents the use of time-propagation TDDFT in :ref:`LCAO
mode <lcao>`. The implementation is described in Ref. [#Kuisma2015]_.
Real-time propagation of LCAO functions
=======================================
In the real-time LCAO-TDDFT approach, the time-dependent wave functions are
represented using the
localized basis functions `\tilde{\phi}_{\mu}(\mathbf r)` as
.. math::
\tilde{\psi}_n(\mathbf{r},t) = \sum_{\mu} \tilde{\phi}_{\mu}(\mathbf{r}-\mathbf{R}^\mu) c_{\mu n}(t) .
The time-dependent Kohn--Sham equation in the PAW formalism can be written as
.. math::
\left[ \widehat T^\dagger \left( -i \frac{{\rm d}}{{\rm d}t} + \hat H_{\rm KS}(t) \right) \widehat T \right] \tilde{\Psi(\mathbf{r},t)} = 0.
From this, the following matrix equation can be derived for the
LCAO wave function coefficients:
.. math::
{\rm i}\mathbf{S} \frac{{\rm d}\mathbf{C}(t)}{{\rm d}t} = \mathbf{H}(t) \mathbf{C}(t).
In the current implementation, `\mathbf C`, `\mathbf S` and
`\mathbf H` are dense matrices which are distributed using
ScaLAPACK/BLACS. Currently, a semi-implicit Crank--Nicolson method (SICN) is
used to propagate the wave functions. For wave functions at time `t`, one
propagates the system forward using `\mathbf H(t)` and solving the
linear equation
.. math::
\left( \mathbf{S} + {\rm i} \mathbf{H}(t) {\rm d}t / 2 \right) \mathbf{C}'(t+{\rm d}t) = \left( \mathbf{S} - {\rm i} \mathbf{H}(t) {\rm d}t / 2 \right) \mathbf{C}(t).
Using the predicted wave functions `C'(t+\mathrm dt)`, the
Hamiltonian `H'(t+\mathrm dt)` is calculated and the Hamiltonian at
middle of the time step is estimated as
.. math::
\mathbf{H}(t+{\rm d}t/2) = (\mathbf{H}(t) + \mathbf{H}'(t+{\rm d}t)) / 2
With the improved Hamiltonian, the wave functions are again propagated
from `t` to `t+\mathrm dt` by solving
.. math::
\left( \mathbf{S} + {\rm i} \mathbf{H}(t+{\rm d}t/2) {\rm d}t / 2 \right) \mathbf{C}(t+{\rm d}t) = \left( \mathbf{S} - {\rm i} \mathbf{H}(t+{\rm d}t/2) {\rm d}t / 2 \right) \mathbf{C}(t).
This procedure is repeated using 500--2000 time steps of 5--40 as to
calculate the time evolution of the electrons.
.. _example:
Example usage
=============
First we do a standard ground-state calculation with the ``GPAW`` calculator:
.. literalinclude:: lcaotddft.py
:lines: 3-20
Some important points are:
* The grid spacing is only used to calculate the Hamiltonian matrix and
therefore a coarser grid than usual can be used.
* Completely unoccupied bands should be left out of the calculation,
since they are not needed.
* The density convergence criterion should be a few orders of magnitude
more accurate than in usual ground-state calculations.
* If using GPAW version older than 1.5.0 or
``PoissonSolver(name='fd', eps=eps, ...)``,
the convergence tolerance ``eps`` should be at least ``1e-16``,
but ``1e-20`` does not hurt (note that this is the **quadratic** error).
The default ``FastPoissonSolver`` in GPAW versions starting from 1.5.0
do not require ``eps`` parameter. See :ref:`releasenotes`.
* One should use multipole-corrected Poisson solvers or
other advanced Poisson solvers in any TDDFT run
in order to guarantee the convergence of the potential with respect to
the vacuum size.
See the documentation on :ref:`advancedpoisson`.
Next we kick the system in the z direction and propagate 3000 steps of 10 as:
.. literalinclude:: lcaotddft.py
:lines: 22-34
After the time propagation, the spectrum can be calculated:
.. literalinclude:: lcaotddft.py
:lines: 36-38
This example input script can be downloaded :download:`here <lcaotddft.py>`.
Extending the functionality
---------------------------
The real-time propagation LCAOTDDFT provides very modular framework
for calculating many properties during the propagation.
See :ref:`analysis` for tutorial how to extend the analysis capabilities.
.. _note basis sets:
General notes about basis sets
==============================
In time-propagation LCAO-TDDFT, it is much more important to think
about the basis sets compared to ground-state LCAO calculations. It
is required that the basis set can represent both the occupied
(holes) and relevant unoccupied states (electrons) adequately. Custom
basis sets for the time propagation should be generated according to
one's need, and then benchmarked.
**Irrespective of the basis sets you choose always benchmark LCAO
results with respect to the FD time-propagation code** on the largest system
possible. For example, one can create a prototype system which consists of
similar atomic species with similar roles as in the parent system, but small
enough to calculate with grid propagation mode.
See Figs. 4 and 5 of Ref. [#Kuisma2015]_ for example benchmarks.
After these remarks, we describe two packages of basis sets that can be used
as a starting point for choosing a suitable basis set for your needs.
Namely, :ref:`pvalence basis sets` and :ref:`coopt basis sets`.
.. _pvalence basis sets:
p-valence basis sets
--------------------
The so-called p-valence basis sets are constructed for transition metals by
replacing the p-type polarization function of the default basis sets with a
bound unoccupied p-type orbital and its split-valence complement. Such basis
sets correspond to the ones used in Ref. [#Kuisma2015]_. These basis sets
significantly improve density of states of unoccupied states.
The p-valence basis sets can be easily obtained for the appropriate elements
with the :command:`gpaw install-data` tool using the following options::
$ gpaw install-data {<directory>} --basis --version=pvalence
See :ref:`installation of paw datasets` for more information on basis set
installation. It is again reminded that these basis sets are not thoroughly
tested and **it is essential to benchmark the performance of the basis sets
for your application**.
.. _coopt basis sets:
Completeness-optimized basis sets
---------------------------------
A systematic approach for improving the basis sets can be obtained with the
so-called completeness-optimization approach. This approach is used in Ref.
[#Rossi2015]_ to generate basis set series for TDDFT calculations of copper,
silver, and gold clusters.
For further details of the basis sets, as well as their construction and
performance, see [#Rossi2015]_. For convenience, these basis sets can be easily
obtained with::
$ gpaw install-data {<directory>} --basis --version=coopt
See :ref:`installation of paw datasets` for basis set installation. Finally,
it is again emphasized that when using the basis sets, **it is essential to
benchmark their suitability for your application**.
.. _parallelization:
Parallelization
===============
For maximum performance on large systems, it is advicable to use
ScaLAPACK and large band parallelization with ``augment_grids`` enabled.
This can be achieved with parallelization settings like
``parallel={'sl_auto': True, 'domain': 8, 'augment_grids': True}``
(see :ref:`manual_parallel`),
which will use groups of 8 tasks for domain parallelization and the rest for
band parallelization (for example, with a total of 144 cores this would mean
domain and band parallelizations of 8 and 18, respectively).
Instead of ``sl_auto``, the ScaLAPACK settings can be set by hand
as ``sl_default=(m, n, block)`` (see :ref:`manual_ScaLAPACK`,
in which case it is important that ``m * n``` equals
the total number of cores used by the calculator
and that ``max(m, n) * block < nbands``.
It is also possible to run the code without ScaLAPACK, but it is
very inefficient for large systems as in that case only a single core
is used for linear algebra.
.. TODO
Timing
======
Add ``ParallelTimer`` example
.. _analysis:
Modular analysis tools
======================
In :ref:`example` it was demonstrated how to calculate photoabsorption
spectrum from the time-dependent dipole moment data collected with
``DipoleMomentWriter`` observer.
However, any (also user-written) analysis tools can be attached
as a separate observers in the general time-propagation framework.
There are two ways to perform analysis:
1. Perform analysis on-the-fly during the propagation::
# Read starting point
td_calc = LCAOTDDFT('gs.gpw')
# Attach analysis tools
MyObserver(td_calc, ...)
# Kick and propagate
td_calc.absorption_kick([1e-5, 0., 0.])
td_calc.propagate(10, 3000)
For example, the analysis tools can be ``DipoleMomentWriter`` observer
for spectrum or Fourier transform of density at specific frequencies etc.
2. Record the wave functions during the first propagation and
perform the analysis later by replaying the propagation::
# Read starting point
td_calc = LCAOTDDFT('gs.gpw')
# Attach analysis tools
MyObserver(td_calc, ...)
# Replay propagation from a stored file
td_calc.replay(name='wf.ulm', update='all')
From the perspective of the attached observers the replaying
is identical to actual propagation.
The latter method is recommended, because one might not know beforehand
what to analyze.
For example, the interesting resonance frequencies are often not know before
the time-propagation calculation.
In the following we give an example how to utilize the replaying capability
in practice and describe some analysis tools available in GPAW.
Example
-------
We use a finite sodium atom chain as an example system.
First, let's do the ground-state calculation:
.. literalinclude:: lcaotddft_Na8/gs.py
Note the recommended use of :ref:`advancedpoisson` and
:ref:`pvalence basis sets`.
Recording the wave functions and replaying the time propagation
---------------------------------------------------------------
We can record the time-dependent wave functions during the propagation
with ``WaveFunctionWriter`` observer:
.. literalinclude:: lcaotddft_Na8/td.py
.. tip::
The time propagation can be continued in the same manner
from the restart file:
.. literalinclude:: lcaotddft_Na8/tdc.py
The created ``wf.ulm`` file contains the time-dependent wave functions
`C_{\mu n}(t)` that define the state of the system at each time.
We can use the file to replay the time propagation:
.. literalinclude:: lcaotddft_Na8/td_replay.py
The ``update`` keyword in ``replay()`` has following options:
============== ===============================
``update`` variables updated during replay
============== ===============================
``'all'`` Hamiltonian and density
``'density'`` density
``'none'`` nothing
============== ===============================
.. tip::
The wave functions can be written in separate files
by using ``split=True``::
WaveFunctionWriter(td_calc, 'wf.ulm', split=True)
This creates additional ``wf*.ulm`` files containing the wave functions.
The replay functionality works as in the above example
even with splitted files.
.. _ksdecomposition:
Kohn--Sham decomposition of density matrix
------------------------------------------
Kohn--Sham decomposition is an illustrative way of analyzing electronic
excitations in Kohn--Sham electron-hole basis.
See Ref. [#Rossi2017]_ for the description of the GPAW implementation
and demonstration.
Here we demonstrate how to construct the photoabsorption decomposition
at a specific frequency in Kohn--Sham electon-hole basis.
First, let's calculate and :download:`plot <lcaotddft_Na8/spec_plot.py>`
the spectrum:
.. literalinclude:: lcaotddft_Na8/spectrum.py
.. image:: lcaotddft_Na8/spec.png
:scale: 70%
The two main resonances are analyzed in the following.
Frequency-space density matrix
""""""""""""""""""""""""""""""
We generate the density matrix for the frequencies of interest:
.. literalinclude:: lcaotddft_Na8/td_fdm_replay.py
Transform the density matrix to Kohn--Sham electron-hole basis
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
First, we construct the Kohn--Sham electron-hole basis.
For that we need to calculate unoccupied Kohn--Sham states,
which is conveniently done by restarting from the earlier
ground-state file:
.. literalinclude:: lcaotddft_Na8/ksd_init.py
Next, we can use the created objects to transform the LCAO density matrix
to the Kohn--Sham electron-hole basis and visualize the photoabsorption
decomposition as a transition contribution map (TCM):
.. literalinclude:: lcaotddft_Na8/tcm_plot.py
Note that the sum over the decomposition (the printed total absorption)
equals to the value of the photoabsorption spectrum at the particular
frequency in question.
We obtain the following transition contributions for the resonances
(presented both as tables and TCMs):
.. literalinclude:: lcaotddft_Na8/table_1.12.txt
:language: none
.. image:: lcaotddft_Na8/tcm_1.12.png
:scale: 70%
.. literalinclude:: lcaotddft_Na8/table_2.48.txt
:language: none
.. image:: lcaotddft_Na8/tcm_2.48.png
:scale: 70%
Induced density
---------------
The density matrix gives access to any other quantities.
For instance, the induced density can be conveniently obtained
from the density matrix:
.. literalinclude:: lcaotddft_Na8/fdm_ind.py
The resulting cube files can be visualized, for example, with
:download:`this script <lcaotddft_Na8/ind_plot.py>` producing
the figures:
.. image:: lcaotddft_Na8/ind_1.12.png
:scale: 70%
.. image:: lcaotddft_Na8/ind_2.48.png
:scale: 70%
Advanced tutorials
==================
Plasmon resonance of silver cluster
-----------------------------------
In this tutorial, we demonstrate the use of
:ref:`efficient parallelization settings <parallelization>` and
calculate the photoabsorption spectrum of
:download:`an icosahedral Ag55 cluster <lcaotddft_Ag55/Ag55.xyz>`.
We use GLLB-SC potential to significantly improve the description of d states,
:ref:`pvalence basis sets` to improve the description of unoccupied states, and
11-electron Ag setup to reduce computational cost.
**When calculating other systems, remember to check the convergence
with respect to the used basis sets.**
Recall :ref:`hints here <note basis sets>`.
The workflow is the same as in the previous examples.
First, we calculate ground state (takes around 20 minutes with 36 cores):
.. literalinclude:: lcaotddft_Ag55/gs.py
Then, we carry the time propagation for 30 femtoseconds in steps of
10 attoseconds (takes around 3.5 hours with 36 cores):
.. literalinclude:: lcaotddft_Ag55/td.py
Finally, we calculate the spectrum (takes a few seconds):
.. literalinclude:: lcaotddft_Ag55/spec.py
The resulting spectrum shows an emerging plasmon resonance at around 4 eV:
.. image:: lcaotddft_Ag55/Ag55_spec.png
For further insight on plasmon resonance in metal nanoparticles,
see [#Kuisma2015]_ and [#Rossi2017]_.
User-generated basis sets
-------------------------
The :ref:`pvalence basis sets` distributed with GPAW and used in
the above tutorial have been generated from atomic PBE orbitals.
Similar basis sets can be generated based on atomic GLLB-SC orbitals:
.. literalinclude:: lcaotddft_Ag55/mybasis/basis.py
The Ag55 cluster can be calculated as in the above tutorial, once
the input scripts have been modified to use
the generated setup and basis set.
Changes to the ground-state script:
.. literalinclude:: lcaotddft_Ag55/mybasis/gs.py
:diff: lcaotddft_Ag55/gs.py
Changes to the time-propagation script:
.. literalinclude:: lcaotddft_Ag55/mybasis/td.py
:diff: lcaotddft_Ag55/td.py
The calculation with this generated "my" p-valence basis set results only in
small differences in the spectrum in comparison to
the distributed :ref:`pvalence basis sets`:
.. image:: lcaotddft_Ag55/Ag55_spec_basis.png
The spectrum with the default dzp basis sets is also shown for reference,
resulting in unconverged spectrum due to the lack of diffuse functions.
**This demonstrates the importance of checking convergence
with respect to the used basis sets.**
Recall :ref:`hints here <note basis sets>` and
see [#Kuisma2015]_ and [#Rossi2015]_ for further discussion on the basis sets.
.. TODO
Large organic molecule
----------------------
On large organic molecules, on large conjugated systems, there will `\pi \rightarrow \pi^*`,
`\sigma \rightarrow \sigma^*`. These states consist of only
the valence orbitals of carbon, and they are likely by quite similar few eV's
below and above the fermi lavel. These are thus a reason to believe that these
states are well described with hydrogen 1s and carbon 2s and 2p valence orbitals
around the fermi level.
Here, we will calculate a small and a large organic molecule with lcao-tddft.
Time-dependent potential
------------------------
Instead of using the dipolar delta kick as a time-domain perturbation,
it is possible to define any time-dependent potential.
Considering the sodium atom chain as an example,
we can tune a dipolar Gaussian pulse to its resonance at 1.12 eV
and propagate the system:
.. literalinclude:: lcaotddft_Na8/td_pulse.py
The resulting dipole-moment response shows the resonant excitation
of the system:
.. image:: lcaotddft_Na8/pulse.png
References
==========
.. [#Kuisma2015]
| M. Kuisma, A. Sakko, T. P. Rossi, A. H. Larsen, J. Enkovaara, L. Lehtovaara, and T. T. Rantala,
| :doi:`Localized surface plasmon resonance in silver nanoparticles: Atomistic first-principles time-dependent density functional theory calculations <10.1103/PhysRevB.91.115431>`
| Phys. Rev. B **91**, 115431 (2015)
.. [#Rossi2015]
| T. P. Rossi, S. Lehtola, A. Sakko, M. J. Puska, and R. M. Nieminen,
| :doi:`Nanoplasmonics simulations at the basis set limit through completeness-optimized, local numerical basis sets <10.1063/1.4913739>`
| J. Chem. Phys. **142**, 094114 (2015)
.. [#Rossi2017]
| T. P. Rossi, M. Kuisma, M. J. Puska, R. M. Nieminen, and P. Erhart,
| :doi:`Kohn--Sham Decomposition in Real-Time Time-Dependent Density-Functional Theory: An Efficient Tool for Analyzing Plasmonic Excitations <10.1021/acs.jctc.7b00589>`
| J. Chem. Theory Comput. **13**, 4779 (2017)
|