NpT ensemble: Difference between revisions

From VASP Wiki
(Created page with "The NpT ensemble (isothermal-isobaric ensemble) is a statistical ensemble that is used to study material properties under the conditions of a const...")
 
No edit summary
Line 18: Line 18:
|style="text-align:center;"| {{TAG|ISIF}}            ||  style="text-align:center;"|  3
|style="text-align:center;"| {{TAG|ISIF}}            ||  style="text-align:center;"|  3
|-  
|-  
| optional tags  to set || style="text-align:center;"| {{TAG|LANGEVIN_GAMMA}},{{TAG|LANGEVIN_GAMMA_L}},{{TAG|PMASS}}
| additional tags  to set || style="text-align:center;"| {{TAG|LANGEVIN_GAMMA}},{{TAG|LANGEVIN_GAMMA_L}},{{TAG|PMASS}}
|}
|}


The optional tags in the column for the thermostat don't have to be set necessarily because VASP
The additional tags in the column for the thermostat don't have to be set necessarily because VASP
has a set of default values. A general guide for molecular-dynamics simulations can be found on the [[Molecular dynamics calculations|molecular-dynamics]] page.
has a set of default values for these tags. To use the NpT ensemble VASP has to be compiled with the precompiler flag [[Precompiler_flags|-Dtbdyn]]. The A general guide for molecular-dynamics simulations can be found on the [[Molecular dynamics calculations|molecular-dynamics]] page.


''An example {{FILE|INCAR}} file for the [[Andersen thermostat]]''  
''An example {{FILE|INCAR}} file for the [[Andersen thermostat]]''  


   #INCAR molecular-dynamics tags NVE ensemble  
   #INCAR molecular-dynamics tags NVE ensemble  
   {{TAGBL|IBRION}} = 0                   # choose molecular-dynamics  
   {{TAGBL|IBRION}} = 0                     # choose molecular-dynamics  
   {{TAGBL|MDALGO}} = 1                  # using Andersen thermostat
   {{TAGBL|MDALGO}} = 3                      # using Langevin thermostat
   {{TAGBL|ISIF}} = 2                    # compute stress tensor but do not change box volume/shape  
   {{TAGBL|ISIF}} = 3                        # compute stress tensor and change box volume/shape  
   {{TAGBL|TEBEG}} = 300                 # set temperature  
   {{TAGBL|TEBEG}} = 300                     # set temperature  
   {{TAGBL|NSW}} = 10000                 # number of time steps  
   {{TAGBL|NSW}} = 10000                     # number of time steps  
   {{TAGBL|POTIM}} = 1.0                 # time step in femto seconds  
   {{TAGBL|POTIM}} = 1.0                     # time step in femto seconds  
   {{TAGBL|ANDERSEN_PROB}} = 0.0         # setting Andersen collision probability to zero to get NVE enseble
   {{TAGBL|LANGEVIN_GAMMA}} = 10.0 10.0 10.0 # Langevin friction coefficient for three atomic species
  {{TAGBL|LANGEVIN_GAMMA_L}} = 10.0         # Langevin friction coefficient for lattice degrees of freedom
  {{TAGBL|LANGEVIN_GAMMA_L}} = 10.0        # Langevin friction coefficient fir three atomic species
  {{TAGBL|PMASS}} = 1000                    # the fictitious mass of the lattice degrees of freedom
 
 
{{NB|mind| This {{FILE|INCAR}} file only contains the parameters for the molecular-dynamics part. The [[Electronic minimization|electronic minimization]] or the [[Machine-learned force fields|machine learning]] tags have to be added.}}
{{NB|mind| This {{FILE|INCAR}} file only contains the parameters for the molecular-dynamics part. The [[Electronic minimization|electronic minimization]] or the [[Machine-learned force fields|machine learning]] tags have to be added.}}




==Related tags and articles==
==Related tags and articles==
[[Molecular dynamics calculations|Molecular-dynamics calculations]], {{TAG|ISIF}}, {{TAG|MDALGO}}, [[:Category:Ensembles|Ensembles]]
[[Molecular dynamics calculations|Molecular-dynamics calculations]], {{TAG|ISIF}}, {{TAG|MDALGO}}, {{TAG|LANGEVIN_GAMMA}}, {{TAG|LANGEVIN_GAMMA_L}}, {{TAG|PMASS}}, [[:Category:Ensembles|Ensembles]]


[[Category:Molecular dynamics]][[Category:Ensembles]][[Category:Thermostats]]
[[Category:Molecular dynamics]][[Category:Ensembles]][[Category:Thermostats]]

Revision as of 10:26, 10 August 2022

The NpT ensemble (isothermal-isobaric ensemble) is a statistical ensemble that is used to study material properties under the conditions of a constant particle number N, a pressure p fluctuating around an equilibrium value p and a temperature T fluctuating around an equilibrium value T. This page describes how to sample the NpT ensemble from a molecular-dynamics run.

Instructions for setting up a NpT ensemble

The Langevin thermostat is the algorithm of choice when setting up a NpT molecular-dynamics run. To use the Langevin thermostat for a NpT simulation the ISIF tag has to be set to 3. Otherwise the lattice is not allowed to change during the simulation, preventing VASP from keeping the pressure constant. Additionally the user can set LANGEVIN_GAMMA as when simulating a NVT ensemble, the tag LANGEVIN_GAMMA_L which is a friction coefficient for the lattice degrees of freedom and the PMASS tag to assign a fictitious mass to the lattice degrees of freedom.

NpT ensemble Langevin
MDALGO 3
ISIF 3
additional tags to set LANGEVIN_GAMMA,LANGEVIN_GAMMA_L,PMASS

The additional tags in the column for the thermostat don't have to be set necessarily because VASP has a set of default values for these tags. To use the NpT ensemble VASP has to be compiled with the precompiler flag -Dtbdyn. The A general guide for molecular-dynamics simulations can be found on the molecular-dynamics page.

An example INCAR file for the Andersen thermostat

 #INCAR molecular-dynamics tags NVE ensemble 
 IBRION = 0                      # choose molecular-dynamics 
 MDALGO = 3                      # using Langevin thermostat
 ISIF = 3                        # compute stress tensor and change box volume/shape 
 TEBEG = 300                     # set temperature 
 NSW = 10000                     # number of time steps 
 POTIM = 1.0                     # time step in femto seconds 
 LANGEVIN_GAMMA = 10.0 10.0 10.0 # Langevin friction coefficient for three atomic species
 LANGEVIN_GAMMA_L = 10.0         # Langevin friction coefficient for lattice degrees of freedom
 LANGEVIN_GAMMA_L = 10.0         # Langevin friction coefficient fir three atomic species
 PMASS = 1000                    # the fictitious mass of the lattice degrees of freedom


Mind: This INCAR file only contains the parameters for the molecular-dynamics part. The electronic minimization or the machine learning tags have to be added.


Related tags and articles

Molecular-dynamics calculations, ISIF, MDALGO, LANGEVIN_GAMMA, LANGEVIN_GAMMA_L, PMASS, Ensembles