<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://chemwiki.ch.ic.ac.uk/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Zx616</id>
	<title>ChemWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://chemwiki.ch.ic.ac.uk/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Zx616"/>
	<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/wiki/Special:Contributions/Zx616"/>
	<updated>2026-04-05T22:02:03Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761389</id>
		<title>Mod:Hunt Research Group/heatmap</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761389"/>
		<updated>2019-03-25T18:29:02Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Sample Jupyter Notebook File==&lt;br /&gt;
BCHARGE.ipynb [https://github.com/zx616/heatmaptutorial/blob/master/BCHARGE.ipynb link] &lt;br /&gt;
&lt;br /&gt;
==Some simple background==&lt;br /&gt;
&lt;br /&gt;
This page will provide a simple, beginner friendly instructions on how to visualise 2D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research before looking at this page, stack overflow is a good starting point. However, if you have tried your best or time is a major issue say no more and read below.&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using Python. You should be familiar with Python from your computational labs during your undergraduate degree. The libraries we are going to use are: matplotlib; pandas and seaborn.&lt;br /&gt;
&lt;br /&gt;
There are a number of Python editor but I recommend using Jupyter Notebook. It is free, Windows and Mac friendly. Jupyter Notebook can be installed by downloading Anaconda, a powerful engine that makes scientific programming simpler. Download [https://www.anaconda.com/distribution link] the newest version, install and run Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Prior to atuclly using Jupyter Notebook, please ensure you have your data at hand as a .csv file (In excel you can simply save the current spreadsheet as a .csv file, for .txt file I belive there is also a way).&lt;br /&gt;
&lt;br /&gt;
==Codes==&lt;br /&gt;
&lt;br /&gt;
Navigate to a new folder designated to this project and follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
First type the follwoing command in the first cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
&lt;br /&gt;
import numpy as np&lt;br /&gt;
&lt;br /&gt;
import seaborn as sns&lt;br /&gt;
&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
import csv&lt;br /&gt;
&lt;br /&gt;
import re&lt;br /&gt;
&lt;br /&gt;
%matplotlib inline&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These lines make sure we have imported the libraries we are going to use. After typing in these lines simple hit &#039;&#039;&#039;Shift+Enter&#039;&#039;&#039; to execute those lines. You will not see a response, which is normal, now carry on and type these in the second cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with open (&#039;Bcharges.csv&#039;, &amp;quot;r&amp;quot;) as file:&lt;br /&gt;
        df = pd.read_csv(file, delimiter = &amp;quot;,&amp;quot;)&lt;br /&gt;
        df.columns = ((df.columns.str).replace(&amp;quot;^ &amp;quot;,&amp;quot;&amp;quot;)).str.replace(&amp;quot; $&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
        print(df.columns)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This cell correctly formatted .csv file and will let us know all names of the column (Note: Very Important: You must ensure your .csv file is in the same folder as this Jupyter Notebook. Otherwise this will not work!)&lt;br /&gt;
Normally we do not want the first cell to show anything, so we simply run a command so the name of the first column is not at the same line as the table:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
data = pd.read_csv(&#039;Bcharges.csv&#039;)&lt;br /&gt;
data = data.set_index(data[&#039;Unnamed: 0&#039;]).drop([&#039;Unnamed: 0&#039;],axis=1)&lt;br /&gt;
data&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The name of my first column is &#039;Unnamed: 0&#039; so I simply dropped it with 1 line below. Now you should see something like this:&lt;br /&gt;
&lt;br /&gt;
[[file:Screenshot_2019-03-25_at_18.13.29.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
sns.heatmap(data,annot=True, linewidths=.5,fmt=&amp;quot;g&amp;quot;, cmap=&#039;viridis&#039;).set_ylabel(&amp;quot;&amp;quot;)&lt;br /&gt;
ax = plt.axes()&lt;br /&gt;
ax.xaxis.set_ticks_position(&#039;top&#039;)&lt;br /&gt;
ax.set_title(&#039;Heatmap Representation for B charges&#039;, y=1.14, fontsize = 17)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is a compact code to plot a heatmap. You can use your intuition to play with all the variables in the bracket until you feel comfortable with your plot.&lt;br /&gt;
&lt;br /&gt;
Your final plot should look something like this:&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2019-03-25 at 18.15.21.png]]&lt;br /&gt;
&lt;br /&gt;
==Recommendations==&lt;br /&gt;
&lt;br /&gt;
Refer to seaboarn documentations [https://seaborn.pydata.org/generated/seaborn.heatmap.html link]and see what else you can add on your graphs!&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761388</id>
		<title>Mod:Hunt Research Group/heatmap</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761388"/>
		<updated>2019-03-25T18:27:35Z</updated>

		<summary type="html">&lt;p&gt;Zx616: /* Sample Jupyter Notebook File */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Sample Jupyter Notebook File==&lt;br /&gt;
BCHARGE.ipynb [https://github.com/zx616/heatmaptutorial/blob/master/BCHARGE.ipynb link] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This page will provide a simple, beginner friendly instructions on how to visualise 2D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research before looking at this page, stack overflow is a good starting point. However, if you have tried your best or time is a major issue say no more and read below.&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using Python. You should be familiar with Python from your computational labs during your undergraduate degree. The libraries we are going to use are: matplotlib; pandas and seaborn.&lt;br /&gt;
&lt;br /&gt;
There are a number of Python editor but I recommend using Jupyter Notebook. It is free, Windows and Mac friendly. Jupyter Notebook can be installed by downloading Anaconda, a powerful engine that makes scientific programming simpler. Download [https://www.anaconda.com/distribution link] the newest version, install and run Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Prior to atuclly using Jupyter Notebook, please ensure you have your data at hand as a .csv file (In excel you can simply save the current spreadsheet as a .csv file, for .txt file I belive there is also a way).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Navigate to a new folder designated to this project and follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
First type the follwoing command in the first cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
&lt;br /&gt;
import numpy as np&lt;br /&gt;
&lt;br /&gt;
import seaborn as sns&lt;br /&gt;
&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
import csv&lt;br /&gt;
&lt;br /&gt;
import re&lt;br /&gt;
&lt;br /&gt;
%matplotlib inline&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These lines make sure we have imported the libraries we are going to use. After typing in these lines simple hit &#039;&#039;&#039;Shift+Enter&#039;&#039;&#039; to execute those lines. You will not see a response, which is normal, now carry on and type these in the second cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with open (&#039;Bcharges.csv&#039;, &amp;quot;r&amp;quot;) as file:&lt;br /&gt;
        df = pd.read_csv(file, delimiter = &amp;quot;,&amp;quot;)&lt;br /&gt;
        df.columns = ((df.columns.str).replace(&amp;quot;^ &amp;quot;,&amp;quot;&amp;quot;)).str.replace(&amp;quot; $&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
        print(df.columns)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This cell correctly formatted .csv file and will let us know all names of the column (Note: Very Important: You must ensure your .csv file is in the same folder as this Jupyter Notebook. Otherwise this will not work!)&lt;br /&gt;
Normally we do not want the first cell to show anything, so we simply run a command so the name of the first column is not at the same line as the table:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
data = pd.read_csv(&#039;Bcharges.csv&#039;)&lt;br /&gt;
data = data.set_index(data[&#039;Unnamed: 0&#039;]).drop([&#039;Unnamed: 0&#039;],axis=1)&lt;br /&gt;
data&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The name of my first column is &#039;Unnamed: 0&#039; so I simply dropped it with 1 line below. Now you should see something like this:&lt;br /&gt;
&lt;br /&gt;
[[file:Screenshot_2019-03-25_at_18.13.29.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
sns.heatmap(data,annot=True, linewidths=.5,fmt=&amp;quot;g&amp;quot;, cmap=&#039;viridis&#039;).set_ylabel(&amp;quot;&amp;quot;)&lt;br /&gt;
ax = plt.axes()&lt;br /&gt;
ax.xaxis.set_ticks_position(&#039;top&#039;)&lt;br /&gt;
ax.set_title(&#039;Heatmap Representation for B charges&#039;, y=1.14, fontsize = 17)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is a compact code to plot a heatmap. You can use your intuition to play with all the variables in the bracket until you feel comfortable with your plot.&lt;br /&gt;
&lt;br /&gt;
Your final plot should look something like this:&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2019-03-25 at 18.15.21.png]]&lt;br /&gt;
&lt;br /&gt;
Refer to seaboarn documentations [https://seaborn.pydata.org/generated/seaborn.heatmap.html link]and see what else you can add on your graphs!&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761387</id>
		<title>Mod:Hunt Research Group/heatmap</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761387"/>
		<updated>2019-03-25T18:23:47Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Sample Jupyter Notebook File==&lt;br /&gt;
BCHARGE.ipynb [https://wiki.ch.ic.ac.uk/wiki/index.php?title=File:BCHARGE.ipynb link] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This page will provide a simple, beginner friendly instructions on how to visualise 2D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research before looking at this page, stack overflow is a good starting point. However, if you have tried your best or time is a major issue say no more and read below.&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using Python. You should be familiar with Python from your computational labs during your undergraduate degree. The libraries we are going to use are: matplotlib; pandas and seaborn.&lt;br /&gt;
&lt;br /&gt;
There are a number of Python editor but I recommend using Jupyter Notebook. It is free, Windows and Mac friendly. Jupyter Notebook can be installed by downloading Anaconda, a powerful engine that makes scientific programming simpler. Download [https://www.anaconda.com/distribution link] the newest version, install and run Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Prior to atuclly using Jupyter Notebook, please ensure you have your data at hand as a .csv file (In excel you can simply save the current spreadsheet as a .csv file, for .txt file I belive there is also a way).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Navigate to a new folder designated to this project and follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
First type the follwoing command in the first cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
&lt;br /&gt;
import numpy as np&lt;br /&gt;
&lt;br /&gt;
import seaborn as sns&lt;br /&gt;
&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
import csv&lt;br /&gt;
&lt;br /&gt;
import re&lt;br /&gt;
&lt;br /&gt;
%matplotlib inline&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These lines make sure we have imported the libraries we are going to use. After typing in these lines simple hit &#039;&#039;&#039;Shift+Enter&#039;&#039;&#039; to execute those lines. You will not see a response, which is normal, now carry on and type these in the second cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with open (&#039;Bcharges.csv&#039;, &amp;quot;r&amp;quot;) as file:&lt;br /&gt;
        df = pd.read_csv(file, delimiter = &amp;quot;,&amp;quot;)&lt;br /&gt;
        df.columns = ((df.columns.str).replace(&amp;quot;^ &amp;quot;,&amp;quot;&amp;quot;)).str.replace(&amp;quot; $&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
        print(df.columns)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This cell correctly formatted .csv file and will let us know all names of the column (Note: Very Important: You must ensure your .csv file is in the same folder as this Jupyter Notebook. Otherwise this will not work!)&lt;br /&gt;
Normally we do not want the first cell to show anything, so we simply run a command so the name of the first column is not at the same line as the table:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
data = pd.read_csv(&#039;Bcharges.csv&#039;)&lt;br /&gt;
data = data.set_index(data[&#039;Unnamed: 0&#039;]).drop([&#039;Unnamed: 0&#039;],axis=1)&lt;br /&gt;
data&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The name of my first column is &#039;Unnamed: 0&#039; so I simply dropped it with 1 line below. Now you should see something like this:&lt;br /&gt;
&lt;br /&gt;
[[file:Screenshot_2019-03-25_at_18.13.29.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
sns.heatmap(data,annot=True, linewidths=.5,fmt=&amp;quot;g&amp;quot;, cmap=&#039;viridis&#039;).set_ylabel(&amp;quot;&amp;quot;)&lt;br /&gt;
ax = plt.axes()&lt;br /&gt;
ax.xaxis.set_ticks_position(&#039;top&#039;)&lt;br /&gt;
ax.set_title(&#039;Heatmap Representation for B charges&#039;, y=1.14, fontsize = 17)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is a compact code to plot a heatmap. You can use your intuition to play with all the variables in the bracket until you feel comfortable with your plot.&lt;br /&gt;
&lt;br /&gt;
Your final plot should look something like this:&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2019-03-25 at 18.15.21.png]]&lt;br /&gt;
&lt;br /&gt;
Refer to seaboarn documentations [https://seaborn.pydata.org/generated/seaborn.heatmap.html link]and see what else you can add on your graphs!&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761386</id>
		<title>Mod:Hunt Research Group/heatmap</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761386"/>
		<updated>2019-03-25T18:16:02Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will provide a simple, beginner friendly instructions on how to visualise 2D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research before looking at this page, stack overflow is a good starting point. However, if you have tried your best or time is a major issue say no more and read below.&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using Python. You should be familiar with Python from your computational labs during your undergraduate degree. The libraries we are going to use are: matplotlib; pandas and seaborn.&lt;br /&gt;
&lt;br /&gt;
There are a number of Python editor but I recommend using Jupyter Notebook. It is free, Windows and Mac friendly. Jupyter Notebook can be installed by downloading Anaconda, a powerful engine that makes scientific programming simpler. Download [https://www.anaconda.com/distribution link] the newest version, install and run Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Prior to atuclly using Jupyter Notebook, please ensure you have your data at hand as a .csv file (In excel you can simply save the current spreadsheet as a .csv file, for .txt file I belive there is also a way).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Navigate to a new folder designated to this project and follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
First type the follwoing command in the first cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
&lt;br /&gt;
import numpy as np&lt;br /&gt;
&lt;br /&gt;
import seaborn as sns&lt;br /&gt;
&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
import csv&lt;br /&gt;
&lt;br /&gt;
import re&lt;br /&gt;
&lt;br /&gt;
%matplotlib inline&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These lines make sure we have imported the libraries we are going to use. After typing in these lines simple hit &#039;&#039;&#039;Shift+Enter&#039;&#039;&#039; to execute those lines. You will not see a response, which is normal, now carry on and type these in the second cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with open (&#039;Bcharges.csv&#039;, &amp;quot;r&amp;quot;) as file:&lt;br /&gt;
        df = pd.read_csv(file, delimiter = &amp;quot;,&amp;quot;)&lt;br /&gt;
        df.columns = ((df.columns.str).replace(&amp;quot;^ &amp;quot;,&amp;quot;&amp;quot;)).str.replace(&amp;quot; $&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
        print(df.columns)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This cell correctly formatted .csv file and will let us know all names of the column (Note: Very Important: You must ensure your .csv file is in the same folder as this Jupyter Notebook. Otherwise this will not work!)&lt;br /&gt;
Normally we do not want the first cell to show anything, so we simply run a command so the name of the first column is not at the same line as the table:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
data = pd.read_csv(&#039;Bcharges.csv&#039;)&lt;br /&gt;
data = data.set_index(data[&#039;Unnamed: 0&#039;]).drop([&#039;Unnamed: 0&#039;],axis=1)&lt;br /&gt;
data&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The name of my first column is &#039;Unnamed: 0&#039; so I simply dropped it with 1 line below. Now you should see something like this:&lt;br /&gt;
&lt;br /&gt;
[[file:Screenshot_2019-03-25_at_18.13.29.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
sns.heatmap(data,annot=True, linewidths=.5,fmt=&amp;quot;g&amp;quot;, cmap=&#039;viridis&#039;).set_ylabel(&amp;quot;&amp;quot;)&lt;br /&gt;
ax = plt.axes()&lt;br /&gt;
ax.xaxis.set_ticks_position(&#039;top&#039;)&lt;br /&gt;
ax.set_title(&#039;Heatmap Representation for B charges&#039;, y=1.14, fontsize = 17)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is a compact code to plot a heatmap. You can use your intuition to play with all the variables in the bracket until you feel comfortable with your plot.&lt;br /&gt;
&lt;br /&gt;
Your final plot should look something like this:&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2019-03-25 at 18.15.21.png]]&lt;br /&gt;
&lt;br /&gt;
Refer to seaboarn documentations [https://seaborn.pydata.org/generated/seaborn.heatmap.html link]and see what else you can add on your graphs!&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:Screenshot_2019-03-25_at_18.15.21.png&amp;diff=761385</id>
		<title>File:Screenshot 2019-03-25 at 18.15.21.png</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:Screenshot_2019-03-25_at_18.15.21.png&amp;diff=761385"/>
		<updated>2019-03-25T18:15:40Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761384</id>
		<title>Mod:Hunt Research Group/heatmap</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761384"/>
		<updated>2019-03-25T18:14:47Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will provide a simple, beginner friendly instructions on how to visualise 2D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research before looking at this page, stack overflow is a good starting point. However, if you have tried your best or time is a major issue say no more and read below.&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using Python. You should be familiar with Python from your computational labs during your undergraduate degree. The libraries we are going to use are: matplotlib; pandas and seaborn.&lt;br /&gt;
&lt;br /&gt;
There are a number of Python editor but I recommend using Jupyter Notebook. It is free, Windows and Mac friendly. Jupyter Notebook can be installed by downloading Anaconda, a powerful engine that makes scientific programming simpler. Download [https://www.anaconda.com/distribution link] the newest version, install and run Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Prior to atuclly using Jupyter Notebook, please ensure you have your data at hand as a .csv file (In excel you can simply save the current spreadsheet as a .csv file, for .txt file I belive there is also a way).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Navigate to a new folder designated to this project and follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
First type the follwoing command in the first cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
&lt;br /&gt;
import numpy as np&lt;br /&gt;
&lt;br /&gt;
import seaborn as sns&lt;br /&gt;
&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
import csv&lt;br /&gt;
&lt;br /&gt;
import re&lt;br /&gt;
&lt;br /&gt;
%matplotlib inline&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These lines make sure we have imported the libraries we are going to use. After typing in these lines simple hit &#039;&#039;&#039;Shift+Enter&#039;&#039;&#039; to execute those lines. You will not see a response, which is normal, now carry on and type these in the second cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with open (&#039;Bcharges.csv&#039;, &amp;quot;r&amp;quot;) as file:&lt;br /&gt;
        df = pd.read_csv(file, delimiter = &amp;quot;,&amp;quot;)&lt;br /&gt;
        df.columns = ((df.columns.str).replace(&amp;quot;^ &amp;quot;,&amp;quot;&amp;quot;)).str.replace(&amp;quot; $&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
        print(df.columns)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This cell correctly formatted .csv file and will let us know all names of the column (Note: Very Important: You must ensure your .csv file is in the same folder as this Jupyter Notebook. Otherwise this will not work!)&lt;br /&gt;
Normally we do not want the first cell to show anything, so we simply run a command so the name of the first column is not at the same line as the table:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
data = pd.read_csv(&#039;Bcharges.csv&#039;)&lt;br /&gt;
data = data.set_index(data[&#039;Unnamed: 0&#039;]).drop([&#039;Unnamed: 0&#039;],axis=1)&lt;br /&gt;
data&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The name of my first column is &#039;Unnamed: 0&#039; so I simply dropped it with 1 line below. Now you should see something like this:&lt;br /&gt;
&lt;br /&gt;
[[file:Screenshot_2019-03-25_at_18.13.29.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
sns.heatmap(data,annot=True, linewidths=.5,fmt=&amp;quot;g&amp;quot;, cmap=&#039;viridis&#039;).set_ylabel(&amp;quot;&amp;quot;)&lt;br /&gt;
ax = plt.axes()&lt;br /&gt;
ax.xaxis.set_ticks_position(&#039;top&#039;)&lt;br /&gt;
ax.set_title(&#039;Heatmap Representation for B charges&#039;, y=1.14, fontsize = 17)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#This is a compact code to plot a heatmap. You can use your intuition to play with all the variables in the bracket until you feel comfortable with your plot.&lt;br /&gt;
&lt;br /&gt;
Your final plot should look something like this&lt;br /&gt;
&lt;br /&gt;
Refer to seaboarn documentations [https://seaborn.pydata.org/generated/seaborn.heatmap.html link]and see what else you can add on your graphs!&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761383</id>
		<title>Mod:Hunt Research Group/heatmap</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761383"/>
		<updated>2019-03-25T18:14:26Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will provide a simple, beginner friendly instructions on how to visualise 2D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research before looking at this page, stack overflow is a good starting point. However, if you have tried your best or time is a major issue say no more and read below.&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using Python. You should be familiar with Python from your computational labs during your undergraduate degree. The libraries we are going to use are: matplotlib; pandas and seaborn.&lt;br /&gt;
&lt;br /&gt;
There are a number of Python editor but I recommend using Jupyter Notebook. It is free, Windows and Mac friendly. Jupyter Notebook can be installed by downloading Anaconda, a powerful engine that makes scientific programming simpler. Download [https://www.anaconda.com/distribution link] the newest version, install and run Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Prior to atuclly using Jupyter Notebook, please ensure you have your data at hand as a .csv file (In excel you can simply save the current spreadsheet as a .csv file, for .txt file I belive there is also a way).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Navigate to a new folder designated to this project and follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
First type the follwoing command in the first cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
&lt;br /&gt;
import numpy as np&lt;br /&gt;
&lt;br /&gt;
import seaborn as sns&lt;br /&gt;
&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
import csv&lt;br /&gt;
&lt;br /&gt;
import re&lt;br /&gt;
&lt;br /&gt;
%matplotlib inline&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These lines make sure we have imported the libraries we are going to use. After typing in these lines simple hit &#039;&#039;&#039;Shift+Enter&#039;&#039;&#039; to execute those lines. You will not see a response, which is normal, now carry on and type these in the second cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with open (&#039;Bcharges.csv&#039;, &amp;quot;r&amp;quot;) as file:&lt;br /&gt;
        df = pd.read_csv(file, delimiter = &amp;quot;,&amp;quot;)&lt;br /&gt;
        df.columns = ((df.columns.str).replace(&amp;quot;^ &amp;quot;,&amp;quot;&amp;quot;)).str.replace(&amp;quot; $&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
        print(df.columns)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This cell correctly formatted .csv file and will let us know all names of the column (Note: Very Important: You must ensure your .csv file is in the same folder as this Jupyter Notebook. Otherwise this will not work!)&lt;br /&gt;
Normally we do not want the first cell to show anything, so we simply run a command so the name of the first column is not at the same line as the table:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
data = pd.read_csv(&#039;Bcharges.csv&#039;)&lt;br /&gt;
data = data.set_index(data[&#039;Unnamed: 0&#039;]).drop([&#039;Unnamed: 0&#039;],axis=1)&lt;br /&gt;
data&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The name of my first column is &#039;Unnamed: 0&#039; so I simply dropped it with 1 line below. Now you should see something like this:&lt;br /&gt;
&lt;br /&gt;
[file:Screenshot_2019-03-25_at_18.13.29.png]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
sns.heatmap(data,annot=True, linewidths=.5,fmt=&amp;quot;g&amp;quot;, cmap=&#039;viridis&#039;).set_ylabel(&amp;quot;&amp;quot;)&lt;br /&gt;
ax = plt.axes()&lt;br /&gt;
ax.xaxis.set_ticks_position(&#039;top&#039;)&lt;br /&gt;
ax.set_title(&#039;Heatmap Representation for B charges&#039;, y=1.14, fontsize = 17)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#This is a compact code to plot a heatmap. You can use your intuition to play with all the variables in the bracket until you feel comfortable with your plot.&lt;br /&gt;
&lt;br /&gt;
Your final plot should look something like this&lt;br /&gt;
&lt;br /&gt;
Refer to seaboarn documentations [https://seaborn.pydata.org/generated/seaborn.heatmap.html link]and see what else you can add on your graphs!&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:Screenshot_2019-03-25_at_18.13.29.png&amp;diff=761382</id>
		<title>File:Screenshot 2019-03-25 at 18.13.29.png</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:Screenshot_2019-03-25_at_18.13.29.png&amp;diff=761382"/>
		<updated>2019-03-25T18:14:09Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761381</id>
		<title>Mod:Hunt Research Group/heatmap</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761381"/>
		<updated>2019-03-25T18:11:29Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will provide a simple, beginner friendly instructions on how to visualise 2D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research before looking at this page, stack overflow is a good starting point. However, if you have tried your best or time is a major issue say no more and read below.&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using Python. You should be familiar with Python from your computational labs during your undergraduate degree. The libraries we are going to use are: matplotlib; pandas and seaborn.&lt;br /&gt;
&lt;br /&gt;
There are a number of Python editor but I recommend using Jupyter Notebook. It is free, Windows and Mac friendly. Jupyter Notebook can be installed by downloading Anaconda, a powerful engine that makes scientific programming simpler. Download [https://www.anaconda.com/distribution link] the newest version, install and run Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Prior to atuclly using Jupyter Notebook, please ensure you have your data at hand as a .csv file (In excel you can simply save the current spreadsheet as a .csv file, for .txt file I belive there is also a way).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Navigate to a new folder designated to this project and follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
First type the follwoing command in the first cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
&lt;br /&gt;
import numpy as np&lt;br /&gt;
&lt;br /&gt;
import seaborn as sns&lt;br /&gt;
&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
import csv&lt;br /&gt;
&lt;br /&gt;
import re&lt;br /&gt;
&lt;br /&gt;
%matplotlib inline&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These lines make sure we have imported the libraries we are going to use. After typing in these lines simple hit &#039;&#039;&#039;Shift+Enter&#039;&#039;&#039; to execute those lines. You will not see a response, which is normal, now carry on and type these in the second cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with open (&#039;Bcharges.csv&#039;, &amp;quot;r&amp;quot;) as file:&lt;br /&gt;
        df = pd.read_csv(file, delimiter = &amp;quot;,&amp;quot;)&lt;br /&gt;
        df.columns = ((df.columns.str).replace(&amp;quot;^ &amp;quot;,&amp;quot;&amp;quot;)).str.replace(&amp;quot; $&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
        print(df.columns)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This cell correctly formatted .csv file and will let us know all names of the column (Note: Very Important: You must ensure your .csv file is in the same folder as this Jupyter Notebook. Otherwise this will not work!)&lt;br /&gt;
Normally we do not want the first cell to show anything, so we simply run a command so the name of the first column is not at the same line as the table:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
data = pd.read_csv(&#039;Bcharges.csv&#039;)&lt;br /&gt;
data = data.set_index(data[&#039;Unnamed: 0&#039;]).drop([&#039;Unnamed: 0&#039;],axis=1)&lt;br /&gt;
data&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The name of my first column is &#039;Unnamed: 0&#039; so I simply dropped it with 1 line below. Now you should see something like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
sns.heatmap(data,annot=True, linewidths=.5,fmt=&amp;quot;g&amp;quot;, cmap=&#039;viridis&#039;).set_ylabel(&amp;quot;&amp;quot;)&lt;br /&gt;
ax = plt.axes()&lt;br /&gt;
ax.xaxis.set_ticks_position(&#039;top&#039;)&lt;br /&gt;
ax.set_title(&#039;Heatmap Representation for B charges&#039;, y=1.14, fontsize = 17)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#This is a compact code to plot a heatmap. You can use your intuition to play with all the variables in the bracket until you feel comfortable with your plot.&lt;br /&gt;
&lt;br /&gt;
Your final plot should look something like this&lt;br /&gt;
&lt;br /&gt;
Refer to seaboarn documentations [https://seaborn.pydata.org/generated/seaborn.heatmap.html link]and see what else you can add on your graphs!&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761380</id>
		<title>Mod:Hunt Research Group/heatmap</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761380"/>
		<updated>2019-03-25T18:07:42Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will provide a simple, beginner friendly instructions on how to visualise 2D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research before looking at this page, stack overflow is a good starting point. However, if you have tried your best or time is a major issue say no more and read below.&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using Python. You should be familiar with Python from your computational labs during your undergraduate degree. The libraries we are going to use are: matplotlib; pandas and seaborn.&lt;br /&gt;
&lt;br /&gt;
There are a number of Python editor but I recommend using Jupyter Notebook. It is free, Windows and Mac friendly. Jupyter Notebook can be installed by downloading Anaconda, a powerful engine that makes scientific programming simpler. Download [https://www.anaconda.com/distribution link] the newest version, install and run Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Prior to atuclly using Jupyter Notebook, please ensure you have your data at hand as a .csv file (In excel you can simply save the current spreadsheet as a .csv file, for .txt file I belive there is also a way).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Navigate to a new folder designated to this project and follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
First type the follwoing command in the first cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
&lt;br /&gt;
import numpy as np&lt;br /&gt;
&lt;br /&gt;
import seaborn as sns&lt;br /&gt;
&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
import csv&lt;br /&gt;
&lt;br /&gt;
import re&lt;br /&gt;
&lt;br /&gt;
%matplotlib inline&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These lines make sure we have imported the libraries we are going to use. After typing in these lines simple hit &#039;&#039;&#039;Shift+Enter&#039;&#039;&#039; to execute those lines. You will not see a response, which is normal, now carry on and type these in the second cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with open (&#039;Bcharges.csv&#039;, &amp;quot;r&amp;quot;) as file:&lt;br /&gt;
        df = pd.read_csv(file, delimiter = &amp;quot;,&amp;quot;)&lt;br /&gt;
        df.columns = ((df.columns.str).replace(&amp;quot;^ &amp;quot;,&amp;quot;&amp;quot;)).str.replace(&amp;quot; $&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
        print(df.columns)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This cell correctly formatted .csv file and will let us know all names of the column (Note: Very Important: You must ensure your .csv file is in the same folder as this Jupyter Notebook. Otherwise this will not work!)&lt;br /&gt;
Normally we do not want the first cell to show anything, so we simply run a command so the name of the first column is not at the same line as the table:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
data = data.set_index(data[&#039;Unnamed: 0&#039;]).drop([&#039;Unnamed: 0&#039;],axis=1)&lt;br /&gt;
data&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The name of my first column is &#039;Unnamed: 0&#039; so I simply dropped it with 1 line below. Now you should see something like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
sns.heatmap(data,annot=True, linewidths=.5,fmt=&amp;quot;g&amp;quot;, cmap=&#039;viridis&#039;).set_ylabel(&amp;quot;&amp;quot;)&lt;br /&gt;
ax = plt.axes()&lt;br /&gt;
ax.xaxis.set_ticks_position(&#039;top&#039;)&lt;br /&gt;
ax.set_title(&#039;Heatmap Representation for B charges&#039;, y=1.14, fontsize = 17)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#This is a compact code to plot a heatmap. You can use your intuition to play with all the variables in the bracket until you feel comfortable with your plot.&lt;br /&gt;
&lt;br /&gt;
Your final plot should look something like this&lt;br /&gt;
&lt;br /&gt;
Refer to seaboarn documentations [https://seaborn.pydata.org/generated/seaborn.heatmap.html link]and see what else you can add on your graphs!&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761378</id>
		<title>Mod:Hunt Research Group/heatmap</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761378"/>
		<updated>2019-03-25T18:05:53Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will provide a simple, beginner friendly instructions on how to visualise 2D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research before looking at this page, stack overflow is a good starting point. However, if you have tried your best or time is a major issue say no more and read below.&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using Python. You should be familiar with Python from your computational labs during your undergraduate degree. The libraries we are going to use are: matplotlib; pandas and seaborn.&lt;br /&gt;
&lt;br /&gt;
There are a number of Python editor but I recommend using Jupyter Notebook. It is free, Windows and Mac friendly. I use Mac so for other operating systems please search in your browser how to download Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Prior to atuclly using Jupyter Notebook, please ensure you have your data at hand as a .csv file (In excel you can simply save the current spreadsheet as a .csv file, for .txt file I belive there is also a way).&lt;br /&gt;
&lt;br /&gt;
Jupyter Notebook can be installed by downloading Anaconda, a powerful engine that makes scientific programming simpler. Download [https://www.anaconda.com/distribution link] the newest version, install and run Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Navigate to a new folder designated to this project and follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
First type the follwoing command in the first cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
&lt;br /&gt;
import numpy as np&lt;br /&gt;
&lt;br /&gt;
import seaborn as sns&lt;br /&gt;
&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
import csv&lt;br /&gt;
&lt;br /&gt;
import re&lt;br /&gt;
&lt;br /&gt;
%matplotlib inline&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These lines make sure we have imported the libraries we are going to use. After typing in these lines simple hit &#039;&#039;&#039;Shift+Enter&#039;&#039;&#039; to execute those lines. You will not see a response, which is normal, now carry on and type these in the second cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with open (&#039;Bcharges.csv&#039;, &amp;quot;r&amp;quot;) as file:&lt;br /&gt;
        df = pd.read_csv(file, delimiter = &amp;quot;,&amp;quot;)&lt;br /&gt;
        df.columns = ((df.columns.str).replace(&amp;quot;^ &amp;quot;,&amp;quot;&amp;quot;)).str.replace(&amp;quot; $&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
        print(df.columns)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This cell correctly formatted .csv file and will let us know all names of the column (Note: Very Important: You must ensure your .csv file is in the same folder as this Jupyter Notebook. Otherwise this will not work!)&lt;br /&gt;
Normally we do not want the first cell to show anything, so we simply run a command so the name of the first column is not at the same line as the table:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
data = data.set_index(data[&#039;Unnamed: 0&#039;]).drop([&#039;Unnamed: 0&#039;],axis=1)&lt;br /&gt;
data&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The name of my first column is &#039;Unnamed: 0&#039; so I simply dropped it with 1 line below. Now you should see something like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
sns.heatmap(data,annot=True, linewidths=.5,fmt=&amp;quot;g&amp;quot;, cmap=&#039;viridis&#039;).set_ylabel(&amp;quot;&amp;quot;)&lt;br /&gt;
ax = plt.axes()&lt;br /&gt;
ax.xaxis.set_ticks_position(&#039;top&#039;)&lt;br /&gt;
ax.set_title(&#039;Heatmap Representation for B charges&#039;, y=1.14, fontsize = 17)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#This is a compact code to plot a heatmap. You can use your intuition to play with all the variables in the bracket until you feel comfortable with your plot.&lt;br /&gt;
&lt;br /&gt;
Your final plot should look something like this&lt;br /&gt;
&lt;br /&gt;
Refer to seaboarn documentations [https://seaborn.pydata.org/generated/seaborn.heatmap.html link]and see what else you can add on your graphs!&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761377</id>
		<title>Mod:Hunt Research Group/heatmap</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761377"/>
		<updated>2019-03-25T18:04:45Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will provide a simple, beginner friendly instructions on how to visualise 3D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research before looking at this page, stack overflow is a good starting point. However, if you have tried your best or time is a major issue say no more and read below.&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using Python. You should be familiar with Python from your computational labs during your undergraduate degree. The libraries we are going to use are: matplotlib; pandas and seaborn.&lt;br /&gt;
&lt;br /&gt;
There are a number of Python editor but I recommend using Jupyter Notebook. It is free, Windows and Mac friendly. I use Mac so for other operating systems please search in your browser how to download Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Prior to atuclly using Jupyter Notebook, please ensure you have your data at hand as a .csv file (In excel you can simply save the current spreadsheet as a .csv file, for .txt file I belive there is also a way).&lt;br /&gt;
&lt;br /&gt;
Jupyter Notebook can be installed by downloading Anaconda, a powerful engine that makes scientific programming simpler. Download [https://www.anaconda.com/distribution link] the newest version, install and run Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Navigate to a new folder designated to this project and follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
First type the follwoing command in the first cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
&lt;br /&gt;
import numpy as np&lt;br /&gt;
&lt;br /&gt;
import seaborn as sns&lt;br /&gt;
&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
import csv&lt;br /&gt;
&lt;br /&gt;
import re&lt;br /&gt;
&lt;br /&gt;
%matplotlib inline&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These lines make sure we have imported the libraries we are going to use. After typing in these lines simple hit &#039;&#039;&#039;Shift+Enter&#039;&#039;&#039; to execute those lines. You will not see a response, which is normal, now carry on and type these in the second cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with open (&#039;Bcharges.csv&#039;, &amp;quot;r&amp;quot;) as file:&lt;br /&gt;
        df = pd.read_csv(file, delimiter = &amp;quot;,&amp;quot;)&lt;br /&gt;
        df.columns = ((df.columns.str).replace(&amp;quot;^ &amp;quot;,&amp;quot;&amp;quot;)).str.replace(&amp;quot; $&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
        print(df.columns)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This cell correctly formatted .csv file and will let us know all names of the column (Note: Very Important: You must ensure your .csv file is in the same folder as this Jupyter Notebook. Otherwise this will not work!)&lt;br /&gt;
Normally we do not want the first cell to show anything, so we simply run a command so the name of the first column is not at the same line as the table:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
data = data.set_index(data[&#039;Unnamed: 0&#039;]).drop([&#039;Unnamed: 0&#039;],axis=1)&lt;br /&gt;
data&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The name of my first column is &#039;Unnamed: 0&#039; so I simply dropped it with 1 line below. Now you should see something like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
sns.heatmap(data,annot=True, linewidths=.5,fmt=&amp;quot;g&amp;quot;, cmap=&#039;viridis&#039;).set_ylabel(&amp;quot;&amp;quot;)&lt;br /&gt;
ax = plt.axes()&lt;br /&gt;
ax.xaxis.set_ticks_position(&#039;top&#039;)&lt;br /&gt;
ax.set_title(&#039;Heatmap Representation for B charges&#039;, y=1.14, fontsize = 17)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#This is a compact code to plot a heatmap. You can use your intuition to play with all the variables in the bracket until you feel comfortable with your plot.&lt;br /&gt;
&lt;br /&gt;
Your final plot should look something like this&lt;br /&gt;
&lt;br /&gt;
Refer to seaboarn documentations and see what else you can add on your graphs!&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761376</id>
		<title>Mod:Hunt Research Group/heatmap</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761376"/>
		<updated>2019-03-25T18:02:24Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will provide a simple, beginner friendly instructions on how to visualise 3D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research before looking at this page, stack overflow is a good starting point. However, if you have tried your best or time is a major issue say no more and read below.&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using Python. You should be familiar with Python from your computational labs during your undergraduate degree. The libraries we are going to use are: matplotlib; pandas and seaborn.&lt;br /&gt;
&lt;br /&gt;
There are a number of Python editor but I recommend using Jupyter Notebook. It is free, Windows and Mac friendly. I use Mac so for other operating systems please search in your browser how to download Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Prior to atuclly using Jupyter Notebook, please ensure you have your data at hand as a .csv file (In excel you can simply save the current spreadsheet as a .csv file, for .txt file I belive there is also a way).&lt;br /&gt;
&lt;br /&gt;
Jupyter Notebook can be installed by downloading Anaconda, a powerful engine that makes scientific programming simpler. Download [https://www.anaconda.com/distribution link] the newest version, install and run Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Navigate to a new folder designated to this project and follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
#First type the follwoing command in the first cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
&lt;br /&gt;
import numpy as np&lt;br /&gt;
&lt;br /&gt;
import seaborn as sns&lt;br /&gt;
&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
import csv&lt;br /&gt;
&lt;br /&gt;
import re&lt;br /&gt;
&lt;br /&gt;
%matplotlib inline&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#These lines make sure we have imported the libraries we are going to use. After typing in these lines simple hit &#039;&#039;&#039;Shift+Enter&#039;&#039;&#039; to execute those lines. You will not see a response, which is normal, now carry on and type these in the second cell:&lt;br /&gt;
      with open (&#039;Bcharges.csv&#039;, &amp;quot;r&amp;quot;) as file:&lt;br /&gt;
              df = pd.read_csv(file, delimiter = &amp;quot;,&amp;quot;)&lt;br /&gt;
              df.columns = ((df.columns.str).replace(&amp;quot;^ &amp;quot;,&amp;quot;&amp;quot;)).str.replace(&amp;quot; $&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
              print(df.columns)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#This cell correctly formatted .csv file and will let us know all names of the column (Note: Very Important: You must ensure your .csv file is in the same folder as this Jupyter Notebook. Otherwise this will not work!)&lt;br /&gt;
#Normally we do not want the first cell to show anything, so we simply run a command so the name of the first column is not at the same line as the table:&lt;br /&gt;
&lt;br /&gt;
data = data.set_index(data[&#039;Unnamed: 0&#039;]).drop([&#039;Unnamed: 0&#039;],axis=1)&lt;br /&gt;
data&lt;br /&gt;
&lt;br /&gt;
#The name of my first column is &#039;Unnamed: 0&#039; so I simply dropped it with 1 line below. Now you should see something like this:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
sns.heatmap(data,annot=True, linewidths=.5,fmt=&amp;quot;g&amp;quot;, cmap=&#039;viridis&#039;).set_ylabel(&amp;quot;&amp;quot;)&lt;br /&gt;
ax = plt.axes()&lt;br /&gt;
ax.xaxis.set_ticks_position(&#039;top&#039;)&lt;br /&gt;
ax.set_title(&#039;Heatmap Representation for B charges&#039;, y=1.14, fontsize = 17)&lt;br /&gt;
&lt;br /&gt;
#This is a compact code to plot a heatmap. You can use your intuition to play with all the variables in the bracket until you feel comfortable with your plot.&lt;br /&gt;
&lt;br /&gt;
Your final plot should look something like this&lt;br /&gt;
&lt;br /&gt;
Refer to seaboarn documentations and see what else you can add on your graphs!&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761375</id>
		<title>Mod:Hunt Research Group/heatmap</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761375"/>
		<updated>2019-03-25T18:02:04Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will provide a simple, beginner friendly instructions on how to visualise 3D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research before looking at this page, stack overflow is a good starting point. However, if you have tried your best or time is a major issue say no more and read below.&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using Python. You should be familiar with Python from your computational labs during your undergraduate degree. The libraries we are going to use are: matplotlib; pandas and seaborn.&lt;br /&gt;
&lt;br /&gt;
There are a number of Python editor but I recommend using Jupyter Notebook. It is free, Windows and Mac friendly. I use Mac so for other operating systems please search in your browser how to download Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Prior to atuclly using Jupyter Notebook, please ensure you have your data at hand as a .csv file (In excel you can simply save the current spreadsheet as a .csv file, for .txt file I belive there is also a way).&lt;br /&gt;
&lt;br /&gt;
Jupyter Notebook can be installed by downloading Anaconda, a powerful engine that makes scientific programming simpler. Download [https://www.anaconda.com/distribution link] the newest version, install and run Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Navigate to a new folder designated to this project and follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
#First type the follwoing command in the first cell:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;display: inline-block;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
&lt;br /&gt;
import numpy as np&lt;br /&gt;
&lt;br /&gt;
import seaborn as sns&lt;br /&gt;
&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
import csv&lt;br /&gt;
&lt;br /&gt;
import re&lt;br /&gt;
&lt;br /&gt;
%matplotlib inline&lt;br /&gt;
&lt;br /&gt;
#These lines make sure we have imported the libraries we are going to use. After typing in these lines simple hit &#039;&#039;&#039;Shift+Enter&#039;&#039;&#039; to execute those lines. You will not see a response, which is normal, now carry on and type these in the second cell:&lt;br /&gt;
      with open (&#039;Bcharges.csv&#039;, &amp;quot;r&amp;quot;) as file:&lt;br /&gt;
              df = pd.read_csv(file, delimiter = &amp;quot;,&amp;quot;)&lt;br /&gt;
              df.columns = ((df.columns.str).replace(&amp;quot;^ &amp;quot;,&amp;quot;&amp;quot;)).str.replace(&amp;quot; $&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
              print(df.columns)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#This cell correctly formatted .csv file and will let us know all names of the column (Note: Very Important: You must ensure your .csv file is in the same folder as this Jupyter Notebook. Otherwise this will not work!)&lt;br /&gt;
#Normally we do not want the first cell to show anything, so we simply run a command so the name of the first column is not at the same line as the table:&lt;br /&gt;
&lt;br /&gt;
data = data.set_index(data[&#039;Unnamed: 0&#039;]).drop([&#039;Unnamed: 0&#039;],axis=1)&lt;br /&gt;
data&lt;br /&gt;
&lt;br /&gt;
#The name of my first column is &#039;Unnamed: 0&#039; so I simply dropped it with 1 line below. Now you should see something like this:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
sns.heatmap(data,annot=True, linewidths=.5,fmt=&amp;quot;g&amp;quot;, cmap=&#039;viridis&#039;).set_ylabel(&amp;quot;&amp;quot;)&lt;br /&gt;
ax = plt.axes()&lt;br /&gt;
ax.xaxis.set_ticks_position(&#039;top&#039;)&lt;br /&gt;
ax.set_title(&#039;Heatmap Representation for B charges&#039;, y=1.14, fontsize = 17)&lt;br /&gt;
&lt;br /&gt;
#This is a compact code to plot a heatmap. You can use your intuition to play with all the variables in the bracket until you feel comfortable with your plot.&lt;br /&gt;
&lt;br /&gt;
Your final plot should look something like this&lt;br /&gt;
&lt;br /&gt;
Refer to seaboarn documentations and see what else you can add on your graphs!&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761374</id>
		<title>Mod:Hunt Research Group/heatmap</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761374"/>
		<updated>2019-03-25T17:59:24Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will provide a simple, beginner friendly instructions on how to visualise 3D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research before looking at this page, stack overflow is a good starting point. However, if you have tried your best or time is a major issue say no more and read below.&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using Python. You should be familiar with Python from your computational labs during your undergraduate degree. The libraries we are going to use are: matplotlib; pandas and seaborn.&lt;br /&gt;
&lt;br /&gt;
There are a number of Python editor but I recommend using Jupyter Notebook. It is free, Windows and Mac friendly. I use Mac so for other operating systems please search in your browser how to download Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Prior to atuclly using Jupyter Notebook, please ensure you have your data at hand as a .csv file (In excel you can simply save the current spreadsheet as a .csv file, for .txt file I belive there is also a way).&lt;br /&gt;
&lt;br /&gt;
Jupyter Notebook can be installed by downloading Anaconda, a powerful engine that makes scientific programming simpler. Download [https://www.anaconda.com/distribution link] the newest version, install and run Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Navigate to a new folder designated to this project and follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
#First type the follwoing command in the first cell:&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
&lt;br /&gt;
import numpy as np&lt;br /&gt;
&lt;br /&gt;
import seaborn as sns&lt;br /&gt;
&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
&lt;br /&gt;
import csv&lt;br /&gt;
&lt;br /&gt;
import re&lt;br /&gt;
&lt;br /&gt;
%matplotlib inline&lt;br /&gt;
&lt;br /&gt;
#These lines make sure we have imported the libraries we are going to use. After typing in these lines simple hit &#039;&#039;&#039;Shift+Enter&#039;&#039;&#039; to execute those lines. You will not see a response, which is normal, now carry on and type these in the second cell:&lt;br /&gt;
      with open (&#039;Bcharges.csv&#039;, &amp;quot;r&amp;quot;) as file:&lt;br /&gt;
              df = pd.read_csv(file, delimiter = &amp;quot;,&amp;quot;)&lt;br /&gt;
              df.columns = ((df.columns.str).replace(&amp;quot;^ &amp;quot;,&amp;quot;&amp;quot;)).str.replace(&amp;quot; $&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
              print(df.columns)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#This cell correctly formatted .csv file and will let us know all names of the column (Note: Very Important: You must ensure your .csv file is in the same folder as this Jupyter Notebook. Otherwise this will not work!)&lt;br /&gt;
#Normally we do not want the first cell to show anything, so we simply run a command so the name of the first column is not at the same line as the table:&lt;br /&gt;
&lt;br /&gt;
data = data.set_index(data[&#039;Unnamed: 0&#039;]).drop([&#039;Unnamed: 0&#039;],axis=1)&lt;br /&gt;
data&lt;br /&gt;
&lt;br /&gt;
#The name of my first column is &#039;Unnamed: 0&#039; so I simply dropped it with 1 line below. Now you should see something like this:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
sns.heatmap(data,annot=True, linewidths=.5,fmt=&amp;quot;g&amp;quot;, cmap=&#039;viridis&#039;).set_ylabel(&amp;quot;&amp;quot;)&lt;br /&gt;
ax = plt.axes()&lt;br /&gt;
ax.xaxis.set_ticks_position(&#039;top&#039;)&lt;br /&gt;
ax.set_title(&#039;Heatmap Representation for B charges&#039;, y=1.14, fontsize = 17)&lt;br /&gt;
&lt;br /&gt;
#This is a compact code to plot a heatmap. You can use your intuition to play with all the variables in the bracket until you feel comfortable with your plot.&lt;br /&gt;
&lt;br /&gt;
Your final plot should look something like this&lt;br /&gt;
&lt;br /&gt;
Refer to seaboarn documentations and see what else you can add on your graphs!&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761373</id>
		<title>Mod:Hunt Research Group/heatmap</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761373"/>
		<updated>2019-03-25T17:58:31Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will provide a simple, beginner friendly instructions on how to visualise 3D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research before looking at this page, stack overflow is a good starting point. However, if you have tried your best or time is a major issue say no more and read below.&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using Python. You should be familiar with Python from your computational labs during your undergraduate degree. The libraries we are going to use are: matplotlib; pandas and seaborn.&lt;br /&gt;
&lt;br /&gt;
There are a number of Python editor but I recommend using Jupyter Notebook. It is free, Windows and Mac friendly. I use Mac so for other operating systems please search in your browser how to download Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Prior to atuclly using Jupyter Notebook, please ensure you have your data at hand as a .csv file (In excel you can simply save the current spreadsheet as a .csv file, for .txt file I belive there is also a way).&lt;br /&gt;
&lt;br /&gt;
Jupyter Notebook can be installed by downloading Anaconda, a powerful engine that makes scientific programming simpler. Download [https://www.anaconda.com/distribution link] the newest version, install and run Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Navigate to a new folder designated to this project and follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
#First type the follwoing command in the first cell:&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
import numpy as np&lt;br /&gt;
import seaborn as sns&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
import csv&lt;br /&gt;
import re&lt;br /&gt;
%matplotlib inline&lt;br /&gt;
&lt;br /&gt;
#These lines make sure we have imported the libraries we are going to use. After typing in these lines simple hit &#039;&#039;&#039;Shift+Enter&#039;&#039;&#039; to execute those lines. You will not see a response, which is normal, now carry on and type these in the second cell:&lt;br /&gt;
&lt;br /&gt;
with open (&#039;Bcharges.csv&#039;, &amp;quot;r&amp;quot;) as file:&lt;br /&gt;
        df = pd.read_csv(file, delimiter = &amp;quot;,&amp;quot;)&lt;br /&gt;
        df.columns = ((df.columns.str).replace(&amp;quot;^ &amp;quot;,&amp;quot;&amp;quot;)).str.replace(&amp;quot; $&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
        print(df.columns)&lt;br /&gt;
&lt;br /&gt;
#This cell correctly formatted .csv file and will let us know all names of the column (Note: Very Important: You must ensure your .csv file is in the same folder as this Jupyter Notebook. Otherwise this will not work!)&lt;br /&gt;
#Normally we do not want the first cell to show anything, so we simply run a command so the name of the first column is not at the same line as the table:&lt;br /&gt;
&lt;br /&gt;
data = data.set_index(data[&#039;Unnamed: 0&#039;]).drop([&#039;Unnamed: 0&#039;],axis=1)&lt;br /&gt;
data&lt;br /&gt;
&lt;br /&gt;
#The name of my first column is &#039;Unnamed: 0&#039; so I simply dropped it with 1 line below. Now you should see something like this:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
sns.heatmap(data,annot=True, linewidths=.5,fmt=&amp;quot;g&amp;quot;, cmap=&#039;viridis&#039;).set_ylabel(&amp;quot;&amp;quot;)&lt;br /&gt;
ax = plt.axes()&lt;br /&gt;
ax.xaxis.set_ticks_position(&#039;top&#039;)&lt;br /&gt;
ax.set_title(&#039;Heatmap Representation for B charges&#039;, y=1.14, fontsize = 17)&lt;br /&gt;
&lt;br /&gt;
#This is a compact code to plot a heatmap. You can use your intuition to play with all the variables in the bracket until you feel comfortable with your plot.&lt;br /&gt;
&lt;br /&gt;
Your final plot should look something like this&lt;br /&gt;
&lt;br /&gt;
Refer to seaboarn documentations and see what else you can add on your graphs!&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761372</id>
		<title>Mod:Hunt Research Group/heatmap</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group/heatmap&amp;diff=761372"/>
		<updated>2019-03-25T17:57:29Z</updated>

		<summary type="html">&lt;p&gt;Zx616: Created page with &amp;quot;This page will provide a simple, beginner friendly instructions on how to visualise 3D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research befo...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will provide a simple, beginner friendly instructions on how to visualise 3D data (3x3, 4x4, and 5x5 matrices).  You are encouraged to conduct your own research before looking at this page, stack overflow is a good starting point. However, if you have tried your best or time is a major issue say no more and read below.&lt;br /&gt;
&lt;br /&gt;
In this tutorial we will be using Python. You should be familiar with Python from your computational labs during your undergraduate degree. The libraries we are going to use are: matplotlib; pandas and seaborn.&lt;br /&gt;
&lt;br /&gt;
There are a number of Python editor but I recommend using Jupyter Notebook. It is free, Windows and Mac friendly. I use Mac so for other operating systems please search in your browser how to download Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Prior to atuclly using Jupyter Notebook, please ensure you have your data at hand as a .csv file (In excel you can simply save the current spreadsheet as a .csv file, for .txt file I belive there is also a way).&lt;br /&gt;
&lt;br /&gt;
Jupyter Notebook can be installed by downloading Anaconda, a powerful engine that makes scientific programming simpler. Download [https://www.anaconda.com/distribution link] the newest version, install and run Jupyter Notebook.&lt;br /&gt;
&lt;br /&gt;
Navigate to a new folder designated to this project and follow the instructions below:&lt;br /&gt;
&lt;br /&gt;
First type the follwoing command in the first cell:&lt;br /&gt;
&lt;br /&gt;
import pandas as pd&lt;br /&gt;
import numpy as np&lt;br /&gt;
import seaborn as sns&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
import csv&lt;br /&gt;
import re&lt;br /&gt;
%matplotlib inline&lt;br /&gt;
&lt;br /&gt;
#These lines make sure we have imported the libraries we are going to use. After typing in these lines simple hit &#039;&#039;&#039;Shift+Enter&#039;&#039;&#039; to execute those lines. You will not see a response, which is normal, now carry on and type these in the second cell:&lt;br /&gt;
&lt;br /&gt;
with open (&#039;Bcharges.csv&#039;, &amp;quot;r&amp;quot;) as file:&lt;br /&gt;
        df = pd.read_csv(file, delimiter = &amp;quot;,&amp;quot;)&lt;br /&gt;
        df.columns = ((df.columns.str).replace(&amp;quot;^ &amp;quot;,&amp;quot;&amp;quot;)).str.replace(&amp;quot; $&amp;quot;,&amp;quot;&amp;quot;)&lt;br /&gt;
        print(df.columns)&lt;br /&gt;
&lt;br /&gt;
#This cell correctly formatted .csv file and will let us know all names of the column (Note: Very Important: You must ensure your .csv file is in the same folder as this Jupyter Notebook. Otherwise this will not work!)&lt;br /&gt;
#Normally we do not want the first cell to show anything, so we simply run a command so the name of the first column is not at the same line as the table:&lt;br /&gt;
&lt;br /&gt;
data = data.set_index(data[&#039;Unnamed: 0&#039;]).drop([&#039;Unnamed: 0&#039;],axis=1)&lt;br /&gt;
data&lt;br /&gt;
&lt;br /&gt;
#The name of my first column is &#039;Unnamed: 0&#039; so I simply dropped it with 1 line below. Now you should see something like this:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
sns.heatmap(data,annot=True, linewidths=.5,fmt=&amp;quot;g&amp;quot;, cmap=&#039;viridis&#039;).set_ylabel(&amp;quot;&amp;quot;)&lt;br /&gt;
ax = plt.axes()&lt;br /&gt;
ax.xaxis.set_ticks_position(&#039;top&#039;)&lt;br /&gt;
ax.set_title(&#039;Heatmap Representation for B charges&#039;, y=1.14, fontsize = 17)&lt;br /&gt;
&lt;br /&gt;
#This is a compact code to plot a heatmap. You can use your intuition to play with all the variables in the bracket until you feel comfortable with your plot.&lt;br /&gt;
&lt;br /&gt;
Your final plot should look something like this&lt;br /&gt;
&lt;br /&gt;
Refer to seaboarn documentations and see what else you can add on your graphs!&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group&amp;diff=761368</id>
		<title>Mod:Hunt Research Group</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Mod:Hunt_Research_Group&amp;diff=761368"/>
		<updated>2019-03-25T17:21:32Z</updated>

		<summary type="html">&lt;p&gt;Zx616: /* Codes to Help Gaussian Analysis */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Hunt Group Wiki==&lt;br /&gt;
&lt;br /&gt;
Back to the main [http://www.ch.ic.ac.uk/hunt web-page]&lt;br /&gt;
===Report and Paper Writing===&lt;br /&gt;
#procedures [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/report_procedures link]&lt;br /&gt;
#advise [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/report_writing link]&lt;br /&gt;
#report components [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/report_components link]&lt;br /&gt;
#files to provide when writing a paper [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/paper link]&lt;br /&gt;
&lt;br /&gt;
===Group Admin===&lt;br /&gt;
#Which files to store on the database and database template [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/database link]&lt;br /&gt;
#How to access DROBO [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/drobo link]&lt;br /&gt;
#Using windows [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/using_windows link]&lt;br /&gt;
&lt;br /&gt;
===HPC Resources===&lt;br /&gt;
#&#039;&#039;&#039;Hunt group HPC servers and run scripts&#039;&#039;&#039; [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/hpc link]&lt;br /&gt;
#How to run jobs interactively  [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/run_interactive link]&lt;br /&gt;
#New gf script (more convenient job submitting) [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group/new_gf_script link]&lt;br /&gt;
#Computing resources available in the chemistry department [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/computing_resources link]&lt;br /&gt;
#Setting up a connection to HPC if you have a PC [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/hpc_connections link] &lt;br /&gt;
#How to fix Windows files under UNIX [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/Windowsfiles link] &lt;br /&gt;
#How to make ssh more comfortable [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/pimpSSH link] &lt;br /&gt;
#Retired: How to make qsub more comfortable (gfunc) [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/pimpQSUB link] &lt;br /&gt;
#Tired of entering your password all the time: set up a SSH keypair [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/SSHkeyfile link] &lt;br /&gt;
#Use Imperial Software Hub to access gaussview and gaussian [http://www.imperial.ac.uk/admin-services/ict/store/software/software-hub/ link]&lt;br /&gt;
#How to use gaussview directly on the HPC [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/gview link] &lt;br /&gt;
#How to comfortably search through old BASH commands [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/searchbash link]&lt;br /&gt;
#Using VPN from home, for Sierra follow the college instructions [[link]] &lt;br /&gt;
#How to connect to HPC directory on desktop for file transfers [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/hpc_Directory_on_desktop link]&lt;br /&gt;
#How to set-up remote desktop [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/mac_remote link]&lt;br /&gt;
&lt;br /&gt;
===Key Papers, References and Resources===&lt;br /&gt;
#Meta study on DFT functionals [https://pubs.acs.org/doi/abs/10.1021/ct401111c doi]&lt;br /&gt;
#M06 suite of DFT functionals [https://link.springer.com/article/10.1007/s00214-007-0310-x doi]&lt;br /&gt;
#SMD for ILs [https://pubs.acs.org/doi/abs/10.1021/jp304365v doi]&lt;br /&gt;
&lt;br /&gt;
===Gaussian General===&lt;br /&gt;
#We are starting a database of common errors encountered when running Gaussian jobs [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/gaussian_errors link]&lt;br /&gt;
# Here is an already existing database of common errors [https://docs.computecanada.ca/wiki/Gaussian_error_messages link]&lt;br /&gt;
# [http://www.ch.ic.ac.uk/hunt/g03_man/index.htm G03 Manual]&lt;br /&gt;
#How to run NBO5.9 on the HPC [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/NBO5.9 link] &lt;br /&gt;
#How to include dispersion [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/dispersion link] &lt;br /&gt;
#Basic ONIOM (Mechanical Embedding) [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/basiconiom link]&lt;br /&gt;
#IL ONIOM clusters [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/oniomclusers link]&lt;br /&gt;
#problems with scf convergence [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/scf_convergence link]&lt;br /&gt;
#partial optimisations and scans [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/z-matrix link]&lt;br /&gt;
#generating natural transition orbitals [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/nto link]&lt;br /&gt;
#computing excited state polarisabilities [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group:_ES_alpha link]&lt;br /&gt;
#computing deuterated and/or anharmonic spectra [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group:_Danharm link]&lt;br /&gt;
#How to run at a higher temperature [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group:high_temp link]&lt;br /&gt;
#Correcting the entropy due to low modes [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group:low_modes_entropy link]&lt;br /&gt;
#manipulating checkpoint files [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group:usingchkfiles link]&lt;br /&gt;
#for NMR calculations look here: [http://cheshirenmr.info/index.htm Chemical Shift Repository]&lt;br /&gt;
#General procedure for locating transition state structures [[link]]&lt;br /&gt;
#Troublesome optimisations in SMD [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group:troublesome_smd link]&lt;br /&gt;
#[https://wiki.ch.ic.ac.uk/wiki/index.php?title=Optimising_charged_molecules_in_electric_fields Optimisations of charged molecules in an electric field]&lt;br /&gt;
&lt;br /&gt;
===Solvation===&lt;br /&gt;
#Atomic radii and solvent models [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/atomic_radii link]&lt;br /&gt;
#Using solvent models [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/solvent link]&lt;br /&gt;
#Using SMD on ILs [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group:_Using_SMD_on_ILs link]&lt;br /&gt;
#Molecular volume calculations [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group/molecular_volume link]&lt;br /&gt;
#The cavity [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/solvent_cavity link]&lt;br /&gt;
#How to download and use GeomView to visualise solvation cavities [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group/geomview link]&lt;br /&gt;
#Surfaces (Solvent-Accessible and Connolly) in Jmol [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/jmolsurfaces link]&lt;br /&gt;
&lt;br /&gt;
===Codes to Help Gaussian Analysis===&lt;br /&gt;
# Extract E2 Values (From NBO Calculations) [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/NBO_Matlab_Code link]&lt;br /&gt;
# Extract last Standard Orientation structure of gaussian log file [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/extract_single_geom link]&lt;br /&gt;
# Extract geometry and charges (ESP) into a .pdb file for visualising in VMD [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/ESP_charges_for_VMD link]&lt;br /&gt;
# Extract ESP and NBO charges [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/extract_ESP_charges link]&lt;br /&gt;
# Calculate pDoS/XP spectra code (under construction) [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/Calc_XPS_Code link]&lt;br /&gt;
#Script to pull thermodynamic data and low frequencies from log files [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group:freq_script link]&lt;br /&gt;
# Codes to extract frequency data from gaussian .log files and generate vibrational spectra [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group:frequency_spectrum_script link]&lt;br /&gt;
# Optimally Tuned Range Seperated Hybrid Functionals [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group/OTRSH_Funct link]&lt;br /&gt;
# Some G09 Parsers [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group/Some_G09_Parsers link]&lt;br /&gt;
# Codes to extract CHELPG and NBO charge values to excel [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group/chelpg_extract link]&lt;br /&gt;
# Codes to visualise data matrices (correlation matrices/heatmaps)[https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group/heatmap link]&lt;br /&gt;
&lt;br /&gt;
===QC Visualisation===&lt;br /&gt;
*&#039;&#039;&#039;Using AIMALL: density based visualisation&#039;&#039;&#039;&lt;br /&gt;
#download [http://aim.tkgristmill.com AIMALL]&lt;br /&gt;
#basic instructions [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group:aim_basics link]&lt;br /&gt;
#AimAll with pseudo potentials [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group:aim_pseudopotentials link]&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;ESPs and manipulating gaussian cube files&#039;&#039;&#039;&lt;br /&gt;
#Instructions for visualizing electrostatic potentials (Gaussview)[https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/electrostatic_potentials link]&lt;br /&gt;
#Electrostatic Potentials II (Molden) [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/electrostatic_potentials_2 link] &lt;br /&gt;
#Manipulating cube files [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/cube_files link] &lt;br /&gt;
#Format of cube files [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group/cube_format link]&lt;br /&gt;
#Using A. Stone&#039;s distributed multipole analysis [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/GDMA link] &lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;NCI plots&#039;&#039;&#039;&lt;br /&gt;
#get the program here: [http://www.lct.jussieu.fr/pagesperso/contrera/nciplot.html link]&lt;br /&gt;
#How to install NCIPlot on your mac [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/InstallNCIPlot link]&lt;br /&gt;
#Using NCIPlot [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/UseNCIPlot link]  &lt;br /&gt;
&lt;br /&gt;
===Other Visualisation===&lt;br /&gt;
#Python API for analysis of Gaussian compuations [https://pygauss.readthedocs.org - Documentation]&lt;br /&gt;
#Visualising MOs using Jmol [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:basic_jmol_instructions link]&lt;br /&gt;
&lt;br /&gt;
===Setup and Running Classical MD Simulations===&lt;br /&gt;
#DLPOLY a MD simulation package, Installation on an IMac (old needs to be updated) [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/dlpoly_install  link]&lt;br /&gt;
#DL_POLY FAQs [http://www.stfc.ac.uk/cse/DL_POLY/ccp1gui/38621.aspx] from DL_POLY webpage.&lt;br /&gt;
#Installing Packmol&lt;br /&gt;
#Getting started: generating a solvated structure and &amp;quot;relaxing&amp;quot; it [https://www.ch.ic.ac.uk/wiki/index.php/Talk:Mod:Hunt_Research_Group/Starting_MD link] &lt;br /&gt;
#Equilibration and production simulations [https://www.ch.ic.ac.uk/wiki/index.php/Talk:Mod:Hunt_Research_Group/EquilibrationandProduction link] &lt;br /&gt;
#How to equilibrate an MD run[https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/equilibration link] &lt;br /&gt;
#Getting the Force Field [https://www.ch.ic.ac.uk/wiki/index.php/Talk:Mod:Hunt_Research_Group/Wheretostart link] &lt;br /&gt;
#Choosing an Ensemble [https://www.ch.ic.ac.uk/wiki/index.php/Talk:Mod:Hunt_Research_Group/Ensembles link] &lt;br /&gt;
#Molten Salt Simulations [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group/MoltenSaltSimulation link]&lt;br /&gt;
#Common Errors [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group/CommonErrors link]&lt;br /&gt;
#Voids in ILs[https://www.ch.ic.ac.uk/wiki/index.php/Talk:Mod:Hunt_Research_Group/voids link] &lt;br /&gt;
#Equilibration of [bmim][BF4] and [bmim][NO3][https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/BmimBF4_equilibration link] &lt;br /&gt;
#Summary of discussions with Ruth[https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/Aug09QtoRuth link]&lt;br /&gt;
&lt;br /&gt;
===MD Visualisation===&lt;br /&gt;
*&#039;&#039;&#039;VMD: a molecular dynamics visualisation package&#039;&#039;&#039;&lt;br /&gt;
#VMD can be installed from the [http://www.ks.uiuc.edu/Development/Download/download.cgi?PackageName=VMD VMD downloads page]&lt;br /&gt;
#Quick reminder [https://www.ch.ic.ac.uk/wiki/index.php/Talk:Mod:Hunt_Research_Group/VMDReminder link]&lt;br /&gt;
#Colour in VMD  [https://www.ch.ic.ac.uk/wiki/index.php/Talk:Mod:Hunt_Research_Group/VMDColor link]&lt;br /&gt;
#Changing the graphical representation of your structures [https://www.ch.ic.ac.uk/wiki/index.php/Talk:Mod:Hunt_Research_Group/vmd link]&lt;br /&gt;
#VMD indexing  [https://www.ch.ic.ac.uk/wiki/index.php/Talk:Mod:Hunt_Research_Group/VMDindexing link]&lt;br /&gt;
#Using scripts in VMD [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/VmdScripts link]&lt;br /&gt;
#Dealing with periodic boundaries and bonding (under construction) [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/VmdScriptsPeriodic link]&lt;br /&gt;
#Dealing with bonding (under construction) [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/VmdBonding link]&lt;br /&gt;
#How to turn a Gaussian optimization into a VMD movie [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/VMDmovie link] &lt;br /&gt;
#Overlapping two structures [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/VmdVisual link]&lt;br /&gt;
*&#039;&#039;&#039;Ovito: a molecular dynamics visualisation package&#039;&#039;&#039;&lt;br /&gt;
#Download Ovito [http://www.ovito.org/index.php/download]&lt;br /&gt;
#Using Ovito basics [//wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/Ovito_basics link]&lt;br /&gt;
*&#039;&#039;&#039;SDFs&#039;&#039;&#039;&lt;br /&gt;
#How to generate SDFs [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/sdfs_generate link]&lt;br /&gt;
&lt;br /&gt;
===MD Post processing===&lt;br /&gt;
#Python script to convert a HISTORY file into a xyz file [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/hist_to_xyz link]&lt;br /&gt;
#Python script to reduce the number of steps in a lammps traj file  [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/lam_to_xyz link]&lt;br /&gt;
#Python script to convert a lammps traj file to xyz coordinates and at the same time fold all atoms into a cell and center at the origin  [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/lam_fold_xyz link]&lt;br /&gt;
#Center the trajectory at a particular atom (&#039;&#039;&#039;needs fixing&#039;&#039;&#039;) [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/Recenter link]&lt;br /&gt;
#How to  generate SDFs with TRAVIS [[Talk:Mod:Hunt Research Group/How to draw SDFs with TRAVIS|link]]&lt;br /&gt;
#Tcl script to follow a particular atom [[Talk:Mod:Hunt Research Group/Traj_atom_following|link]]&lt;br /&gt;
&lt;br /&gt;
===Coding===&lt;br /&gt;
*&#039;&#039;&#039;installing Xcode and other programming environments&#039;&#039;&#039;&lt;br /&gt;
#to use many programs you will need a compiler, this is not installed by default on your mac&lt;br /&gt;
#How to install Xcode on your mac [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/InstallXcode link] &lt;br /&gt;
#using MacPorts as code for managing other codes on your mac [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/MacPorts link] &lt;br /&gt;
#HomeBrew and Fink are other options (HomeBrew is not advised for us)&lt;br /&gt;
#gfortran on your mac [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/Gfortran link] &lt;br /&gt;
#using python on your mac  [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/python link]&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;EMO Code&#039;&#039;&#039;&lt;br /&gt;
#How to use Ling&#039;s emo plot code[https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/emoplot link] &lt;br /&gt;
#How to plot EMOs [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/emo link]&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Jan&#039;s charge based analysis Code&#039;&#039;&#039;&lt;br /&gt;
#charge analysis  [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/Jan_charges link]&lt;br /&gt;
&lt;br /&gt;
*&#039;&#039;&#039;Oxana&#039;s visualisation of ESPs Code&#039;&#039;&#039;&lt;br /&gt;
#Scripts for reading, saving, manipulating and visualising data from cube files [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group/Python_scripts_for_cube_files link]&lt;br /&gt;
&lt;br /&gt;
===Other Codes===&lt;br /&gt;
#ADF Submission script [http://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/ADF_sricpt link]&lt;br /&gt;
#How to install POLYRATE [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/polyrate link] &lt;br /&gt;
#XMGRACE, gfortran, c compilers for Lion [http://hpc.sourceforge.net/]&lt;br /&gt;
&lt;br /&gt;
===Setup and Running Ab-Initio MD Simulations===&lt;br /&gt;
#CPMD: Car-Parrinello Molecular Dynamics [https://www.ch.ic.ac.uk/wiki/index.php/Talk:Mod:Hunt_Research_Group/cpmd link]&lt;br /&gt;
#How to run CPMD to study aqueous solutions [https://www.ch.ic.ac.uk/wiki/index.php/Talk:Mod:Hunt_Research_Group/cpmd_water link]&lt;br /&gt;
#How to run CP2K [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/cp2k_how link] &lt;br /&gt;
#[bmim]Cl using CPMD [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/bmimCl_cpmd  link] &lt;br /&gt;
#[bmim]Cl using CP2K [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/bmimCl_cp2k  link] &lt;br /&gt;
#mman using CPMD and Gaussian [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/mman link] &lt;br /&gt;
#[emim]SCN using CP2K[https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/emimscn link] &lt;br /&gt;
#CP2K Donts [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/cp2k link] &lt;br /&gt;
&lt;br /&gt;
===Running QM/MM Simulations in ChemShell===&lt;br /&gt;
#ChemShell official website which contains the manual and a tutorial [http://www.stfc.ac.uk/CSE/randd/ccg/36254.aspx link]&lt;br /&gt;
#Introduction to ChemShell - Copper in water [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/ChemShell_Introduction link]&lt;br /&gt;
#Defining the system: Cu&amp;lt;sup&amp;gt;2+&amp;lt;/sup&amp;gt; and its first 2 solvation shells [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/ChemShell_System_Aqeuous_Cu(II) link] &lt;br /&gt;
#Defining the force field parameters [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/ChemShell_Force_Field_Parameters_Aqueous_Cu(II) link] &lt;br /&gt;
#Single point QM/MM energy calculation [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/QMMM_SP_Aqeuous_Cu(II) link] &lt;br /&gt;
#QM/MM Optimisation [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/QMMM_OPT_Aqeuous_Cu(II) link] &lt;br /&gt;
#QM/MM Molecular Dynamics [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/QMMM_MD_Aqeuous_Cu(II) link]&lt;br /&gt;
#Using MolCluster [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/MolCluster link]&lt;br /&gt;
#Running ChemShell [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/ChemShell link]&lt;br /&gt;
#Explaining ChemShell files [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/ChemShell_files link]&lt;br /&gt;
#Step By Step [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/Chemshell_Step_By_Step link]&lt;br /&gt;
&lt;br /&gt;
===Research Notes===&lt;br /&gt;
#Cl- in water [https://www.ch.ic.ac.uk/wiki/index.php/Talk:Mod:Hunt_Research_Group/wannier_centre link] &lt;br /&gt;
#The use of Legendre time correlation functions to study reorientational dynamics in liquids[https://www.ch.ic.ac.uk/wiki/index.php/Talk:Mod:Hunt_Research_Group/legendre  link] &lt;br /&gt;
#Functional for ILs using CPMD [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/IL_cpmd_functional link] &lt;br /&gt;
#Solving the angular part of the Schrödinger equation for a hydrogen atom [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/angular_schrodinger link] (notes by Vincent)&lt;br /&gt;
#Systematic conformational scan for ion-pair dimers [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Talk:Mod:Hunt_Research_Group/ion_pair_scan link]&lt;br /&gt;
#Obtaining NBO, ESP, and RESP charges [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group/Charges link]&lt;br /&gt;
#DFT Workshop Notes [https://wiki.ch.ic.ac.uk/wiki/index.php?title=Mod:Hunt_Research_Group/DFT_Workshop]&lt;br /&gt;
&lt;br /&gt;
===Admin Stuff===&lt;br /&gt;
#Not used to writing a wiki, make your test runs [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/testing on this page]&lt;br /&gt;
#How to set-up new macs [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/mac_setup link]&lt;br /&gt;
#How to switch the printer HP CP3525dn duplex on and off [https://www.ch.ic.ac.uk/wiki/index.php/Mod:Hunt_Research_Group/printing link]&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=757402</id>
		<title>Rep:Mod:Zx616fyp</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=757402"/>
		<updated>2019-03-18T17:10:56Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
     Gaussian Optimised Structures&lt;br /&gt;
! \ !! BH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! BMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! BiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;PH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || [[File:bh3ph3.png|155px]] || [[File:BM3PH3.png|155px]] || [[File:biprph.PNG|155px]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;PMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; ||[[File:BH3PME3.png|150px]] || [[File:PMEBME.png|157px]] || [[File:pmebipr.png|155px]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;PiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || [[File:PIPR3BH3.png|150px]] ||[[File:BMEPIPR.png|150px]]|| [[File:Piprbipr.png|153px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=757401</id>
		<title>Rep:Mod:Zx616fyp</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=757401"/>
		<updated>2019-03-18T17:10:46Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
     Gaussian Optimised Structures&lt;br /&gt;
! \ !! BH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! BMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! BiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;PH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || [[File:bh3ph3.png|155px]] || [[File:BM3PH3.png|155px]] || [[File:biprph.png|155px]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;PMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; ||[[File:BH3PME3.png|150px]] || [[File:PMEBME.png|157px]] || [[File:pmebipr.png|155px]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;PiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || [[File:PIPR3BH3.png|150px]] ||[[File:BMEPIPR.png|150px]]|| [[File:Piprbipr.png|153px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:Biprph.PNG&amp;diff=757400</id>
		<title>File:Biprph.PNG</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:Biprph.PNG&amp;diff=757400"/>
		<updated>2019-03-18T17:10:34Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:Capture.PNG&amp;diff=757399</id>
		<title>File:Capture.PNG</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:Capture.PNG&amp;diff=757399"/>
		<updated>2019-03-18T17:09:24Z</updated>

		<summary type="html">&lt;p&gt;Zx616: Zx616 uploaded a new version of File:Capture.PNG&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=753191</id>
		<title>Rep:Mod:Zx616fyp</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=753191"/>
		<updated>2019-03-12T15:16:57Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
     Gaussian Optimised Structures&lt;br /&gt;
! \ !! BH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! BMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! BiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;PH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || [[File:bh3ph3.png|155px]] || [[File:BM3PH3.png|155px]] || [[File:biprph3.png|155px]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;PMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; ||[[File:BH3PME3.png|150px]] || [[File:PMEBME.png|157px]] || [[File:pmebipr.png|155px]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;PiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || [[File:PIPR3BH3.png|150px]] ||[[File:BMEPIPR.png|150px]]|| [[File:Piprbipr.png|153px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=752370</id>
		<title>Rep:Mod:Zx616fyp</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=752370"/>
		<updated>2019-03-10T17:23:14Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
     Gaussian Optimised Structures&lt;br /&gt;
! \ !! PH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! PMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! PiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;BH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || [[File:bh3ph3.png|155px]] || [[File:BH3PME3.png|150px]] || [[File:PIPR3BH3.png|150px]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;BMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; ||[[File:BM3PH3.png|155px]] || [[File:PMEBME.png|157px]] || [[File:BMEPIPR.png|150px]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;BiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || [[File:biprph3.png|155px]] || [[File:pmebipr.png|155px]] || [[File:Piprbipr.png|153px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=752369</id>
		<title>Rep:Mod:Zx616fyp</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=752369"/>
		<updated>2019-03-10T15:52:00Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
     Structures&lt;br /&gt;
! \ !! PH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! PMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! PiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;BH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || [[File:bh3ph3.png|155px]] || [[File:BH3PME3.png|150px]] || [[File:PIPR3BH3.png|150px]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;BMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; ||[[File:BM3PH3.png|155px]] || [[File:PMEBME.png|157px]] || [[File:BMEPIPR.png|150px]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;BiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || [[File:biprph3.png|155px]] || [[File:pmebipr.png|155px]] || [[File:Piprbipr.png|153px]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:Piprbipr.png&amp;diff=752368</id>
		<title>File:Piprbipr.png</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:Piprbipr.png&amp;diff=752368"/>
		<updated>2019-03-10T15:51:32Z</updated>

		<summary type="html">&lt;p&gt;Zx616: Zx616 uploaded a new version of File:Piprbipr.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:Piprbipr.png&amp;diff=752367</id>
		<title>File:Piprbipr.png</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:Piprbipr.png&amp;diff=752367"/>
		<updated>2019-03-10T15:50:18Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=752366</id>
		<title>Rep:Mod:Zx616fyp</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=752366"/>
		<updated>2019-03-10T15:47:59Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
     Structures&lt;br /&gt;
! \ !! PH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! PMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! PiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;BH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || [[File:bh3ph3.png|155px]] || [[File:BH3PME3.png|150px]] || [[File:PIPR3BH3.png|150px]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;BMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; ||[[File:BM3PH3.png|155px]] || [[File:PMEBME.png|157px]] || [[File:BMEPIPR.png|150px]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;BiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || [[File:biprph3.png|155px]] || [[File:pmebipr.png|150px]] || cell&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:Pmebipr.png&amp;diff=752365</id>
		<title>File:Pmebipr.png</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:Pmebipr.png&amp;diff=752365"/>
		<updated>2019-03-10T15:47:49Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:Biprph3.png&amp;diff=752364</id>
		<title>File:Biprph3.png</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:Biprph3.png&amp;diff=752364"/>
		<updated>2019-03-10T15:45:55Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:PMEBME.png&amp;diff=752363</id>
		<title>File:PMEBME.png</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:PMEBME.png&amp;diff=752363"/>
		<updated>2019-03-10T15:43:08Z</updated>

		<summary type="html">&lt;p&gt;Zx616: Zx616 uploaded a new version of File:PMEBME.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:BMEPIPR.png&amp;diff=752362</id>
		<title>File:BMEPIPR.png</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:BMEPIPR.png&amp;diff=752362"/>
		<updated>2019-03-10T15:42:09Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:PMEBME.png&amp;diff=752361</id>
		<title>File:PMEBME.png</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:PMEBME.png&amp;diff=752361"/>
		<updated>2019-03-10T15:40:27Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=752360</id>
		<title>Rep:Mod:Zx616fyp</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=752360"/>
		<updated>2019-03-10T15:38:46Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
     Structures&lt;br /&gt;
! \ !! PH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! PMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! PiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;BH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || [[File:bh3ph3.png|155px]] || [[File:BH3PME3.png|150px]] || [[File:PIPR3BH3.png|150px]]&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;BMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; ||[[File:BM3PH3.png|155px]] || cell || cell&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;BiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || cell || cell || cell&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:BM3PH3.png&amp;diff=752359</id>
		<title>File:BM3PH3.png</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:BM3PH3.png&amp;diff=752359"/>
		<updated>2019-03-10T15:37:40Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:Bh3ph3.png&amp;diff=752358</id>
		<title>File:Bh3ph3.png</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:Bh3ph3.png&amp;diff=752358"/>
		<updated>2019-03-10T15:36:00Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:PIPR3BH3.png&amp;diff=752357</id>
		<title>File:PIPR3BH3.png</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:PIPR3BH3.png&amp;diff=752357"/>
		<updated>2019-03-10T15:34:25Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:BH3PH3.png&amp;diff=752356</id>
		<title>File:BH3PH3.png</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:BH3PH3.png&amp;diff=752356"/>
		<updated>2019-03-10T15:30:43Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=File:BH3PME3.png&amp;diff=752355</id>
		<title>File:BH3PME3.png</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=File:BH3PME3.png&amp;diff=752355"/>
		<updated>2019-03-10T15:28:03Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=752354</id>
		<title>Rep:Mod:Zx616fyp</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=752354"/>
		<updated>2019-03-10T15:25:06Z</updated>

		<summary type="html">&lt;p&gt;Zx616: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
     Structures&lt;br /&gt;
! \ !! PH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! PMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! PiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;BH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || cell || cell || cell&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;BMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || cell || cell || cell&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;BiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || cell || cell || cell&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=752353</id>
		<title>Rep:Mod:Zx616fyp</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=Rep:Mod:Zx616fyp&amp;diff=752353"/>
		<updated>2019-03-10T15:24:22Z</updated>

		<summary type="html">&lt;p&gt;Zx616: Created page with &amp;quot;{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot; |+      Structures ! \ !! PH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! PMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! PiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; |- | &amp;#039;&amp;#039;&amp;#039;PH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&amp;#039;&amp;#039;&amp;#039; || cell || cell || cell |- | &amp;#039;&amp;#039;&amp;#039;PMe&amp;lt;s...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
     Structures&lt;br /&gt;
! \ !! PH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! PMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt; !! PiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;PH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || cell || cell || cell&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;PMe&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || cell || cell || cell&lt;br /&gt;
|-&lt;br /&gt;
| &#039;&#039;&#039;PiPr&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;&#039;&#039;&#039; || cell || cell || cell&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=MRD:zx616&amp;diff=723899</id>
		<title>MRD:zx616</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=MRD:zx616&amp;diff=723899"/>
		<updated>2018-05-18T16:46:35Z</updated>

		<summary type="html">&lt;p&gt;Zx616: /* Exercise 1: H+H2 system */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&amp;lt;b&amp;gt;Exercise 1: H+H2 system==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|What value do the different components of the gradient of the potential energy surface have at a minimum and at a transition structure? Briefly explain how minima and transition structures can be distinguished using the curvature of the potential energy surface.}}&lt;br /&gt;
&lt;br /&gt;
The transition state can be determined by looking at the surface plot. The saddle point is believed to be the place where Transition state is located at (0.40,0.40, -97). This is considered to be the transition state because the partial derivative of both AB and BC distances give a minimum, and the partial derivative of reaction coordinate and energy give a maximum. This is confirmed by checking whether the place is inside the reaction coordinate. Since r1=r2, this place is believed to be the transition state.&lt;br /&gt;
[[File:energy1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Report your best estimate of the transition state position (&#039;&#039;&#039;r&amp;lt;sub&amp;gt;ts&amp;lt;/sub&amp;gt;&#039;&#039;&#039;) and explain your reasoning illustrating it with a “Internuclear Distances vs Time” plot for a relevant trajectory.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When r1=r2, with p1=p2=0 (since the gradient is 0), this is where TS is located. By adjusting proper values, r=0.908. This is backed up by looking at the internuclear distance vs time graph where BC and AC distance does not change over time, only atomic vibration occurs. When there is no oscillation within molecules and between atoms, TS is achieved. &lt;br /&gt;
&lt;br /&gt;
[[File:inter1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Comment on how the &#039;&#039;mep&#039;&#039; and the trajectory you just calculated differ.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When MEP calculation is done, one will see that the line becomes smoother than Dynamic in surface plot, in which molecules are believed to oscillate. Therefore one can conclude that MEP is suitable for providing a macro picture of a reaction whereas the Dynamic provides a detailed behaviors of atoms in a reaction.&lt;br /&gt;
&lt;br /&gt;
[[File:contdyn.PNG|thumb|A dynamic calculation|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:contmep.PNG|thumb|A MEP calculation|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Intermolecular momenta vs time: for MEP the line becomes a flat line compare to Dynamic where lines are oscillating;&lt;br /&gt;
&lt;br /&gt;
Intermolecular distance vs time: for MEP the graph becomes a curved line compare to dynamic where they are straight lines with positive gradients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Complete the table by adding a column with the total energy, and another column reporting if the trajectory is reactive or unreactive. For each set of initial conditions, provide a plot of the trajectory and a small description for what happens along the trajectory.}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ Table&lt;br /&gt;
! p1 !! p2 !! Total Energy !! Reactive/Unreactive !! Description&lt;br /&gt;
|-&lt;br /&gt;
| -1.25|| -2.5 || -99.018 || Reactive || [[File:Des1.png | 175px]] Atom C moving towards A-B and form a new bond B-C and then move away with vibration.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.0 || -100.456 || Unreactive || [[File:Des2.PNG | 175px]] Atom C moving towards vibrating A-B, but does not have enough kinetic and potential energy to overcome the Ea barrier, therefore the reaction is unreactive.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.5 || -98.956|| Reactive|| [[File:Des3.PNG | 175px]] This reaction is reactive. It follows the similar path with No.1 but atom C is also vibrating while moving towards A-B&lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.0 || -84.956|| Unreactive|| [[File:4.PNG | 175px]] H-H bond has very large energy that allows the transition state to form, but when single atom H comes in, it also possesses a large momentum that bounces the reactants back to be regenerated. &lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.2 || -83.416|| Reactive|| [[File:Des5.PNG | 175px]] The single atom C is able to form a H-H bond with B but has such large vibrational energy that it collides again with A, and then &amp;quot;re-crossed&amp;quot; back to form B-C and moves in opposite direction&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|State what are the main assumptions of Transition State Theory. Given the results you have obtained, how will Transition State Theory predictions for reaction rate values compare with experimental values?}}&lt;br /&gt;
&lt;br /&gt;
Assumptions:&lt;br /&gt;
&lt;br /&gt;
Firstly, Transition State Theory (TST) assumes that the reactants are in equilibrium with the transition state, but in reality, due to both kinetic and thermodynamic reasons. Some reactions proceed via an intermediate, which does not fit in Hammond&#039;s postulate.&lt;br /&gt;
&lt;br /&gt;
Secondly, TST assumes that all molecules in TS are long-lived enough to reach Boltzmann&#039;s distribution before forming the product, this is very limited. When molecules of such have a short half life, the TST predicted products are not necessarily correct in its selectivities.&lt;br /&gt;
&lt;br /&gt;
Last but not least, TST assumes that  ΔH0=Ea, whereas a more reliable consideration is  ΔH0=ΔU0 + RT. The assumption fails to take into account how TS will behave under the change in temperature but the modified version takes that into account and makes the model more reliable.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Exercise 2==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Classify the F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; and H + HF reactions according to their energetics (endothermic or exothermic). How does this relate to the bond strength of the chemical species involved?}}&lt;br /&gt;
&lt;br /&gt;
F+H2 is exothermic. As seen from the PES plot, from B-C to A-B involves a release of energy from ca. -130 to ca. -110.&lt;br /&gt;
&lt;br /&gt;
H-H bond strength is less than that of F-H, the formation of a F-H bond compensates the breaking of one H-H bond. Therefore it is exothermic.&lt;br /&gt;
&lt;br /&gt;
H+HF is endothermic because of the similar reasons. From B-C to A-B involves a absorption of energy from ca. -110 to ca. -130.&lt;br /&gt;
&lt;br /&gt;
the breaking of a strong H-F bond cannot be compensated by the formation of a relatively weaker H-H bond, so it is endothermic. &lt;br /&gt;
&lt;br /&gt;
comparison of bond strength: H-H: 432 kJ/mol; H-F: 565 kJ/mol, matches the observations from the plots. &lt;br /&gt;
&lt;br /&gt;
ref:http://www.wiredchemist.com/chemistry/data/bond_energies_lengths.html&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Locate the approximate position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
The position of TS is located to be r(F-H)=1.810 and r(H-H)=0.745 for F + H2 and r(H-H)=1.810 and r(F-H)=0.745 for H + FH. This is confirmed by viewing the Internuclear distances vs time plot being three horizontal lines and the surface plot with one single dot on the saddle &amp;quot;line&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:fhh1.PNG]]&lt;br /&gt;
[[File:fhh2.PNG]]&lt;br /&gt;
&lt;br /&gt;
Comments: The first plot identifies the saddle point at given initial conditions, confirming those conditions represent the transition state. The second graph illustrated no vibrations between three molecules, meaning they are at the furthest they can be without losing interactions, confirms again that these conditions fulfill a transition state. Similar approaches were used to determine the transition state for the second reaction. In order to achieve satisfactory initial conditions, trail and errors were carried out in accordance with the relevant knowledge from bond strengths.&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Report the activation energy for both reactions.}}&lt;br /&gt;
&lt;br /&gt;
To determine the activation energy, the energy of transition state was used to minus the energy of the reactants to give activation energy. A MEP plot was done to determine the energy of transition state precisely. And by slightly increasing and decreasing the distance of F-H in the transition state, the energy of the reactants can be determined too.&lt;br /&gt;
&lt;br /&gt;
For F+H2, the activation energy is reported to be 0.20 kCal/mol and for that of H+FH it is reported to be 30.2 kCal/mol&lt;br /&gt;
&lt;br /&gt;
 {{fontcolor1|red|In light of the fact that energy is conserved, discuss the mechanism of release of the reaction energy. How could this be confirmed experimentally?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A set of reactive initial condition for F + H2 is r(F-H)=1.810, r(H-H)=0.745, p(FH)=-1 and p(HH)=-2. It can be clearly see that in the beginning of the reaction, i.e. 0-0.5s, the energy was stored in H-H bond, conversly F-H bond shows no momentum. However, as the reaction goes through, at around 1s sees the exchange of the energy between two bonds. 1.25 seconds shows a converge trend of F-H and H-H momenta, marked the successful transfer of energy. In the end, the amplitude of F-H bond momentum increases as a result of the decrease of H-H bond. Overall, the potential energy was converted to vibrational energy, because of the momenta of B-C and A-C are positive, means that the molecules and the hydrogen atom are moving away from each other. A calorimeter can be used to monitor the energy changes during the reaction. See below a graph of momenta vs time graph for confirmation.&lt;br /&gt;
&lt;br /&gt;
[[File:mvt.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Setup a calculation starting on the side of the reactants of F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;, at the bottom of the well r&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.74, with a momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.5, and explore several values of p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; in the range -3 to 3 (explore values also close to these limits). What do you observe?}}&lt;br /&gt;
&lt;br /&gt;
When exploring the variation of p(HH) from -3 to 3. The reaction becomes successful when the momentum of H-H is around -1, and becomes unsuccessful above 1. This suggests that momentum is a vector, and it does not matter whether the sign is positive or negative, simply just a direction. The magnitude however, suggests that only a small momentum of H-H should be use so that it does not surplus the threshold of around |2|. If p(H-H) is greater than that of F-H, hydrogen molecules will tend to stay together rather than forming a new bond with Fluorine atom. Some examples of successful and unsuccessful reactions are shown below.&lt;br /&gt;
&lt;br /&gt;
A successful reaction with p(H-H)=0.5&lt;br /&gt;
[[File:sc0.5.PNG]]&lt;br /&gt;
&lt;br /&gt;
A successful reaction with p(H-H)=-1&lt;br /&gt;
[[File:sc-1.PNG]]&lt;br /&gt;
&lt;br /&gt;
An unsuccessful reaction with p(H-H)=-2.5&lt;br /&gt;
[[File:sc-2.5.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red| For the same initial position, increase slightly the momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.8, and considerably reduce the overall energy of the system by reducing the momentum p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.1. What do you observe now?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When energy is reduced considerably and the momentum of F-H is increased slightly, there is a dilemma that the activation energy for the product to form is not enough because the single hydrogen atom does not have enough kinetic energy to move away from the complex, i.e.this situation may happen in the very beginning of the transition state. The reaction is still feasible.&lt;br /&gt;
&lt;br /&gt;
[[File:sc0.1.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Discuss how the distribution of energy between different modes (translation and vibration) affect the efficiency of the reaction, and how this is influenced by the position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quantity of momenta were kept at 10.  According to Polanyi&#039;s rule, for a late TS reaction, vibrational is more effective to overcome the barrier than kinetic energy. Therefore, for this reaction, it&#039;s endothermic so a late TS state, therefore, increase in p(H-F) facilitates the reaction.&lt;br /&gt;
&lt;br /&gt;
ref:http://brouard.chem.ox.ac.uk/teaching/dynlectures4to6.pdf&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=MRD:zx616&amp;diff=723895</id>
		<title>MRD:zx616</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=MRD:zx616&amp;diff=723895"/>
		<updated>2018-05-18T16:46:05Z</updated>

		<summary type="html">&lt;p&gt;Zx616: Created page with &amp;quot;==&amp;lt;b&amp;gt;Exercise 1: H+H2 system==  {{fontcolor|red|What value do the different components of the gradient of the potential energy surface have at a minimum and at a transition st...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&amp;lt;b&amp;gt;Exercise 1: H+H2 system==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|What value do the different components of the gradient of the potential energy surface have at a minimum and at a transition structure? Briefly explain how minima and transition structures can be distinguished using the curvature of the potential energy surface.}}&lt;br /&gt;
&lt;br /&gt;
The transition state can be determined by looking at the surface plot. The saddle point is believed to be the place where Transition state is located at (0.40,0.40, -97). This is considered to be the transition state because the partial derivative of both AB and BC distances give a minimum, and the partial derivative of reaction coordinate and energy give a maximum. This is confirmed by checking whether the place is inside the reaction coordinate. Since r1=r2, this place is believed to be the transition state.&lt;br /&gt;
[[File:energy1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Report your best estimate of the transition state position (&#039;&#039;&#039;r&amp;lt;sub&amp;gt;ts&amp;lt;/sub&amp;gt;&#039;&#039;&#039;) and explain your reasoning illustrating it with a “Internuclear Distances vs Time” plot for a relevant trajectory.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When r1=r2, with p1=p2=0 (since the gradient is 0), this is where TS is located. By adjusting proper values, r=0.908. This is backed up by looking at the internuclear distance vs time graph where BC and AC distance does not change over time, only atomic vibration occurs. When there is no oscillation within molecules and between atoms, TS is achieved. &lt;br /&gt;
&lt;br /&gt;
[[File:inter1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Comment on how the &#039;&#039;mep&#039;&#039; and the trajectory you just calculated differ.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When MEP calculation is done, one will see that the line becomes smoother than Dynamic in surface plot, in which molecules are believed to oscillate. Therefore one can conclude that MEP is suitable for providing a macro picture of a reaction whereas the Dynamic provides a detailed behaviors of atoms in a reaction.&lt;br /&gt;
&lt;br /&gt;
[[File:contdyn.PNG|thumb|A dynamic calculation|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:contmep.PNG|thumb|A MEP calculation|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Intermolecular momenta vs time: for MEP the line becomes a flat line compare to Dynamic where lines are oscillating;&lt;br /&gt;
&lt;br /&gt;
Intermolecular distance vs time: for MEP the graph becomes a curved line compare to dynamic where they are straight lines with positive gradients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Complete the table by adding a column with the total energy, and another column reporting if the trajectory is reactive or unreactive. For each set of initial conditions, provide a plot of the trajectory and a small description for what happens along the trajectory.}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ Table&lt;br /&gt;
! p1 !! p2 !! Total Energy !! Reactive/Unreactive !! Description&lt;br /&gt;
|-&lt;br /&gt;
| -1.25|| -2.5 || -99.018 || Reactive || [[File:Des1.png | 175px]] Atom C moving towards A-B and form a new bond B-C and then move away with vibration.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.0 || -100.456 || Unreactive || [[File:Des2.PNG | 175px]] Atom C moving towards vibrating A-B, but does not have enough kinetic and potential energy to overcome the Ea barrier, therefore the reaction is unreactive.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.5 || -98.956|| Reactive|| [[File:Des3.PNG | 175px]] This reaction is reactive. It follows the similar path with No.1 but atom C is also vibrating while moving towards A-B&lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.0 || -84.956|| Unreactive|| [[File:4.PNG | 175px]] H-H bond has very large energy that allows the transition state to form, but when single atom H comes in, it also possesses a large momentum that bounces the reactants back to be regenerated. &lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.2 || -83.416|| Reactive|| [[File:Des5.PNG | 175px]] The single atom C is able to form a H-H bond with B but has such large vibrational energy that it collides again with A, and then &amp;quot;re-crossed&amp;quot; back to form B-C and moves in opposite direction&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|State what are the main assumptions of Transition State Theory. Given the results you have obtained, how will Transition State Theory predictions for reaction rate values compare with experimental values?}}&lt;br /&gt;
&lt;br /&gt;
Assumptions:&lt;br /&gt;
&lt;br /&gt;
Firstly, Transition State Theory (TST) assumes that the reactants are in equilibrium with the transition state, but in reality, due to both kinetic and thermodynamic reasons. Some reactions proceed via an intermediate, which does not fit in Hammond&#039;s postulate.&lt;br /&gt;
&lt;br /&gt;
Secondly, TST assumes that all molecules in TS are long-lived enough to reach Boltzmann&#039;s distribution before forming the product, this is very limited. When molecules of such have a short half life, the TST predicted products are not necessarily correct in its selectivities.&lt;br /&gt;
&lt;br /&gt;
Last but not least, TST assumes that  ΔH0=Ea, whereas a more reliable consideration is  ΔH0=ΔU0 + RT. The assumption fails to take into account how TS will behave under the change in temperature but the modified version takes that into account and makes the model more reliable.&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=MDR:zx616&amp;diff=723876</id>
		<title>MDR:zx616</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=MDR:zx616&amp;diff=723876"/>
		<updated>2018-05-18T16:41:35Z</updated>

		<summary type="html">&lt;p&gt;Zx616: /* Exercise 2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&amp;lt;b&amp;gt;Exercise 1: H+H2 system==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|What value do the different components of the gradient of the potential energy surface have at a minimum and at a transition structure? Briefly explain how minima and transition structures can be distinguished using the curvature of the potential energy surface.}}&lt;br /&gt;
&lt;br /&gt;
The transition state can be determined by looking at the surface plot. The saddle point is believed to be the place where Transition state is located at (0.40,0.40, -97). This is considered to be the transition state because the partial derivative of both AB and BC distances give a minimum, and the partial derivative of reaction coordinate and energy give a maximum. This is confirmed by checking whether the place is inside the reaction coordinate. Since r1=r2, this place is believed to be the transition state.&lt;br /&gt;
[[File:energy1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Report your best estimate of the transition state position (&#039;&#039;&#039;r&amp;lt;sub&amp;gt;ts&amp;lt;/sub&amp;gt;&#039;&#039;&#039;) and explain your reasoning illustrating it with a “Internuclear Distances vs Time” plot for a relevant trajectory.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When r1=r2, with p1=p2=0 (since the gradient is 0), this is where TS is located. By adjusting proper values, r=0.908. This is backed up by looking at the internuclear distance vs time graph where BC and AC distance does not change over time, only atomic vibration occurs. When there is no oscillation within molecules and between atoms, TS is achieved. &lt;br /&gt;
&lt;br /&gt;
[[File:inter1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Comment on how the &#039;&#039;mep&#039;&#039; and the trajectory you just calculated differ.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When MEP calculation is done, one will see that the line becomes smoother than Dynamic in surface plot, in which molecules are believed to oscillate. Therefore one can conclude that MEP is suitable for providing a macro picture of a reaction whereas the Dynamic provides a detailed behaviors of atoms in a reaction.&lt;br /&gt;
&lt;br /&gt;
[[File:contdyn.PNG|thumb|A dynamic calculation|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:contmep.PNG|thumb|A MEP calculation|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Intermolecular momenta vs time: for MEP the line becomes a flat line compare to Dynamic where lines are oscillating;&lt;br /&gt;
&lt;br /&gt;
Intermolecular distance vs time: for MEP the graph becomes a curved line compare to dynamic where they are straight lines with positive gradients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Complete the table by adding a column with the total energy, and another column reporting if the trajectory is reactive or unreactive. For each set of initial conditions, provide a plot of the trajectory and a small description for what happens along the trajectory.}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ Table&lt;br /&gt;
! p1 !! p2 !! Total Energy !! Reactive/Unreactive !! Description&lt;br /&gt;
|-&lt;br /&gt;
| -1.25|| -2.5 || -99.018 || Reactive || [[File:Des1.png | 175px]] Atom C moving towards A-B and form a new bond B-C and then move away with vibration.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.0 || -100.456 || Unreactive || [[File:Des2.PNG | 175px]] Atom C moving towards vibrating A-B, but does not have enough kinetic and potential energy to overcome the Ea barrier, therefore the reaction is unreactive.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.5 || -98.956|| Reactive|| [[File:Des3.PNG | 175px]] This reaction is reactive. It follows the similar path with No.1 but atom C is also vibrating while moving towards A-B&lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.0 || -84.956|| Unreactive|| [[File:4.PNG | 175px]] H-H bond has very large energy that allows the transition state to form, but when single atom H comes in, it also possesses a large momentum that bounces the reactants back to be regenerated. &lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.2 || -83.416|| Reactive|| [[File:Des5.PNG | 175px]] The single atom C is able to form a H-H bond with B but has such large vibrational energy that it collides again with A, and then &amp;quot;re-crossed&amp;quot; back to form B-C and moves in opposite direction&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|State what are the main assumptions of Transition State Theory. Given the results you have obtained, how will Transition State Theory predictions for reaction rate values compare with experimental values?}}&lt;br /&gt;
&lt;br /&gt;
Assumptions:&lt;br /&gt;
&lt;br /&gt;
Firstly, Transition State Theory (TST) assumes that the reactants are in equilibrium with the transition state, but in reality, due to both kinetic and thermodynamic reasons. Some reactions proceed via an intermediate, which does not fit in Hammond&#039;s postulate.&lt;br /&gt;
&lt;br /&gt;
Secondly, TST assumes that all molecules in TS are long-lived enough to reach Boltzmann&#039;s distribution before forming the product, this is very limited. When molecules of such have a short half life, the TST predicted products are not necessarily correct in its selectivities.&lt;br /&gt;
&lt;br /&gt;
Last but not least, TST assumes that  ΔH0=Ea, whereas a more reliable consideration is  ΔH0=ΔU0 + RT. The assumption fails to take into account how TS will behave under the change in temperature but the modified version takes that into account and makes the model more reliable.&lt;br /&gt;
&lt;br /&gt;
==Exercise 2==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Classify the F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; and H + HF reactions according to their energetics (endothermic or exothermic). How does this relate to the bond strength of the chemical species involved?}}&lt;br /&gt;
&lt;br /&gt;
F+H2 is exothermic. As seen from the PES plot, from B-C to A-B involves a release of energy from ca. -130 to ca. -110.&lt;br /&gt;
&lt;br /&gt;
H-H bond strength is less than that of F-H, the formation of a F-H bond compensates the breaking of one H-H bond. Therefore it is exothermic.&lt;br /&gt;
&lt;br /&gt;
H+HF is endothermic because of the similar reasons. From B-C to A-B involves a absorption of energy from ca. -110 to ca. -130.&lt;br /&gt;
&lt;br /&gt;
the breaking of a strong H-F bond cannot be compensated by the formation of a relatively weaker H-H bond, so it is endothermic. &lt;br /&gt;
&lt;br /&gt;
comparison of bond strength: H-H: 432 kJ/mol; H-F: 565 kJ/mol, matches the observations from the plots. &lt;br /&gt;
&lt;br /&gt;
ref:http://www.wiredchemist.com/chemistry/data/bond_energies_lengths.html&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Locate the approximate position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
The position of TS is located to be r(F-H)=1.810 and r(H-H)=0.745 for F + H2 and r(H-H)=1.810 and r(F-H)=0.745 for H + FH. This is confirmed by viewing the Internuclear distances vs time plot being three horizontal lines and the surface plot with one single dot on the saddle &amp;quot;line&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:fhh1.PNG]]&lt;br /&gt;
[[File:fhh2.PNG]]&lt;br /&gt;
&lt;br /&gt;
Comments: The first plot identifies the saddle point at given initial conditions, confirming those conditions represent the transition state. The second graph illustrated no vibrations between three molecules, meaning they are at the furthest they can be without losing interactions, confirms again that these conditions fulfill a transition state. Similar approaches were used to determine the transition state for the second reaction. In order to achieve satisfactory initial conditions, trail and errors were carried out in accordance with the relevant knowledge from bond strengths.&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Report the activation energy for both reactions.}}&lt;br /&gt;
&lt;br /&gt;
To determine the activation energy, the energy of transition state was used to minus the energy of the reactants to give activation energy. A MEP plot was done to determine the energy of transition state precisely. And by slightly increasing and decreasing the distance of F-H in the transition state, the energy of the reactants can be determined too.&lt;br /&gt;
&lt;br /&gt;
For F+H2, the activation energy is reported to be 0.20 kCal/mol and for that of H+FH it is reported to be 30.2 kCal/mol&lt;br /&gt;
&lt;br /&gt;
 {{fontcolor1|red|In light of the fact that energy is conserved, discuss the mechanism of release of the reaction energy. How could this be confirmed experimentally?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A set of reactive initial condition for F + H2 is r(F-H)=1.810, r(H-H)=0.745, p(FH)=-1 and p(HH)=-2. It can be clearly see that in the beginning of the reaction, i.e. 0-0.5s, the energy was stored in H-H bond, conversly F-H bond shows no momentum. However, as the reaction goes through, at around 1s sees the exchange of the energy between two bonds. 1.25 seconds shows a converge trend of F-H and H-H momenta, marked the successful transfer of energy. In the end, the amplitude of F-H bond momentum increases as a result of the decrease of H-H bond. Overall, the potential energy was converted to vibrational energy, because of the momenta of B-C and A-C are positive, means that the molecules and the hydrogen atom are moving away from each other. A calorimeter can be used to monitor the energy changes during the reaction. See below a graph of momenta vs time graph for confirmation.&lt;br /&gt;
&lt;br /&gt;
[[File:mvt.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Setup a calculation starting on the side of the reactants of F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;, at the bottom of the well r&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.74, with a momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.5, and explore several values of p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; in the range -3 to 3 (explore values also close to these limits). What do you observe?}}&lt;br /&gt;
&lt;br /&gt;
When exploring the variation of p(HH) from -3 to 3. The reaction becomes successful when the momentum of H-H is around -1, and becomes unsuccessful above 1. This suggests that momentum is a vector, and it does not matter whether the sign is positive or negative, simply just a direction. The magnitude however, suggests that only a small momentum of H-H should be use so that it does not surplus the threshold of around |2|. If p(H-H) is greater than that of F-H, hydrogen molecules will tend to stay together rather than forming a new bond with Fluorine atom. Some examples of successful and unsuccessful reactions are shown below.&lt;br /&gt;
&lt;br /&gt;
A successful reaction with p(H-H)=0.5&lt;br /&gt;
[[File:sc0.5.PNG]]&lt;br /&gt;
&lt;br /&gt;
A successful reaction with p(H-H)=-1&lt;br /&gt;
[[File:sc-1.PNG]]&lt;br /&gt;
&lt;br /&gt;
An unsuccessful reaction with p(H-H)=-2.5&lt;br /&gt;
[[File:sc-2.5.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red| For the same initial position, increase slightly the momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.8, and considerably reduce the overall energy of the system by reducing the momentum p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.1. What do you observe now?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When energy is reduced considerably and the momentum of F-H is increased slightly, there is a dilemma that the activation energy for the product to form is not enough because the single hydrogen atom does not have enough kinetic energy to move away from the complex, i.e.this situation may happen in the very beginning of the transition state. The reaction is still feasible.&lt;br /&gt;
&lt;br /&gt;
[[File:sc0.1.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Discuss how the distribution of energy between different modes (translation and vibration) affect the efficiency of the reaction, and how this is influenced by the position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quantity of momenta were kept at 10.  According to Polanyi&#039;s rule, for a late TS reaction, vibrational is more effective to overcome the barrier than kinetic energy. Therefore, for this reaction, it&#039;s endothermic so a late TS state, therefore, increase in p(H-F) facilitates the reaction.&lt;br /&gt;
&lt;br /&gt;
ref:http://brouard.chem.ox.ac.uk/teaching/dynlectures4to6.pdf&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=MDR:zx616&amp;diff=723868</id>
		<title>MDR:zx616</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=MDR:zx616&amp;diff=723868"/>
		<updated>2018-05-18T16:40:04Z</updated>

		<summary type="html">&lt;p&gt;Zx616: /* Exercise 2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&amp;lt;b&amp;gt;Exercise 1: H+H2 system==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|What value do the different components of the gradient of the potential energy surface have at a minimum and at a transition structure? Briefly explain how minima and transition structures can be distinguished using the curvature of the potential energy surface.}}&lt;br /&gt;
&lt;br /&gt;
The transition state can be determined by looking at the surface plot. The saddle point is believed to be the place where Transition state is located at (0.40,0.40, -97). This is considered to be the transition state because the partial derivative of both AB and BC distances give a minimum, and the partial derivative of reaction coordinate and energy give a maximum. This is confirmed by checking whether the place is inside the reaction coordinate. Since r1=r2, this place is believed to be the transition state.&lt;br /&gt;
[[File:energy1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Report your best estimate of the transition state position (&#039;&#039;&#039;r&amp;lt;sub&amp;gt;ts&amp;lt;/sub&amp;gt;&#039;&#039;&#039;) and explain your reasoning illustrating it with a “Internuclear Distances vs Time” plot for a relevant trajectory.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When r1=r2, with p1=p2=0 (since the gradient is 0), this is where TS is located. By adjusting proper values, r=0.908. This is backed up by looking at the internuclear distance vs time graph where BC and AC distance does not change over time, only atomic vibration occurs. When there is no oscillation within molecules and between atoms, TS is achieved. &lt;br /&gt;
&lt;br /&gt;
[[File:inter1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Comment on how the &#039;&#039;mep&#039;&#039; and the trajectory you just calculated differ.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When MEP calculation is done, one will see that the line becomes smoother than Dynamic in surface plot, in which molecules are believed to oscillate. Therefore one can conclude that MEP is suitable for providing a macro picture of a reaction whereas the Dynamic provides a detailed behaviors of atoms in a reaction.&lt;br /&gt;
&lt;br /&gt;
[[File:contdyn.PNG|thumb|A dynamic calculation|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:contmep.PNG|thumb|A MEP calculation|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Intermolecular momenta vs time: for MEP the line becomes a flat line compare to Dynamic where lines are oscillating;&lt;br /&gt;
&lt;br /&gt;
Intermolecular distance vs time: for MEP the graph becomes a curved line compare to dynamic where they are straight lines with positive gradients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Complete the table by adding a column with the total energy, and another column reporting if the trajectory is reactive or unreactive. For each set of initial conditions, provide a plot of the trajectory and a small description for what happens along the trajectory.}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ Table&lt;br /&gt;
! p1 !! p2 !! Total Energy !! Reactive/Unreactive !! Description&lt;br /&gt;
|-&lt;br /&gt;
| -1.25|| -2.5 || -99.018 || Reactive || [[File:Des1.png | 175px]] Atom C moving towards A-B and form a new bond B-C and then move away with vibration.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.0 || -100.456 || Unreactive || [[File:Des2.PNG | 175px]] Atom C moving towards vibrating A-B, but does not have enough kinetic and potential energy to overcome the Ea barrier, therefore the reaction is unreactive.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.5 || -98.956|| Reactive|| [[File:Des3.PNG | 175px]] This reaction is reactive. It follows the similar path with No.1 but atom C is also vibrating while moving towards A-B&lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.0 || -84.956|| Unreactive|| [[File:4.PNG | 175px]] H-H bond has very large energy that allows the transition state to form, but when single atom H comes in, it also possesses a large momentum that bounces the reactants back to be regenerated. &lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.2 || -83.416|| Reactive|| [[File:Des5.PNG | 175px]] The single atom C is able to form a H-H bond with B but has such large vibrational energy that it collides again with A, and then &amp;quot;re-crossed&amp;quot; back to form B-C and moves in opposite direction&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|State what are the main assumptions of Transition State Theory. Given the results you have obtained, how will Transition State Theory predictions for reaction rate values compare with experimental values?}}&lt;br /&gt;
&lt;br /&gt;
Assumptions:&lt;br /&gt;
&lt;br /&gt;
Firstly, Transition State Theory (TST) assumes that the reactants are in equilibrium with the transition state, but in reality, due to both kinetic and thermodynamic reasons. Some reactions proceed via an intermediate, which does not fit in Hammond&#039;s postulate.&lt;br /&gt;
&lt;br /&gt;
Secondly, TST assumes that all molecules in TS are long-lived enough to reach Boltzmann&#039;s distribution before forming the product, this is very limited. When molecules of such have a short half life, the TST predicted products are not necessarily correct in its selectivities.&lt;br /&gt;
&lt;br /&gt;
Last but not least, TST assumes that  ΔH0=Ea, whereas a more reliable consideration is  ΔH0=ΔU0 + RT. The assumption fails to take into account how TS will behave under the change in temperature but the modified version takes that into account and makes the model more reliable.&lt;br /&gt;
&lt;br /&gt;
==Exercise 2==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Classify the F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; and H + HF reactions according to their energetics (endothermic or exothermic). How does this relate to the bond strength of the chemical species involved?}}&lt;br /&gt;
&lt;br /&gt;
F+H2 is exothermic. As seen from the PES plot, from B-C to A-B involves a release of energy from ca. -130 to ca. -110.&lt;br /&gt;
&lt;br /&gt;
H-H bond strength is less than that of F-H, the formation of a F-H bond compensates the breaking of one H-H bond. Therefore it is exothermic.&lt;br /&gt;
&lt;br /&gt;
H+HF is endothermic because of the similar reasons. From B-C to A-B involves a absorption of energy from ca. -110 to ca. -130.&lt;br /&gt;
&lt;br /&gt;
the breaking of a strong H-F bond cannot be compensated by the formation of a relatively weaker H-H bond, so it is endothermic. &lt;br /&gt;
&lt;br /&gt;
comparison of bond strength: H-H: 432 kJ/mol; H-F: 565 kJ/mol, matches the observations from the plots. &lt;br /&gt;
&lt;br /&gt;
ref:http://www.wiredchemist.com/chemistry/data/bond_energies_lengths.html&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Locate the approximate position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
The position of TS is located to be r(F-H)=1.810 and r(H-H)=0.745 for F + H2 and r(H-H)=1.810 and r(F-H)=0.745 for H + FH. This is confirmed by viewing the Internuclear distances vs time plot being three horizontal lines and the surface plot with one single dot on the saddle &amp;quot;line&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:fhh1.PNG]]&lt;br /&gt;
[[File:fhh2.PNG]]&lt;br /&gt;
&lt;br /&gt;
Comments: The first plot identifies the saddle point at given initial conditions, confirming those conditions represent the transition state. The second graph illustrated no vibrations between three molecules, meaning they are at the furthest they can be without losing interactions, confirms again that these conditions fulfill a transition state. Similar approaches were used to determine the transition state for the second reaction. In order to achieve satisfactory initial conditions, trail and errors were carried out in accordance with the relevant knowledge from bond strengths.&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Report the activation energy for both reactions.}}&lt;br /&gt;
&lt;br /&gt;
To determine the activation energy, the energy of transition state was used to minus the energy of the reactants to give activation energy. A MEP plot was done to determine the energy of transition state precisely. And by slightly increasing and decreasing the distance of F-H in the transition state, the energy of the reactants can be determined too.&lt;br /&gt;
&lt;br /&gt;
For F+H2, the activation energy is reported to be 0.20 kCal/mol and for that of H+FH it is reported to be 30.2 kCal/mol&lt;br /&gt;
&lt;br /&gt;
 {{fontcolor1|red|In light of the fact that energy is conserved, discuss the mechanism of release of the reaction energy. How could this be confirmed experimentally?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A set of reactive initial condition for F + H2 is r(F-H)=1.810, r(H-H)=0.745, p(FH)=-1 and p(HH)=-2. It can be clearly see that in the beginning of the reaction, i.e. 0-0.5s, the energy was stored in H-H bond, conversly F-H bond shows no momentum. However, as the reaction goes through, at around 1s sees the exchange of the energy between two bonds. 1.25 seconds shows a converge trend of F-H and H-H momenta, marked the successful transfer of energy. In the end, the amplitude of F-H bond momentum increases as a result of the decrease of H-H bond. Overall, the potential energy was converted to vibrational energy, because of the momenta of B-C and A-C are positive, means that the molecules and the hydrogen atom are moving away from each other. A calorimeter can be used to monitor the energy changes during the reaction. See below a graph of momenta vs time graph for confirmation.&lt;br /&gt;
&lt;br /&gt;
[[File:mvt.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Setup a calculation starting on the side of the reactants of F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;, at the bottom of the well r&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.74, with a momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.5, and explore several values of p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; in the range -3 to 3 (explore values also close to these limits). What do you observe?}}&lt;br /&gt;
&lt;br /&gt;
When exploring the variation of p(HH) from -3 to 3. The reaction becomes successful when the momentum of H-H is around -1, and becomes unsuccessful above 1. This suggests that momentum is a vector, and it does not matter whether the sign is positive or negative, simply just a direction. The magnitude however, suggests that only a small momentum of H-H should be use so that it does not surplus the threshold of around |2|. If p(H-H) is greater than that of F-H, hydrogen molecules will tend to stay together rather than forming a new bond with Fluorine atom. Some examples of successful and unsuccessful reactions are shown below.&lt;br /&gt;
&lt;br /&gt;
[[File:sc0.5.PNG|thumb|A successful reaction with p(H-H)=0.5]]&lt;br /&gt;
[[File:sc-1.PNG|thumb|A successful reaction with p(H-H)=-1]]&lt;br /&gt;
[[File:sc-2.5.PNG|thumb|An unsuccessful reaction with p(H-H)=-2.5]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red| For the same initial position, increase slightly the momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.8, and considerably reduce the overall energy of the system by reducing the momentum p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.1. What do you observe now?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When energy is reduced considerably and the momentum of F-H is increased slightly, there is a dilemma that the activation energy for the product to form is not enough because the single hydrogen atom does not have enough kinetic energy to move away from the complex, i.e.this situation may happen in the very beginning of the transition state. The reaction is still feasible.&lt;br /&gt;
&lt;br /&gt;
[[File:sc0.1.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Discuss how the distribution of energy between different modes (translation and vibration) affect the efficiency of the reaction, and how this is influenced by the position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quantity of momenta were kept at 10.  According to Polanyi&#039;s rule, for a late TS reaction, vibrational is more effective to overcome the barrier than kinetic energy. Therefore, for this reaction, it&#039;s endothermic so a late TS state, therefore, increase in p(H-F) facilitates the reaction.&lt;br /&gt;
&lt;br /&gt;
ref:http://brouard.chem.ox.ac.uk/teaching/dynlectures4to6.pdf&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=MDR:zx616&amp;diff=723861</id>
		<title>MDR:zx616</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=MDR:zx616&amp;diff=723861"/>
		<updated>2018-05-18T16:38:09Z</updated>

		<summary type="html">&lt;p&gt;Zx616: /* Exercise 1: H+H2 system */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&amp;lt;b&amp;gt;Exercise 1: H+H2 system==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|What value do the different components of the gradient of the potential energy surface have at a minimum and at a transition structure? Briefly explain how minima and transition structures can be distinguished using the curvature of the potential energy surface.}}&lt;br /&gt;
&lt;br /&gt;
The transition state can be determined by looking at the surface plot. The saddle point is believed to be the place where Transition state is located at (0.40,0.40, -97). This is considered to be the transition state because the partial derivative of both AB and BC distances give a minimum, and the partial derivative of reaction coordinate and energy give a maximum. This is confirmed by checking whether the place is inside the reaction coordinate. Since r1=r2, this place is believed to be the transition state.&lt;br /&gt;
[[File:energy1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Report your best estimate of the transition state position (&#039;&#039;&#039;r&amp;lt;sub&amp;gt;ts&amp;lt;/sub&amp;gt;&#039;&#039;&#039;) and explain your reasoning illustrating it with a “Internuclear Distances vs Time” plot for a relevant trajectory.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When r1=r2, with p1=p2=0 (since the gradient is 0), this is where TS is located. By adjusting proper values, r=0.908. This is backed up by looking at the internuclear distance vs time graph where BC and AC distance does not change over time, only atomic vibration occurs. When there is no oscillation within molecules and between atoms, TS is achieved. &lt;br /&gt;
&lt;br /&gt;
[[File:inter1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Comment on how the &#039;&#039;mep&#039;&#039; and the trajectory you just calculated differ.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When MEP calculation is done, one will see that the line becomes smoother than Dynamic in surface plot, in which molecules are believed to oscillate. Therefore one can conclude that MEP is suitable for providing a macro picture of a reaction whereas the Dynamic provides a detailed behaviors of atoms in a reaction.&lt;br /&gt;
&lt;br /&gt;
[[File:contdyn.PNG|thumb|A dynamic calculation|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:contmep.PNG|thumb|A MEP calculation|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Intermolecular momenta vs time: for MEP the line becomes a flat line compare to Dynamic where lines are oscillating;&lt;br /&gt;
&lt;br /&gt;
Intermolecular distance vs time: for MEP the graph becomes a curved line compare to dynamic where they are straight lines with positive gradients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Complete the table by adding a column with the total energy, and another column reporting if the trajectory is reactive or unreactive. For each set of initial conditions, provide a plot of the trajectory and a small description for what happens along the trajectory.}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ Table&lt;br /&gt;
! p1 !! p2 !! Total Energy !! Reactive/Unreactive !! Description&lt;br /&gt;
|-&lt;br /&gt;
| -1.25|| -2.5 || -99.018 || Reactive || [[File:Des1.png | 175px]] Atom C moving towards A-B and form a new bond B-C and then move away with vibration.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.0 || -100.456 || Unreactive || [[File:Des2.PNG | 175px]] Atom C moving towards vibrating A-B, but does not have enough kinetic and potential energy to overcome the Ea barrier, therefore the reaction is unreactive.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.5 || -98.956|| Reactive|| [[File:Des3.PNG | 175px]] This reaction is reactive. It follows the similar path with No.1 but atom C is also vibrating while moving towards A-B&lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.0 || -84.956|| Unreactive|| [[File:4.PNG | 175px]] H-H bond has very large energy that allows the transition state to form, but when single atom H comes in, it also possesses a large momentum that bounces the reactants back to be regenerated. &lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.2 || -83.416|| Reactive|| [[File:Des5.PNG | 175px]] The single atom C is able to form a H-H bond with B but has such large vibrational energy that it collides again with A, and then &amp;quot;re-crossed&amp;quot; back to form B-C and moves in opposite direction&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|State what are the main assumptions of Transition State Theory. Given the results you have obtained, how will Transition State Theory predictions for reaction rate values compare with experimental values?}}&lt;br /&gt;
&lt;br /&gt;
Assumptions:&lt;br /&gt;
&lt;br /&gt;
Firstly, Transition State Theory (TST) assumes that the reactants are in equilibrium with the transition state, but in reality, due to both kinetic and thermodynamic reasons. Some reactions proceed via an intermediate, which does not fit in Hammond&#039;s postulate.&lt;br /&gt;
&lt;br /&gt;
Secondly, TST assumes that all molecules in TS are long-lived enough to reach Boltzmann&#039;s distribution before forming the product, this is very limited. When molecules of such have a short half life, the TST predicted products are not necessarily correct in its selectivities.&lt;br /&gt;
&lt;br /&gt;
Last but not least, TST assumes that  ΔH0=Ea, whereas a more reliable consideration is  ΔH0=ΔU0 + RT. The assumption fails to take into account how TS will behave under the change in temperature but the modified version takes that into account and makes the model more reliable.&lt;br /&gt;
&lt;br /&gt;
==Exercise 2==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Classify the F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; and H + HF reactions according to their energetics (endothermic or exothermic). How does this relate to the bond strength of the chemical species involved?}}&lt;br /&gt;
&lt;br /&gt;
F+H2 is exothermic. As seen from the PES plot, from B-C to A-B involves a release of energy from ca. -130 to ca. -110.&lt;br /&gt;
&lt;br /&gt;
H-H bond strength is less than that of F-H, the formation of a F-H bond compensates the breaking of one H-H bond. Therefore it is exothermic.&lt;br /&gt;
&lt;br /&gt;
H+HF is endothermic because of the similar reasons. From B-C to A-B involves a absorption of energy from ca. -110 to ca. -130.&lt;br /&gt;
&lt;br /&gt;
the breaking of a strong H-F bond cannot be compensated by the formation of a relatively weaker H-H bond, so it is endothermic. &lt;br /&gt;
&lt;br /&gt;
comparison of bond strength: H-H: 432 kJ/mol; H-F: 565 kJ/mol, matches the observations from the plots. &lt;br /&gt;
&lt;br /&gt;
ref:http://www.wiredchemist.com/chemistry/data/bond_energies_lengths.html&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Locate the approximate position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
The position of TS is located to be r(F-H)=1.810 and r(H-H)=0.745 for F + H2 and r(H-H)=1.810 and r(F-H)=0.745 for H + FH. This is confirmed by viewing the Internuclear distances vs time plot being three horizontal lines and the surface plot with one single dot on the saddle &amp;quot;line&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:fhh1.PNG]]&lt;br /&gt;
[[File:fhh2.PNG]]&lt;br /&gt;
&lt;br /&gt;
Comments: The first plot identifies the saddle point at given initial conditions, confirming those conditions represent the transition state. The second graph illustrated no vibrations between three molecules, meaning they are at the furthest they can be without losing interactions, confirms again that these conditions fulfill a transition state. Similar approaches were used to determine the transition state for the second reaction. In order to achieve satisfactory initial conditions, trail and errors were carried out in accordance with the relevant knowledge from bond strengths.&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Report the activation energy for both reactions.}}&lt;br /&gt;
&lt;br /&gt;
To determine the activation energy, the energy of transition state was used to minus the energy of the reactants to give activation energy. A MEP plot was done to determine the energy of transition state precisely. And by slightly increasing and decreasing the distance of F-H in the transition state, the energy of the reactants can be determined too.&lt;br /&gt;
&lt;br /&gt;
For F+H2, the activation energy is reported to be 0.20 kCal/mol and for that of H+FH it is reported to be 30.2 kCal/mol&lt;br /&gt;
&lt;br /&gt;
 {{fontcolor1|red|In light of the fact that energy is conserved, discuss the mechanism of release of the reaction energy. How could this be confirmed experimentally?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A set of reactive initial condition for F + H2 is r(F-H)=1.810, r(H-H)=0.745, p(FH)=-1 and p(HH)=-2. It can be clearly see that in the beginning of the reaction, i.e. 0-0.5s, the energy was stored in H-H bond, conversly F-H bond shows no momentum. However, as the reaction goes through, at around 1s sees the exchange of the energy between two bonds. 1.25 seconds shows a converge trend of F-H and H-H momenta, marked the successful transfer of energy. In the end, the amplitude of F-H bond momentum increases as a result of the decrease of H-H bond. Overall, the potential energy was converted to vibrational energy, because of the momenta of B-C and A-C are positive, means that the molecules and the hydrogen atom are moving away from each other. A calorimeter can be used to monitor the energy changes during the reaction. See below a graph of momenta vs time graph for confirmation.&lt;br /&gt;
&lt;br /&gt;
[[File:mvt.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Setup a calculation starting on the side of the reactants of F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;, at the bottom of the well r&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.74, with a momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.5, and explore several values of p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; in the range -3 to 3 (explore values also close to these limits). What do you observe?}}&lt;br /&gt;
&lt;br /&gt;
When exploring the variation of p(HH) from -3 to 3. The reaction becomes successful when the momentum of H-H is around -1, and becomes unsuccessful above 1. This suggests that momentum is a vector, and it does not matter whether the sign is positive or negative, simply just a direction. The magnitude however, suggests that only a small momentum of H-H should be use so that it does not surplus the threshold of around |2|. If p(H-H) is greater than that of F-H, hydrogen molecules will tend to stay together rather than forming a new bond with Fluorine atom. Some examples of successful and unsuccessful reactions are shown below.&lt;br /&gt;
&lt;br /&gt;
[[File:sc0.5.PNG]]&lt;br /&gt;
[[File:sc-1.PNG]]&lt;br /&gt;
[[File:sc-2.5.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red| For the same initial position, increase slightly the momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.8, and considerably reduce the overall energy of the system by reducing the momentum p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.1. What do you observe now?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When energy is reduced considerably and the momentum of F-H is increased slightly, there is a dilemma that the activation energy for the product to form is not enough because the single hydrogen atom does not have enough kinetic energy to move away from the complex, i.e.this situation may happen in the very beginning of the transition state. The reaction is still feasible.&lt;br /&gt;
&lt;br /&gt;
[[File:sc0.1.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Discuss how the distribution of energy between different modes (translation and vibration) affect the efficiency of the reaction, and how this is influenced by the position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quantity of momenta were kept at 10.  According to Polanyi&#039;s rule, for a late TS reaction, vibrational is more effective to overcome the barrier than kinetic energy. Therefore, for this reaction, it&#039;s endothermic so a late TS state, therefore, increase in p(H-F) facilitates the reaction.&lt;br /&gt;
&lt;br /&gt;
ref:http://brouard.chem.ox.ac.uk/teaching/dynlectures4to6.pdf&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=MDR:zx616&amp;diff=723857</id>
		<title>MDR:zx616</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=MDR:zx616&amp;diff=723857"/>
		<updated>2018-05-18T16:37:48Z</updated>

		<summary type="html">&lt;p&gt;Zx616: /* Exercise 1: H+H2 system */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&amp;lt;b&amp;gt;Exercise 1: H+H2 system==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|What value do the different components of the gradient of the potential energy surface have at a minimum and at a transition structure? Briefly explain how minima and transition structures can be distinguished using the curvature of the potential energy surface.}}&lt;br /&gt;
&lt;br /&gt;
The transition state can be determined by looking at the surface plot. The saddle point is believed to be the place where Transition state is located at (0.40,0.40, -97). This is considered to be the transition state because the partial derivative of both AB and BC distances give a minimum, and the partial derivative of reaction coordinate and energy give a maximum. This is confirmed by checking whether the place is inside the reaction coordinate. Since r1=r2, this place is believed to be the transition state.&lt;br /&gt;
[[File:energy1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Report your best estimate of the transition state position (&#039;&#039;&#039;r&amp;lt;sub&amp;gt;ts&amp;lt;/sub&amp;gt;&#039;&#039;&#039;) and explain your reasoning illustrating it with a “Internuclear Distances vs Time” plot for a relevant trajectory.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When r1=r2, with p1=p2=0 (since the gradient is 0), this is where TS is located. By adjusting proper values, r=0.908. This is backed up by looking at the internuclear distance vs time graph where BC and AC distance does not change over time, only atomic vibration occurs. When there is no oscillation within molecules and between atoms, TS is achieved. &lt;br /&gt;
&lt;br /&gt;
[[File:inter1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Comment on how the &#039;&#039;mep&#039;&#039; and the trajectory you just calculated differ.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When MEP calculation is done, one will see that the line becomes smoother than Dynamic in surface plot, in which molecules are believed to oscillate. Therefore one can conclude that MEP is suitable for providing a macro picture of a reaction whereas the Dynamic provides a detailed behaviors of atoms in a reaction.&lt;br /&gt;
&lt;br /&gt;
[[File:contdyn.PNG|thumb|A dynamic calculation|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:contmep.PNG|thumb|A MEP calculation|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Intermolecular momenta vs time: for MEP the line becomes a flat line compare to Dynamic where lines are oscillating;&lt;br /&gt;
&lt;br /&gt;
Intermolecular distance vs time: for MEP the graph becomes a curved line compare to dynamic where they are straight lines with positive gradients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Complete the table by adding a column with the total energy, and another column reporting if the trajectory is reactive or unreactive. For each set of initial conditions, provide a plot of the trajectory and a small description for what happens along the trajectory.}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ Table&lt;br /&gt;
! p1 !! p2 !! Total Energy !! Reactive/Unreactive !! Description&lt;br /&gt;
|-&lt;br /&gt;
| -1.25|| -2.5 || -99.018 || Reactive || [[File:Des1.png | 175px]] Atom C moving towards A-B and form a new bond B-C and then move away with vibration.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.0 || -100.456 || Unreactive || [[File:Des2.PNG | 175px]] Atom C moving towards vibrating A-B, but does not have enough kinetic and potential energy to overcome the Ea barrier, therefore the reaction is unreactive.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.5 || -98.956|| Reactive|| [[File:Des3.PNG | 175px]] This reaction is reactive. It follows the similar path with No.1 but atom C is also vibrating while moving towards A-B&lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.0 || -84.956|| Unreactive|| [[File:4.PNG | 175px]] H-H bond has very large energy that allows the transition state to form, but when single atom H comes in, it also possesses a large momentum that bounces the reactants back to be regenerated. &lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.2 || -83.416|| Reactive|| [[File:Des5.PNG | 175px]] The single atom C is able to form a H-H bond with B but has such large vibrational energy that it collides again with A, and then &amp;quot;re-crossed&amp;quot; back to form B-C and moves in opposite direction&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|State what are the main assumptions of Transition State Theory. Given the results you have obtained, how will Transition State Theory predictions for reaction rate values compare with experimental values?}}&lt;br /&gt;
&lt;br /&gt;
Assumptions:&lt;br /&gt;
&lt;br /&gt;
Firstly, Transition State Theory (TST) assumes that the reactants are in equilibrium with the transition state, but in reality, due to both kinetic and thermodynamic reasons. Some reactions proceed via an intermediate, which does not fit in Hammond&#039;s postulate.&lt;br /&gt;
&lt;br /&gt;
Secondly, TST assumes that all molecules in TS are long-lived enough to reach Boltzmann&#039;s distribution before forming the product, this is very limited. When molecules of such have a short half life, the TST predicted products are not necessarily correct in its selectivities.&lt;br /&gt;
&lt;br /&gt;
Last but not least, TST assumes that  ΔH0=Ea, whereas a more reliable consideration is  ΔH0=ΔU0 + RT. The assumption fails to take into account how TS will behave under the change in temperature but the modified version takes that into account and makes the model more reliable.&lt;br /&gt;
&lt;br /&gt;
==Exercise 2==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Classify the F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; and H + HF reactions according to their energetics (endothermic or exothermic). How does this relate to the bond strength of the chemical species involved?}}&lt;br /&gt;
&lt;br /&gt;
F+H2 is exothermic. As seen from the PES plot, from B-C to A-B involves a release of energy from ca. -130 to ca. -110.&lt;br /&gt;
&lt;br /&gt;
H-H bond strength is less than that of F-H, the formation of a F-H bond compensates the breaking of one H-H bond. Therefore it is exothermic.&lt;br /&gt;
&lt;br /&gt;
H+HF is endothermic because of the similar reasons. From B-C to A-B involves a absorption of energy from ca. -110 to ca. -130.&lt;br /&gt;
&lt;br /&gt;
the breaking of a strong H-F bond cannot be compensated by the formation of a relatively weaker H-H bond, so it is endothermic. &lt;br /&gt;
&lt;br /&gt;
comparison of bond strength: H-H: 432 kJ/mol; H-F: 565 kJ/mol, matches the observations from the plots. &lt;br /&gt;
&lt;br /&gt;
ref:http://www.wiredchemist.com/chemistry/data/bond_energies_lengths.html&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Locate the approximate position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
The position of TS is located to be r(F-H)=1.810 and r(H-H)=0.745 for F + H2 and r(H-H)=1.810 and r(F-H)=0.745 for H + FH. This is confirmed by viewing the Internuclear distances vs time plot being three horizontal lines and the surface plot with one single dot on the saddle &amp;quot;line&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:fhh1.PNG]]&lt;br /&gt;
[[File:fhh2.PNG]]&lt;br /&gt;
&lt;br /&gt;
Comments: The first plot identifies the saddle point at given initial conditions, confirming those conditions represent the transition state. The second graph illustrated no vibrations between three molecules, meaning they are at the furthest they can be without losing interactions, confirms again that these conditions fulfill a transition state. Similar approaches were used to determine the transition state for the second reaction. In order to achieve satisfactory initial conditions, trail and errors were carried out in accordance with the relevant knowledge from bond strengths.&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Report the activation energy for both reactions.}}&lt;br /&gt;
&lt;br /&gt;
To determine the activation energy, the energy of transition state was used to minus the energy of the reactants to give activation energy. A MEP plot was done to determine the energy of transition state precisely. And by slightly increasing and decreasing the distance of F-H in the transition state, the energy of the reactants can be determined too.&lt;br /&gt;
&lt;br /&gt;
For F+H2, the activation energy is reported to be 0.20 kCal/mol and for that of H+FH it is reported to be 30.2 kCal/mol&lt;br /&gt;
&lt;br /&gt;
 {{fontcolor1|red|In light of the fact that energy is conserved, discuss the mechanism of release of the reaction energy. How could this be confirmed experimentally?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A set of reactive initial condition for F + H2 is r(F-H)=1.810, r(H-H)=0.745, p(FH)=-1 and p(HH)=-2. It can be clearly see that in the beginning of the reaction, i.e. 0-0.5s, the energy was stored in H-H bond, conversly F-H bond shows no momentum. However, as the reaction goes through, at around 1s sees the exchange of the energy between two bonds. 1.25 seconds shows a converge trend of F-H and H-H momenta, marked the successful transfer of energy. In the end, the amplitude of F-H bond momentum increases as a result of the decrease of H-H bond. Overall, the potential energy was converted to vibrational energy, because of the momenta of B-C and A-C are positive, means that the molecules and the hydrogen atom are moving away from each other. A calorimeter can be used to monitor the energy changes during the reaction. See below a graph of momenta vs time graph for confirmation.&lt;br /&gt;
&lt;br /&gt;
[[File:mvt.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Setup a calculation starting on the side of the reactants of F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;, at the bottom of the well r&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.74, with a momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.5, and explore several values of p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; in the range -3 to 3 (explore values also close to these limits). What do you observe?}}&lt;br /&gt;
&lt;br /&gt;
When exploring the variation of p(HH) from -3 to 3. The reaction becomes successful when the momentum of H-H is around -1, and becomes unsuccessful above 1. This suggests that momentum is a vector, and it does not matter whether the sign is positive or negative, simply just a direction. The magnitude however, suggests that only a small momentum of H-H should be use so that it does not surplus the threshold of around |2|. If p(H-H) is greater than that of F-H, hydrogen molecules will tend to stay together rather than forming a new bond with Fluorine atom. Some examples of successful and unsuccessful reactions are shown below.&lt;br /&gt;
&lt;br /&gt;
[[File:sc0.5.PNG]]&lt;br /&gt;
[[File:sc-1.PNG]]&lt;br /&gt;
[[File:sc-2.5.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red| For the same initial position, increase slightly the momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.8, and considerably reduce the overall energy of the system by reducing the momentum p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.1. What do you observe now?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When energy is reduced considerably and the momentum of F-H is increased slightly, there is a dilemma that the activation energy for the product to form is not enough because the single hydrogen atom does not have enough kinetic energy to move away from the complex, i.e.this situation may happen in the very beginning of the transition state. The reaction is still feasible.&lt;br /&gt;
&lt;br /&gt;
[[File:sc0.1.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Discuss how the distribution of energy between different modes (translation and vibration) affect the efficiency of the reaction, and how this is influenced by the position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quantity of momenta were kept at 10.  According to Polanyi&#039;s rule, for a late TS reaction, vibrational is more effective to overcome the barrier than kinetic energy. Therefore, for this reaction, it&#039;s endothermic so a late TS state, therefore, increase in p(H-F) facilitates the reaction.&lt;br /&gt;
&lt;br /&gt;
ref:http://brouard.chem.ox.ac.uk/teaching/dynlectures4to6.pdf&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=MDR:zx616&amp;diff=723854</id>
		<title>MDR:zx616</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=MDR:zx616&amp;diff=723854"/>
		<updated>2018-05-18T16:37:33Z</updated>

		<summary type="html">&lt;p&gt;Zx616: /* Exercise 1: H+H2 system */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&amp;lt;b&amp;gt;Exercise 1: H+H2 system==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|What value do the different components of the gradient of the potential energy surface have at a minimum and at a transition structure? Briefly explain how minima and transition structures can be distinguished using the curvature of the potential energy surface.}}&lt;br /&gt;
&lt;br /&gt;
The transition state can be determined by looking at the surface plot. The saddle point is believed to be the place where Transition state is located at (0.40,0.40, -97). This is considered to be the transition state because the partial derivative of both AB and BC distances give a minimum, and the partial derivative of reaction coordinate and energy give a maximum. This is confirmed by checking whether the place is inside the reaction coordinate. Since r1=r2, this place is believed to be the transition state.&lt;br /&gt;
[[File:energy1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Report your best estimate of the transition state position (&#039;&#039;&#039;r&amp;lt;sub&amp;gt;ts&amp;lt;/sub&amp;gt;&#039;&#039;&#039;) and explain your reasoning illustrating it with a “Internuclear Distances vs Time” plot for a relevant trajectory.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When r1=r2, with p1=p2=0 (since the gradient is 0), this is where TS is located. By adjusting proper values, r=0.908. This is backed up by looking at the internuclear distance vs time graph where BC and AC distance does not change over time, only atomic vibration occurs. When there is no oscillation within molecules and between atoms, TS is achieved. &lt;br /&gt;
&lt;br /&gt;
[[File:inter1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Comment on how the &#039;&#039;mep&#039;&#039; and the trajectory you just calculated differ.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When MEP calculation is done, one will see that the line becomes smoother than Dynamic in surface plot, in which molecules are believed to oscillate. Therefore one can conclude that MEP is suitable for providing a macro picture of a reaction whereas the Dynamic provides a detailed behaviors of atoms in a reaction.&lt;br /&gt;
&lt;br /&gt;
[[File:contdyn.PNG|thumb|A dynamic calculation|200px]]&lt;br /&gt;
[[File:contmep.PNG|thumb|A MEP calculation|200px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Intermolecular momenta vs time: for MEP the line becomes a flat line compare to Dynamic where lines are oscillating;&lt;br /&gt;
&lt;br /&gt;
Intermolecular distance vs time: for MEP the graph becomes a curved line compare to dynamic where they are straight lines with positive gradients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Complete the table by adding a column with the total energy, and another column reporting if the trajectory is reactive or unreactive. For each set of initial conditions, provide a plot of the trajectory and a small description for what happens along the trajectory.}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ Table&lt;br /&gt;
! p1 !! p2 !! Total Energy !! Reactive/Unreactive !! Description&lt;br /&gt;
|-&lt;br /&gt;
| -1.25|| -2.5 || -99.018 || Reactive || [[File:Des1.png | 175px]] Atom C moving towards A-B and form a new bond B-C and then move away with vibration.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.0 || -100.456 || Unreactive || [[File:Des2.PNG | 175px]] Atom C moving towards vibrating A-B, but does not have enough kinetic and potential energy to overcome the Ea barrier, therefore the reaction is unreactive.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.5 || -98.956|| Reactive|| [[File:Des3.PNG | 175px]] This reaction is reactive. It follows the similar path with No.1 but atom C is also vibrating while moving towards A-B&lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.0 || -84.956|| Unreactive|| [[File:4.PNG | 175px]] H-H bond has very large energy that allows the transition state to form, but when single atom H comes in, it also possesses a large momentum that bounces the reactants back to be regenerated. &lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.2 || -83.416|| Reactive|| [[File:Des5.PNG | 175px]] The single atom C is able to form a H-H bond with B but has such large vibrational energy that it collides again with A, and then &amp;quot;re-crossed&amp;quot; back to form B-C and moves in opposite direction&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|State what are the main assumptions of Transition State Theory. Given the results you have obtained, how will Transition State Theory predictions for reaction rate values compare with experimental values?}}&lt;br /&gt;
&lt;br /&gt;
Assumptions:&lt;br /&gt;
&lt;br /&gt;
Firstly, Transition State Theory (TST) assumes that the reactants are in equilibrium with the transition state, but in reality, due to both kinetic and thermodynamic reasons. Some reactions proceed via an intermediate, which does not fit in Hammond&#039;s postulate.&lt;br /&gt;
&lt;br /&gt;
Secondly, TST assumes that all molecules in TS are long-lived enough to reach Boltzmann&#039;s distribution before forming the product, this is very limited. When molecules of such have a short half life, the TST predicted products are not necessarily correct in its selectivities.&lt;br /&gt;
&lt;br /&gt;
Last but not least, TST assumes that  ΔH0=Ea, whereas a more reliable consideration is  ΔH0=ΔU0 + RT. The assumption fails to take into account how TS will behave under the change in temperature but the modified version takes that into account and makes the model more reliable.&lt;br /&gt;
&lt;br /&gt;
==Exercise 2==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Classify the F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; and H + HF reactions according to their energetics (endothermic or exothermic). How does this relate to the bond strength of the chemical species involved?}}&lt;br /&gt;
&lt;br /&gt;
F+H2 is exothermic. As seen from the PES plot, from B-C to A-B involves a release of energy from ca. -130 to ca. -110.&lt;br /&gt;
&lt;br /&gt;
H-H bond strength is less than that of F-H, the formation of a F-H bond compensates the breaking of one H-H bond. Therefore it is exothermic.&lt;br /&gt;
&lt;br /&gt;
H+HF is endothermic because of the similar reasons. From B-C to A-B involves a absorption of energy from ca. -110 to ca. -130.&lt;br /&gt;
&lt;br /&gt;
the breaking of a strong H-F bond cannot be compensated by the formation of a relatively weaker H-H bond, so it is endothermic. &lt;br /&gt;
&lt;br /&gt;
comparison of bond strength: H-H: 432 kJ/mol; H-F: 565 kJ/mol, matches the observations from the plots. &lt;br /&gt;
&lt;br /&gt;
ref:http://www.wiredchemist.com/chemistry/data/bond_energies_lengths.html&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Locate the approximate position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
The position of TS is located to be r(F-H)=1.810 and r(H-H)=0.745 for F + H2 and r(H-H)=1.810 and r(F-H)=0.745 for H + FH. This is confirmed by viewing the Internuclear distances vs time plot being three horizontal lines and the surface plot with one single dot on the saddle &amp;quot;line&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:fhh1.PNG]]&lt;br /&gt;
[[File:fhh2.PNG]]&lt;br /&gt;
&lt;br /&gt;
Comments: The first plot identifies the saddle point at given initial conditions, confirming those conditions represent the transition state. The second graph illustrated no vibrations between three molecules, meaning they are at the furthest they can be without losing interactions, confirms again that these conditions fulfill a transition state. Similar approaches were used to determine the transition state for the second reaction. In order to achieve satisfactory initial conditions, trail and errors were carried out in accordance with the relevant knowledge from bond strengths.&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Report the activation energy for both reactions.}}&lt;br /&gt;
&lt;br /&gt;
To determine the activation energy, the energy of transition state was used to minus the energy of the reactants to give activation energy. A MEP plot was done to determine the energy of transition state precisely. And by slightly increasing and decreasing the distance of F-H in the transition state, the energy of the reactants can be determined too.&lt;br /&gt;
&lt;br /&gt;
For F+H2, the activation energy is reported to be 0.20 kCal/mol and for that of H+FH it is reported to be 30.2 kCal/mol&lt;br /&gt;
&lt;br /&gt;
 {{fontcolor1|red|In light of the fact that energy is conserved, discuss the mechanism of release of the reaction energy. How could this be confirmed experimentally?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A set of reactive initial condition for F + H2 is r(F-H)=1.810, r(H-H)=0.745, p(FH)=-1 and p(HH)=-2. It can be clearly see that in the beginning of the reaction, i.e. 0-0.5s, the energy was stored in H-H bond, conversly F-H bond shows no momentum. However, as the reaction goes through, at around 1s sees the exchange of the energy between two bonds. 1.25 seconds shows a converge trend of F-H and H-H momenta, marked the successful transfer of energy. In the end, the amplitude of F-H bond momentum increases as a result of the decrease of H-H bond. Overall, the potential energy was converted to vibrational energy, because of the momenta of B-C and A-C are positive, means that the molecules and the hydrogen atom are moving away from each other. A calorimeter can be used to monitor the energy changes during the reaction. See below a graph of momenta vs time graph for confirmation.&lt;br /&gt;
&lt;br /&gt;
[[File:mvt.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Setup a calculation starting on the side of the reactants of F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;, at the bottom of the well r&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.74, with a momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.5, and explore several values of p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; in the range -3 to 3 (explore values also close to these limits). What do you observe?}}&lt;br /&gt;
&lt;br /&gt;
When exploring the variation of p(HH) from -3 to 3. The reaction becomes successful when the momentum of H-H is around -1, and becomes unsuccessful above 1. This suggests that momentum is a vector, and it does not matter whether the sign is positive or negative, simply just a direction. The magnitude however, suggests that only a small momentum of H-H should be use so that it does not surplus the threshold of around |2|. If p(H-H) is greater than that of F-H, hydrogen molecules will tend to stay together rather than forming a new bond with Fluorine atom. Some examples of successful and unsuccessful reactions are shown below.&lt;br /&gt;
&lt;br /&gt;
[[File:sc0.5.PNG]]&lt;br /&gt;
[[File:sc-1.PNG]]&lt;br /&gt;
[[File:sc-2.5.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red| For the same initial position, increase slightly the momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.8, and considerably reduce the overall energy of the system by reducing the momentum p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.1. What do you observe now?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When energy is reduced considerably and the momentum of F-H is increased slightly, there is a dilemma that the activation energy for the product to form is not enough because the single hydrogen atom does not have enough kinetic energy to move away from the complex, i.e.this situation may happen in the very beginning of the transition state. The reaction is still feasible.&lt;br /&gt;
&lt;br /&gt;
[[File:sc0.1.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Discuss how the distribution of energy between different modes (translation and vibration) affect the efficiency of the reaction, and how this is influenced by the position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quantity of momenta were kept at 10.  According to Polanyi&#039;s rule, for a late TS reaction, vibrational is more effective to overcome the barrier than kinetic energy. Therefore, for this reaction, it&#039;s endothermic so a late TS state, therefore, increase in p(H-F) facilitates the reaction.&lt;br /&gt;
&lt;br /&gt;
ref:http://brouard.chem.ox.ac.uk/teaching/dynlectures4to6.pdf&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=MDR:zx616&amp;diff=723851</id>
		<title>MDR:zx616</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=MDR:zx616&amp;diff=723851"/>
		<updated>2018-05-18T16:36:33Z</updated>

		<summary type="html">&lt;p&gt;Zx616: /* Exercise 1: H+H2 system */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&amp;lt;b&amp;gt;Exercise 1: H+H2 system==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|What value do the different components of the gradient of the potential energy surface have at a minimum and at a transition structure? Briefly explain how minima and transition structures can be distinguished using the curvature of the potential energy surface.}}&lt;br /&gt;
&lt;br /&gt;
The transition state can be determined by looking at the surface plot. The saddle point is believed to be the place where Transition state is located at (0.40,0.40, -97). This is considered to be the transition state because the partial derivative of both AB and BC distances give a minimum, and the partial derivative of reaction coordinate and energy give a maximum. This is confirmed by checking whether the place is inside the reaction coordinate. Since r1=r2, this place is believed to be the transition state.&lt;br /&gt;
[[File:energy1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Report your best estimate of the transition state position (&#039;&#039;&#039;r&amp;lt;sub&amp;gt;ts&amp;lt;/sub&amp;gt;&#039;&#039;&#039;) and explain your reasoning illustrating it with a “Internuclear Distances vs Time” plot for a relevant trajectory.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When r1=r2, with p1=p2=0 (since the gradient is 0), this is where TS is located. By adjusting proper values, r=0.908. This is backed up by looking at the internuclear distance vs time graph where BC and AC distance does not change over time, only atomic vibration occurs. When there is no oscillation within molecules and between atoms, TS is achieved. &lt;br /&gt;
&lt;br /&gt;
[[File:inter1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Comment on how the &#039;&#039;mep&#039;&#039; and the trajectory you just calculated differ.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When MEP calculation is done, one will see that the line becomes smoother than Dynamic in surface plot, in which molecules are believed to oscillate. Therefore one can conclude that MEP is suitable for providing a macro picture of a reaction whereas the Dynamic provides a detailed behaviors of atoms in a reaction.&lt;br /&gt;
&lt;br /&gt;
[[File:contdyn.PNG|thumb|A dynamic calculation]]&lt;br /&gt;
[[File:contmep.PNG|thumb|A MEP calculation]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Intermolecular momenta vs time: for MEP the line becomes a flat line compare to Dynamic where lines are oscillating;&lt;br /&gt;
&lt;br /&gt;
Intermolecular distance vs time: for MEP the graph becomes a curved line compare to dynamic where they are straight lines with positive gradients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Complete the table by adding a column with the total energy, and another column reporting if the trajectory is reactive or unreactive. For each set of initial conditions, provide a plot of the trajectory and a small description for what happens along the trajectory.}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ Table&lt;br /&gt;
! p1 !! p2 !! Total Energy !! Reactive/Unreactive !! Description&lt;br /&gt;
|-&lt;br /&gt;
| -1.25|| -2.5 || -99.018 || Reactive || [[File:Des1.png | 175px]] Atom C moving towards A-B and form a new bond B-C and then move away with vibration.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.0 || -100.456 || Unreactive || [[File:Des2.PNG | 175px]] Atom C moving towards vibrating A-B, but does not have enough kinetic and potential energy to overcome the Ea barrier, therefore the reaction is unreactive.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.5 || -98.956|| Reactive|| [[File:Des3.PNG | 175px]] This reaction is reactive. It follows the similar path with No.1 but atom C is also vibrating while moving towards A-B&lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.0 || -84.956|| Unreactive|| [[File:4.PNG | 175px]] H-H bond has very large energy that allows the transition state to form, but when single atom H comes in, it also possesses a large momentum that bounces the reactants back to be regenerated. &lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.2 || -83.416|| Reactive|| [[File:Des5.PNG | 175px]] The single atom C is able to form a H-H bond with B but has such large vibrational energy that it collides again with A, and then &amp;quot;re-crossed&amp;quot; back to form B-C and moves in opposite direction&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|State what are the main assumptions of Transition State Theory. Given the results you have obtained, how will Transition State Theory predictions for reaction rate values compare with experimental values?}}&lt;br /&gt;
&lt;br /&gt;
Assumptions:&lt;br /&gt;
&lt;br /&gt;
Firstly, Transition State Theory (TST) assumes that the reactants are in equilibrium with the transition state, but in reality, due to both kinetic and thermodynamic reasons. Some reactions proceed via an intermediate, which does not fit in Hammond&#039;s postulate.&lt;br /&gt;
&lt;br /&gt;
Secondly, TST assumes that all molecules in TS are long-lived enough to reach Boltzmann&#039;s distribution before forming the product, this is very limited. When molecules of such have a short half life, the TST predicted products are not necessarily correct in its selectivities.&lt;br /&gt;
&lt;br /&gt;
Last but not least, TST assumes that  ΔH0=Ea, whereas a more reliable consideration is  ΔH0=ΔU0 + RT. The assumption fails to take into account how TS will behave under the change in temperature but the modified version takes that into account and makes the model more reliable.&lt;br /&gt;
&lt;br /&gt;
==Exercise 2==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Classify the F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; and H + HF reactions according to their energetics (endothermic or exothermic). How does this relate to the bond strength of the chemical species involved?}}&lt;br /&gt;
&lt;br /&gt;
F+H2 is exothermic. As seen from the PES plot, from B-C to A-B involves a release of energy from ca. -130 to ca. -110.&lt;br /&gt;
&lt;br /&gt;
H-H bond strength is less than that of F-H, the formation of a F-H bond compensates the breaking of one H-H bond. Therefore it is exothermic.&lt;br /&gt;
&lt;br /&gt;
H+HF is endothermic because of the similar reasons. From B-C to A-B involves a absorption of energy from ca. -110 to ca. -130.&lt;br /&gt;
&lt;br /&gt;
the breaking of a strong H-F bond cannot be compensated by the formation of a relatively weaker H-H bond, so it is endothermic. &lt;br /&gt;
&lt;br /&gt;
comparison of bond strength: H-H: 432 kJ/mol; H-F: 565 kJ/mol, matches the observations from the plots. &lt;br /&gt;
&lt;br /&gt;
ref:http://www.wiredchemist.com/chemistry/data/bond_energies_lengths.html&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Locate the approximate position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
The position of TS is located to be r(F-H)=1.810 and r(H-H)=0.745 for F + H2 and r(H-H)=1.810 and r(F-H)=0.745 for H + FH. This is confirmed by viewing the Internuclear distances vs time plot being three horizontal lines and the surface plot with one single dot on the saddle &amp;quot;line&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:fhh1.PNG]]&lt;br /&gt;
[[File:fhh2.PNG]]&lt;br /&gt;
&lt;br /&gt;
Comments: The first plot identifies the saddle point at given initial conditions, confirming those conditions represent the transition state. The second graph illustrated no vibrations between three molecules, meaning they are at the furthest they can be without losing interactions, confirms again that these conditions fulfill a transition state. Similar approaches were used to determine the transition state for the second reaction. In order to achieve satisfactory initial conditions, trail and errors were carried out in accordance with the relevant knowledge from bond strengths.&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Report the activation energy for both reactions.}}&lt;br /&gt;
&lt;br /&gt;
To determine the activation energy, the energy of transition state was used to minus the energy of the reactants to give activation energy. A MEP plot was done to determine the energy of transition state precisely. And by slightly increasing and decreasing the distance of F-H in the transition state, the energy of the reactants can be determined too.&lt;br /&gt;
&lt;br /&gt;
For F+H2, the activation energy is reported to be 0.20 kCal/mol and for that of H+FH it is reported to be 30.2 kCal/mol&lt;br /&gt;
&lt;br /&gt;
 {{fontcolor1|red|In light of the fact that energy is conserved, discuss the mechanism of release of the reaction energy. How could this be confirmed experimentally?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A set of reactive initial condition for F + H2 is r(F-H)=1.810, r(H-H)=0.745, p(FH)=-1 and p(HH)=-2. It can be clearly see that in the beginning of the reaction, i.e. 0-0.5s, the energy was stored in H-H bond, conversly F-H bond shows no momentum. However, as the reaction goes through, at around 1s sees the exchange of the energy between two bonds. 1.25 seconds shows a converge trend of F-H and H-H momenta, marked the successful transfer of energy. In the end, the amplitude of F-H bond momentum increases as a result of the decrease of H-H bond. Overall, the potential energy was converted to vibrational energy, because of the momenta of B-C and A-C are positive, means that the molecules and the hydrogen atom are moving away from each other. A calorimeter can be used to monitor the energy changes during the reaction. See below a graph of momenta vs time graph for confirmation.&lt;br /&gt;
&lt;br /&gt;
[[File:mvt.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Setup a calculation starting on the side of the reactants of F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;, at the bottom of the well r&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.74, with a momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.5, and explore several values of p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; in the range -3 to 3 (explore values also close to these limits). What do you observe?}}&lt;br /&gt;
&lt;br /&gt;
When exploring the variation of p(HH) from -3 to 3. The reaction becomes successful when the momentum of H-H is around -1, and becomes unsuccessful above 1. This suggests that momentum is a vector, and it does not matter whether the sign is positive or negative, simply just a direction. The magnitude however, suggests that only a small momentum of H-H should be use so that it does not surplus the threshold of around |2|. If p(H-H) is greater than that of F-H, hydrogen molecules will tend to stay together rather than forming a new bond with Fluorine atom. Some examples of successful and unsuccessful reactions are shown below.&lt;br /&gt;
&lt;br /&gt;
[[File:sc0.5.PNG]]&lt;br /&gt;
[[File:sc-1.PNG]]&lt;br /&gt;
[[File:sc-2.5.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red| For the same initial position, increase slightly the momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.8, and considerably reduce the overall energy of the system by reducing the momentum p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.1. What do you observe now?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When energy is reduced considerably and the momentum of F-H is increased slightly, there is a dilemma that the activation energy for the product to form is not enough because the single hydrogen atom does not have enough kinetic energy to move away from the complex, i.e.this situation may happen in the very beginning of the transition state. The reaction is still feasible.&lt;br /&gt;
&lt;br /&gt;
[[File:sc0.1.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Discuss how the distribution of energy between different modes (translation and vibration) affect the efficiency of the reaction, and how this is influenced by the position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quantity of momenta were kept at 10.  According to Polanyi&#039;s rule, for a late TS reaction, vibrational is more effective to overcome the barrier than kinetic energy. Therefore, for this reaction, it&#039;s endothermic so a late TS state, therefore, increase in p(H-F) facilitates the reaction.&lt;br /&gt;
&lt;br /&gt;
ref:http://brouard.chem.ox.ac.uk/teaching/dynlectures4to6.pdf&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
	<entry>
		<id>https://chemwiki.ch.ic.ac.uk/index.php?title=MDR:zx616&amp;diff=723847</id>
		<title>MDR:zx616</title>
		<link rel="alternate" type="text/html" href="https://chemwiki.ch.ic.ac.uk/index.php?title=MDR:zx616&amp;diff=723847"/>
		<updated>2018-05-18T16:36:00Z</updated>

		<summary type="html">&lt;p&gt;Zx616: /* Exercise 1: H+H2 system */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==&amp;lt;b&amp;gt;Exercise 1: H+H2 system==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|What value do the different components of the gradient of the potential energy surface have at a minimum and at a transition structure? Briefly explain how minima and transition structures can be distinguished using the curvature of the potential energy surface.}}&lt;br /&gt;
&lt;br /&gt;
The transition state can be determined by looking at the surface plot. The saddle point is believed to be the place where Transition state is located at (0.40,0.40, -97). This is considered to be the transition state because the partial derivative of both AB and BC distances give a minimum, and the partial derivative of reaction coordinate and energy give a maximum. This is confirmed by checking whether the place is inside the reaction coordinate. Since r1=r2, this place is believed to be the transition state.&lt;br /&gt;
[[File:energy1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Report your best estimate of the transition state position (&#039;&#039;&#039;r&amp;lt;sub&amp;gt;ts&amp;lt;/sub&amp;gt;&#039;&#039;&#039;) and explain your reasoning illustrating it with a “Internuclear Distances vs Time” plot for a relevant trajectory.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When r1=r2, with p1=p2=0 (since the gradient is 0), this is where TS is located. By adjusting proper values, r=0.908. This is backed up by looking at the internuclear distance vs time graph where BC and AC distance does not change over time, only atomic vibration occurs. When there is no oscillation within molecules and between atoms, TS is achieved. &lt;br /&gt;
&lt;br /&gt;
[[File:inter1.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Comment on how the &#039;&#039;mep&#039;&#039; and the trajectory you just calculated differ.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When MEP calculation is done, one will see that the line becomes smoother than Dynamic in surface plot, in which molecules are believed to oscillate. Therefore one can conclude that MEP is suitable for providing a macro picture of a reaction whereas the Dynamic provides a detailed behaviors of atoms in a reaction.&lt;br /&gt;
&lt;br /&gt;
[[File:contdyn.PNG|thumb|A dynamic calculation]]&lt;br /&gt;
[[File:contmep.PNG|thumb|A MEP calculation]]&lt;br /&gt;
&lt;br /&gt;
Intermolecular momenta vs time: for MEP the line becomes a flat line compare to Dynamic where lines are oscillating;&lt;br /&gt;
&lt;br /&gt;
Intermolecular distance vs time: for MEP the graph becomes a curved line compare to dynamic where they are straight lines with positive gradients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Complete the table by adding a column with the total energy, and another column reporting if the trajectory is reactive or unreactive. For each set of initial conditions, provide a plot of the trajectory and a small description for what happens along the trajectory.}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ Table&lt;br /&gt;
! p1 !! p2 !! Total Energy !! Reactive/Unreactive !! Description&lt;br /&gt;
|-&lt;br /&gt;
| -1.25|| -2.5 || -99.018 || Reactive || [[File:Des1.png | 175px]] Atom C moving towards A-B and form a new bond B-C and then move away with vibration.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.0 || -100.456 || Unreactive || [[File:Des2.PNG | 175px]] Atom C moving towards vibrating A-B, but does not have enough kinetic and potential energy to overcome the Ea barrier, therefore the reaction is unreactive.&lt;br /&gt;
|-&lt;br /&gt;
| -1.5 || -2.5 || -98.956|| Reactive|| [[File:Des3.PNG | 175px]] This reaction is reactive. It follows the similar path with No.1 but atom C is also vibrating while moving towards A-B&lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.0 || -84.956|| Unreactive|| [[File:4.PNG | 175px]] H-H bond has very large energy that allows the transition state to form, but when single atom H comes in, it also possesses a large momentum that bounces the reactants back to be regenerated. &lt;br /&gt;
|-&lt;br /&gt;
| -2.5 || -5.2 || -83.416|| Reactive|| [[File:Des5.PNG | 175px]] The single atom C is able to form a H-H bond with B but has such large vibrational energy that it collides again with A, and then &amp;quot;re-crossed&amp;quot; back to form B-C and moves in opposite direction&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|State what are the main assumptions of Transition State Theory. Given the results you have obtained, how will Transition State Theory predictions for reaction rate values compare with experimental values?}}&lt;br /&gt;
&lt;br /&gt;
Assumptions:&lt;br /&gt;
&lt;br /&gt;
Firstly, Transition State Theory (TST) assumes that the reactants are in equilibrium with the transition state, but in reality, due to both kinetic and thermodynamic reasons. Some reactions proceed via an intermediate, which does not fit in Hammond&#039;s postulate.&lt;br /&gt;
&lt;br /&gt;
Secondly, TST assumes that all molecules in TS are long-lived enough to reach Boltzmann&#039;s distribution before forming the product, this is very limited. When molecules of such have a short half life, the TST predicted products are not necessarily correct in its selectivities.&lt;br /&gt;
&lt;br /&gt;
Last but not least, TST assumes that  ΔH0=Ea, whereas a more reliable consideration is  ΔH0=ΔU0 + RT. The assumption fails to take into account how TS will behave under the change in temperature but the modified version takes that into account and makes the model more reliable.&lt;br /&gt;
&lt;br /&gt;
==Exercise 2==&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Classify the F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; and H + HF reactions according to their energetics (endothermic or exothermic). How does this relate to the bond strength of the chemical species involved?}}&lt;br /&gt;
&lt;br /&gt;
F+H2 is exothermic. As seen from the PES plot, from B-C to A-B involves a release of energy from ca. -130 to ca. -110.&lt;br /&gt;
&lt;br /&gt;
H-H bond strength is less than that of F-H, the formation of a F-H bond compensates the breaking of one H-H bond. Therefore it is exothermic.&lt;br /&gt;
&lt;br /&gt;
H+HF is endothermic because of the similar reasons. From B-C to A-B involves a absorption of energy from ca. -110 to ca. -130.&lt;br /&gt;
&lt;br /&gt;
the breaking of a strong H-F bond cannot be compensated by the formation of a relatively weaker H-H bond, so it is endothermic. &lt;br /&gt;
&lt;br /&gt;
comparison of bond strength: H-H: 432 kJ/mol; H-F: 565 kJ/mol, matches the observations from the plots. &lt;br /&gt;
&lt;br /&gt;
ref:http://www.wiredchemist.com/chemistry/data/bond_energies_lengths.html&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Locate the approximate position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
The position of TS is located to be r(F-H)=1.810 and r(H-H)=0.745 for F + H2 and r(H-H)=1.810 and r(F-H)=0.745 for H + FH. This is confirmed by viewing the Internuclear distances vs time plot being three horizontal lines and the surface plot with one single dot on the saddle &amp;quot;line&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:fhh1.PNG]]&lt;br /&gt;
[[File:fhh2.PNG]]&lt;br /&gt;
&lt;br /&gt;
Comments: The first plot identifies the saddle point at given initial conditions, confirming those conditions represent the transition state. The second graph illustrated no vibrations between three molecules, meaning they are at the furthest they can be without losing interactions, confirms again that these conditions fulfill a transition state. Similar approaches were used to determine the transition state for the second reaction. In order to achieve satisfactory initial conditions, trail and errors were carried out in accordance with the relevant knowledge from bond strengths.&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Report the activation energy for both reactions.}}&lt;br /&gt;
&lt;br /&gt;
To determine the activation energy, the energy of transition state was used to minus the energy of the reactants to give activation energy. A MEP plot was done to determine the energy of transition state precisely. And by slightly increasing and decreasing the distance of F-H in the transition state, the energy of the reactants can be determined too.&lt;br /&gt;
&lt;br /&gt;
For F+H2, the activation energy is reported to be 0.20 kCal/mol and for that of H+FH it is reported to be 30.2 kCal/mol&lt;br /&gt;
&lt;br /&gt;
 {{fontcolor1|red|In light of the fact that energy is conserved, discuss the mechanism of release of the reaction energy. How could this be confirmed experimentally?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A set of reactive initial condition for F + H2 is r(F-H)=1.810, r(H-H)=0.745, p(FH)=-1 and p(HH)=-2. It can be clearly see that in the beginning of the reaction, i.e. 0-0.5s, the energy was stored in H-H bond, conversly F-H bond shows no momentum. However, as the reaction goes through, at around 1s sees the exchange of the energy between two bonds. 1.25 seconds shows a converge trend of F-H and H-H momenta, marked the successful transfer of energy. In the end, the amplitude of F-H bond momentum increases as a result of the decrease of H-H bond. Overall, the potential energy was converted to vibrational energy, because of the momenta of B-C and A-C are positive, means that the molecules and the hydrogen atom are moving away from each other. A calorimeter can be used to monitor the energy changes during the reaction. See below a graph of momenta vs time graph for confirmation.&lt;br /&gt;
&lt;br /&gt;
[[File:mvt.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red|Setup a calculation starting on the side of the reactants of F + H&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;, at the bottom of the well r&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.74, with a momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.5, and explore several values of p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; in the range -3 to 3 (explore values also close to these limits). What do you observe?}}&lt;br /&gt;
&lt;br /&gt;
When exploring the variation of p(HH) from -3 to 3. The reaction becomes successful when the momentum of H-H is around -1, and becomes unsuccessful above 1. This suggests that momentum is a vector, and it does not matter whether the sign is positive or negative, simply just a direction. The magnitude however, suggests that only a small momentum of H-H should be use so that it does not surplus the threshold of around |2|. If p(H-H) is greater than that of F-H, hydrogen molecules will tend to stay together rather than forming a new bond with Fluorine atom. Some examples of successful and unsuccessful reactions are shown below.&lt;br /&gt;
&lt;br /&gt;
[[File:sc0.5.PNG]]&lt;br /&gt;
[[File:sc-1.PNG]]&lt;br /&gt;
[[File:sc-2.5.PNG]]&lt;br /&gt;
&lt;br /&gt;
{{fontcolor1|red| For the same initial position, increase slightly the momentum p&amp;lt;sub&amp;gt;FH&amp;lt;/sub&amp;gt; = -0.8, and considerably reduce the overall energy of the system by reducing the momentum p&amp;lt;sub&amp;gt;HH&amp;lt;/sub&amp;gt; = 0.1. What do you observe now?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When energy is reduced considerably and the momentum of F-H is increased slightly, there is a dilemma that the activation energy for the product to form is not enough because the single hydrogen atom does not have enough kinetic energy to move away from the complex, i.e.this situation may happen in the very beginning of the transition state. The reaction is still feasible.&lt;br /&gt;
&lt;br /&gt;
[[File:sc0.1.PNG]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{fontcolor|red|Discuss how the distribution of energy between different modes (translation and vibration) affect the efficiency of the reaction, and how this is influenced by the position of the transition state.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The quantity of momenta were kept at 10.  According to Polanyi&#039;s rule, for a late TS reaction, vibrational is more effective to overcome the barrier than kinetic energy. Therefore, for this reaction, it&#039;s endothermic so a late TS state, therefore, increase in p(H-F) facilitates the reaction.&lt;br /&gt;
&lt;br /&gt;
ref:http://brouard.chem.ox.ac.uk/teaching/dynlectures4to6.pdf&lt;/div&gt;</summary>
		<author><name>Zx616</name></author>
	</entry>
</feed>