User Tools

Site Tools


exercises:common:ensemble

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
exercises:common:ensemble [2022/10/31 16:11] jglanexercises:common:ensemble [2022/10/31 17:28] (current) – [NVT Ensemble] jglan
Line 1: Line 1:
-====== Lennard-Jones liquids ======+====== Ensembles (Lennard-Jones liquids======
 In this exercise, you will simulate a fluid of monoatomic particles that interact with a Lennard-Jones potential. The method to be used is molecular dynamics (MD) with periodic boundary conditions using CP2K. The aim is to explore the method, calculate the radial distribution function $g(r)$ and investigate a variety of ensembles. In this exercise, you will simulate a fluid of monoatomic particles that interact with a Lennard-Jones potential. The method to be used is molecular dynamics (MD) with periodic boundary conditions using CP2K. The aim is to explore the method, calculate the radial distribution function $g(r)$ and investigate a variety of ensembles.
  
Line 16: Line 16:
 The radial distribution function, (or pair correlation function) $g(r)$, in a system of particles (atoms, molecules, colloids, etc.), describes how the density varies as a function of distance from a reference particle. The radial distribution function, (or pair correlation function) $g(r)$, in a system of particles (atoms, molecules, colloids, etc.), describes how the density varies as a function of distance from a reference particle.
  
-===== I: NVE ensemble  =====+===== NVE Ensemble  =====
  
 In this section, we provide you with an example CP2K input for an MD calculation. In this section, we provide you with an example CP2K input for an MD calculation.
Line 214: Line 214:
 </note> </note>
  
-===== Part III:  Radial distribution function  =====+ 
 +===== NVT Ensemble  ===== 
 + 
 +In the previous sections, you have already run NVE ensemble molecular dynamics calculations for liquid Ar. In this section, we will focus on the NVT ensembles.  
 + 
 +Although the most popular Nose-Hoover thermostat is commonly-used in other MD codes, the original Nose-Hoover thermostat has an ergodic issue. This has been solved by Mark Tuckerman et al. See [[https://doi.org/10.1063/1.463940 |Nose-Hoover Chain Thermostat]]  
 +In CP2K, the default length of the Nose-Hoover chain is set to 3. (See Manual [[https://manual.cp2k.org/cp2k-2022_1-branch/CP2K_INPUT/MOTION/MD/THERMOSTAT/NOSE.html| %MOTION%MD%THERMOSTAT%NOSE]]) 
 + 
 + 
 +To set up an NVT calculation, change the settings in the &MD section as shown below: 
 + 
 + 
 +  &MD 
 +    ENSEMBLE NVT 
 +    STEPS 3000 
 +    TIMESTEP 5 
 +    TEMPERATURE 298 
 +    &THERMOSTAT 
 +      REGION MASSIVE 
 +      &NOSE                    #Uses the Nose-Hoover thermostat 
 +        TIMECON 100           #timeconstant of the thermostat chain, how often does the thermostat adjust your system  
 +      &END NOSE 
 +    &END 
 +  &END MD 
 +   
 + 
 +Alternatively, one can also use [[https://manual.cp2k.org/cp2k-2022_1-branch/CP2K_INPUT/MOTION/MD/THERMOSTAT/CSVR.html| Canonical sampling through velocity rescaling 
 +(CSVR)]] as developed by Giovanni [[https://doi.org/10.1063/1.2408420 |Bussi et al. ]] 
 +  &MD 
 +    ENSEMBLE NVT 
 +    STEPS 3000 
 +    TIMESTEP 5 
 +    TEMPERATURE 298 
 +    &THERMOSTAT 
 +      &CSVR                     
 +        TIMECON 100           #timeconstant of the CSVR, how often does the thermostat adjust your system  
 +      &END CSVR 
 +    &END 
 +  &END MD 
 +   
 +===== NPT Ensemble  ===== 
 + 
 +   
 +To set up an NPT calculation, change the settings in the &MD section as shown below: 
 + 
 +  &FORCE_EVAL 
 +  ... 
 +  STRESS_TENSOR ANALYTICAL 
 +  ... 
 +  &END FORCE_EVAL 
 +  ... 
 +  ... 
 +  &MD 
 +    ENSEMBLE NPT_I                #constant temperature and pressure using an isotropic cell 
 +    STEPS 3000 
 +    TIMESTEP 5. 
 +    TEMPERATURE 85.0 
 +    &BAROSTAT 
 +      PRESSURE 0.                 # PRESSURE, unit[bar] 
 +      TIMECON 1000 
 +    &END BAROSTAT 
 +    &THERMOSTAT 
 +      &NOSE 
 +        TIMECON 1000 
 +      &END NOSE 
 +    &END THERMOSTAT 
 +   &END MD 
 + 
 +<note> 
 +**TASK** 
 +   *Run a calculation using the NVT ensemble at 300K. Check the temperature and energy of the whole system, and compare the result to an NVE ensemble (300K). Rationalize and discuss the difference. 
 +   *Run a calculation using the NVT ensemble (300K) until the system is equilibrated, then run an NVE ensemble calculation. Check the temperature and energy of the whole system, and compare to the previous NVE simulation. Discuss your observations. 
 +   *Remove some atoms and run an NPT ensemble simulation. Then, check the size of the simulation box. Discuss your observations. 
 +</note> 
 + 
 +<note tip> 
 +You have multiple options on how to restart a CP2K calculation off of a previous one. What all approaches have in common, is that you need to make use of the RESTART-files which are automatically written by CP2K (unless you explicitly disable them). 
 + 
 +For the purposes of this example, you should see a file called ''ar108-1.restart'' (at least for Part 1 of this exercise). //Note:// there will also be multiple backup files (''.bak-#'' suffixes) which you do not need to care about. 
 +These files are nothing but another input file. However, their parameters are set such that they continue a CP2K calculation from the last step of the simulation which generated the RESTART file. 
 + 
 +Here are two options for how you can use these RESTART-files: 
 + 
 +1. Directly using the RESTART as an input. 
 +   - You can copy the RESTART file to a new input file: <code>cp ar108-1.restart argon_follow_up.inp</code> 
 +   - Now you can change the input to your liking (e.g. change the ensemble, etc.) 
 +   - And finally simply run CP2K with the new input file: <code>cp2k -i argon_followup.inp -o argon_followup.out</code> 
 + 
 +2. You can also tell CP2K to load a specific RESTART-file. 
 +   - Write a new input file as usual: <code>argon_followup.inp</code> 
 +   - Add an [[https://manual.cp2k.org/trunk/CP2K_INPUT/EXT_RESTART.html|EXT_RESTART]] section: 
 +      <code> 
 +&EXT_RESTART 
 +  RESTART_FILE_NAME ar108-1.restart 
 +&END EXT_RESTART</code> 
 +   - And now, again, simply run CP2K:  <code>cp2k -i argon_followup.inp -o argon_followup.out</code> 
 +</note> 
 + 
 + 
 + 
 +===== Radial distribution function  =====
 In this section we analyze the dependence of the radial distribution function (rdf), $g(r)$, on the temperature of the system. To do so, you should plot $g(r)$ against various temperatures and examine the effects. In this section we analyze the dependence of the radial distribution function (rdf), $g(r)$, on the temperature of the system. To do so, you should plot $g(r)$ against various temperatures and examine the effects.
 You can use VMD (as explained below) or write your own program (Fortran, C, C++, Python etc.) to calculate the rdf. You can use VMD (as explained below) or write your own program (Fortran, C, C++, Python etc.) to calculate the rdf.
Line 391: Line 491:
 </code>                                            </code>                                           
  
-===== Part IV: Other Ensembles  ===== 
  
-In the previous sections, you have already run NVE ensemble molecular dynamics calculations for liquid Ar. In this section, we will focus on the NVT and NPT ensembles. 
- 
-To set up an NVT calculation, change the settings in the &MD section as shown below: 
- 
- 
-  &MD 
-    ENSEMBLE NVT 
-    STEPS 3000 
-    TIMESTEP 5 
-    TEMPERATURE 298 
-    &THERMOSTAT 
-      REGION MASSIVE 
-      &NOSE                    #Uses the Nose-Hoover thermostat 
-        TIMECON 1000           #timeconstant of the thermostat chain, how often does thermostat adjust your system  
-      &END NOSE 
-    &END 
-  &END MD 
-   
-   
-To set up an NPT calculation, change the settings in the &MD section as shown below: 
- 
-  &FORCE_EVAL 
-  ... 
-  STRESS_TENSOR ANALYTICAL 
-  ... 
-  &END FORCE_EVAL 
-  ... 
-  ... 
-  &MD 
-    ENSEMBLE NPT_I                #constant temperature and pressure using an isotropic cell 
-    STEPS 3000 
-    TIMESTEP 5. 
-    TEMPERATURE 85.0 
-    &BAROSTAT 
-      PRESSURE 0.                 # PRESSURE, unit[bar] 
-      TIMECON 1000 
-    &END BAROSTAT 
-    &THERMOSTAT 
-      &NOSE 
-        TIMECON 1000 
-      &END NOSE 
-    &END THERMOSTAT 
-   &END MD 
- 
-<note> 
-**TASK** 
-   *Run a calculation using the NVT ensemble at 300K. Check the temperature and energy of the whole system, and compare the result to an NVE ensemble (300K). Rationalize and discuss the difference. 
-   *Run a calculation using the NVT ensemble (300K) until the system is equilibrated, then run an NVE ensemble calculation. Check the temperature and energy of the whole system, and compare to the previous NVE simulation. Discuss your observations. 
-   *Remove some atoms and run an NPT ensemble simulation. Then, check the size of the simulation box. Discuss your observations. 
-</note> 
- 
-<note tip> 
-You have multiple options on how to restart a CP2K calculation off of a previous one. What all approaches have in common, is that you need to make use of the RESTART-files which are automatically written by CP2K (unless you explicitly disable them). 
- 
-For the purposes of this example, you should see a file called ''ar108-1.restart'' (at least for Part 1 of this exercise). //Note:// there will also be multiple backup files (''.bak-#'' suffixes) which you do not need to care about. 
-These files are nothing but another input file. However, their parameters are set such that they continue a CP2K calculation from the last step of the simulation which generated the RESTART file. 
- 
-Here are two options for how you can use these RESTART-files: 
- 
-1. Directly using the RESTART as an input. 
-   - You can copy the RESTART file to a new input file: <code>cp ar108-1.restart argon_follow_up.inp</code> 
-   - Now you can change the input to your liking (e.g. change the ensemble, etc.) 
-   - And finally simply run CP2K with the new input file: <code>cp2k -i argon_followup.inp -o argon_followup.out</code> 
- 
-2. You can also tell CP2K to load a specific RESTART-file. 
-   - Write a new input file as usual: <code>argon_followup.inp</code> 
-   - Add an [[https://manual.cp2k.org/trunk/CP2K_INPUT/EXT_RESTART.html|EXT_RESTART]] section: 
-      <code> 
-&EXT_RESTART 
-  RESTART_FILE_NAME ar108-1.restart 
-&END EXT_RESTART</code> 
-   - And now, again, simply run CP2K:  <code>cp2k -i argon_followup.inp -o argon_followup.out</code> 
-</note> 
exercises/common/ensemble.1667232671.txt.gz · Last modified: 2022/10/31 16:11 by jglan