exercises:2021_uzh_acpc2:ex03
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
exercises:2021_uzh_acpc2:ex03 [2021/05/21 06:40] – [Nudged elastic band and free energy calculations] Minor updates mrossmannek | exercises:2021_uzh_acpc2:ex03 [2021/05/21 10:13] (current) – [Free energy surface] Add tip about RuntimeWarning mrossmannek | ||
---|---|---|---|
Line 9: | Line 9: | ||
===== NEB activation barrier ===== | ===== NEB activation barrier ===== | ||
- | In order to find the activation barrier for the reaction we will use the NEB method. The NEB method provides a way to find the minimum energy path (MEP) between two different conformations of the system | + | In order to find the activation barrier for the reaction we will use the NEB method. The NEB method provides a way to find the minimum energy path (MEP) between two different conformations of the system |
=== Geometry optimizations === | === Geometry optimizations === | ||
Line 76: | Line 76: | ||
< | < | ||
*Run the geometry optimization calculation | *Run the geometry optimization calculation | ||
- | *Modify the initial geometry guess in the input and run a second optimization to obtain the other local minimum geometry (The other Cl needs to make a covalent bond with the C). | + | *Modify the initial geometry guess in the input and run a second optimization to obtain the other local minimum geometry (The other '' |
+ | </ | ||
+ | |||
+ | <note tip> | ||
+ | When you run the second geometry optimization you must make sure that you do not overwrite the results of your previous calculation! The easiest way to achieve this is to run the second simulation in another directory. | ||
+ | |||
+ | Another possibility is to change the '' | ||
</ | </ | ||
=== NEB === | === NEB === | ||
- | Now we are ready to start the NEB. Obtain the two optimized geometries from the GEO_OPT trajectories (last step in the '' | + | Now we are ready to start the NEB calculation. Obtain the two optimized geometries from the '' |
- | Now the NEB calculation can be run by the following input script: | + | Now, the NEB calculation can be run by the following input script: |
<code - neb.inp> | <code - neb.inp> | ||
Line 106: | Line 112: | ||
&END | &END | ||
& | & | ||
- | COORD_FILE_NAME init.xyz | + | COORD_FILE_NAME init.xyz |
&END | &END | ||
& | & | ||
- | COORD_FILE_NAME final.xyz | + | COORD_FILE_NAME final.xyz |
&END | &END | ||
& | & | ||
Line 128: | Line 134: | ||
&END CELL | &END CELL | ||
& | & | ||
- | COORD_FILE_NAME init.xyz | + | COORD_FILE_NAME init.xyz |
COORDINATE xyz | COORDINATE xyz | ||
&END TOPOLOGY | &END TOPOLOGY | ||
Line 151: | Line 157: | ||
| | ||
</ | </ | ||
- | These sections show for every replica geometry along the NEB trajectory, the distance to its neighbors and its energy. The final section | + | These sections show, for every replica geometry along the NEB trajectory, the distance to its neighbors and its energy. The last of these sections |
< | < | ||
* Run the NEB calculation | * Run the NEB calculation | ||
- | * Find the activation barrier of the reaction in eV. | + | * Find the activation barrier of the reaction |
</ | </ | ||
Line 163: | Line 169: | ||
Sampling the free energy surface (FES) of a chemical system is a convenient method to explore various stable conformations and possible reaction pathways. To calculate the FES for complicated systems, advanced sampling methods (such as umbrella sampling, metadynamics, | Sampling the free energy surface (FES) of a chemical system is a convenient method to explore various stable conformations and possible reaction pathways. To calculate the FES for complicated systems, advanced sampling methods (such as umbrella sampling, metadynamics, | ||
- | The FES is a projection of the high-dimensional free energy landscape | + | The FES is a projection of the high-dimensional free energy landscape |
- | To help the calculation | + | To help the simulation |
The following CP2K input script runs our MD calculation and prints out the CV values for every step: | The following CP2K input script runs our MD calculation and prints out the CV values for every step: | ||
Line 172: | Line 178: | ||
&GLOBAL | &GLOBAL | ||
PRINT_LEVEL LOW | PRINT_LEVEL LOW | ||
- | PROJECT | + | PROJECT |
RUN_TYPE MD # Molecular Dynamics | RUN_TYPE MD # Molecular Dynamics | ||
&END GLOBAL | &END GLOBAL | ||
Line 268: | Line 274: | ||
$$ F(s) = -k T \log(P(s)), | $$ F(s) = -k T \log(P(s)), | ||
- | where $s$ is the set CVs and $P(s)$ is the probability that the system has the set of CV values $s$. | + | where $s$ is the set of CVs and $P(s)$ is the probability that the system has the set of CV values $s$. |
- | The following Python script can be used to calculate the FES from the '' | + | The following Python script can be used to calculate the FES from the '' |
< | < | ||
Line 279: | Line 285: | ||
kb = 8.6173303e-5 # eV * K^-1 | kb = 8.6173303e-5 # eV * K^-1 | ||
- | temperature = 1000.0 | + | temperature = 1000.0 |
colvar_path = " | colvar_path = " | ||
Line 310: | Line 316: | ||
</ | </ | ||
- | Here is an example output for temperature 1000K. We clearly see the two local minima corresponding to the one of the chlorine atoms being covalently bonded (distance 1.8 Å) while the other one is around distance 2.5 Å. | + | Here is an example output for a temperature |
{{ : | {{ : | ||
< | < | ||
- | * Run the MD calculation for 400K, 800K, 1200K and 1600K. (The calculations can a take a while.) | + | * Run the MD calculation for 400K, 800K, 1200K and 1600K. (These calculations can a take a while.) |
* Create the corresponding FES plots and discuss the temperature dependence. | * Create the corresponding FES plots and discuss the temperature dependence. | ||
* In general, how does potential energy differ from free energy? For our reaction, what are the activation barriers from the different free energy surfaces? How and why do they differ from the NEB barrier? | * In general, how does potential energy differ from free energy? For our reaction, what are the activation barriers from the different free energy surfaces? How and why do they differ from the NEB barrier? | ||
+ | </ | ||
+ | |||
+ | <note tip> | ||
+ | You may encounter a warning like the following: | ||
+ | < | ||
+ | plot.py:24: RuntimeWarning: | ||
+ | fes = -kb * temperature * np.log(prob) | ||
+ | </ | ||
+ | Don't worry about this, the script still works as expected and produces the plot in the file '' | ||
</ | </ |
exercises/2021_uzh_acpc2/ex03.1621579244.txt.gz · Last modified: 2021/05/21 06:40 by mrossmannek