General

Introduction

The DFTB engine implements density functional based tight-binding methods, which can be viewed as computationally very efficient approximations to density functional theory (DFT). As such it is a good engine for cheap calculations that still include quantum effects. DFTB is a computational engine that runs through the AMS driver. It can be used directly from the command line, from Python, and through our graphical interface.

What’s new in DFTB2019?

New in DFTB2019.3

New in DFTB2019.1

  • Grimme’s GFN1-xTB has been added as a new model Hamiltonian. It supports molecular as well es periodic calculations for systems including elements up to Radon. Visualization of the results (e.g. molecular orbitals) in ADFView is also supported.
  • Various new applications in the AMS driver.
  • More robust and easier to set up k-space integration.
  • More robust SCC convergence:
    • Adaptive mixing: The charge mixing parameter is automatically decreased if the energy increases during the SCC cycle.
    • The default electronic temperature has been increased to 300K, making SCC convergence more robust for systems with small HOMO-LUMO gaps.

What’s new in DFTB2018?

New features

  • Elastic tensor and related properties (e.g. Bulk modulus) (via AMS driver)
  • Linear transit and PES scan (via AMS driver)
  • Geometry optimization under pressure (via AMS driver)

AMS: a new driver program

Important

In the 2018 release of the Amsterdam Modeling Suite we introduced a new driver program call AMS. We recommend you to first read the General section of the AMS Manual

If you use DFTB exclusively via the Graphical User Interface (GUI), this change should not create any issues. If, on the other hand, you create input files by hand (or you use DFTB via PLAMS), then you should be aware that shell scripts for DFTB2017 and previous versions are not compatible with DFTB2019 and have to be adjusted to the new setup.

The example below shows how a shell script for DFTB2017 is converted to DFTB2019.

DFTB2017 shell script (obsolete):

#!/bin/sh

# This is a shell script for DFTB2017 which will not work for DFTB2019

$ADFBIN/dftb << EOF

Task
   RunType GO
End

System
   Atoms
      H 0.0 0.0 0.0
      H 0.9 0.0 0.0
   End
End

DFTB
   ResourcesDir Dresden
End

Geometry
   iterations 100
End

EOF

DFTB2019 shell script:

#!/bin/sh

# This is a shell script for DFTB2019

# The executable '$ADFBIN/dftb' is no longer present.
# You should use '$ADFBIN/ams' instead.

$ADFBIN/ams << EOF
   # Input options for the AMS driver:

   System
      Atoms
         H 0.0 0.0 0.0
         H 0.9 0.0 0.0
      End
   End

   Task GeometryOptimization

   GeometryOptimization
      MaxIterations 100
   End

   # The input options for DFTB, which are described in this manual,
   # should be specified in the 'Engine DFTB' block:

   Engine DFTB
      ResourcesDir Dresden
   EndEngine
EOF