<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://micro.stanford.edu/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mjorda</id>
	<title>Micro and Nano Mechanics Group - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://micro.stanford.edu/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mjorda"/>
	<link rel="alternate" type="text/html" href="http://micro.stanford.edu/wiki/Special:Contributions/Mjorda"/>
	<updated>2026-07-05T14:09:18Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.7</generator>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6125</id>
		<title>Compile LAMMPS on GPU on Sherlock</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6125"/>
		<updated>2015-07-22T22:45:47Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: /* Compile LAMMPS with gpu */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;FONT SIZE=&amp;quot;+3&amp;quot; color=&amp;quot;darkred&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;&lt;br /&gt;
Compile LAMMPS on GPU on Sherlock  &amp;lt;/STRONG&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;Mikael Jorda&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;/DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt; Created july 2015&amp;lt;/P&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This tutorial explains how to install, compile and use LAMMPS with GPUs on the cluster Sherlock&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing and compiling LAMMPS on sherlock==&lt;br /&gt;
In order to use LAMMPS on GPU, you must compile it with the cuda library. The process is a little bit different from the usual compilation of LAMMPS.&lt;br /&gt;
&lt;br /&gt;
===Download LAMMPS===&lt;br /&gt;
&lt;br /&gt;
Go to the LAMMPS website (http://lammps.sandia.gov/download.html) and download the most recent stable version of the code. Put it in your Codes directory and unzip it&lt;br /&gt;
 tar -zxvf lammps-stable.tar.gz&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;or&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The following command can be used to checkout a specific reversion of LAMMPS from our &#039;&#039;&#039;svn&#039;&#039;&#039; server. &lt;br /&gt;
&lt;br /&gt;
 svn checkout -r 23 http://micro.stanford.edu/svn/LAMMPS ~/Codes/LAMMPS.svn/&lt;br /&gt;
&lt;br /&gt;
1. Copy Makefile.mc2 into Codes/LAMMPS.svn/src/MAKE/ directory using the following commands&lt;br /&gt;
 cd ~/Codes/LAMMPS&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki/images/f/fb/Makefile.mc2.txt -O ./src/MAKE/Makefile.mc2 &lt;br /&gt;
&lt;br /&gt;
2. In any directory, type the following command&lt;br /&gt;
 Export TARGET=sherlock&lt;br /&gt;
(or add it to your bash_profile not to have to type it every time you connect to the cluster)&lt;br /&gt;
&lt;br /&gt;
3. In your home directory, make a folder named &#039;&#039;&#039;usr&#039;&#039;&#039;&lt;br /&gt;
 mkdir ~/usr &lt;br /&gt;
&lt;br /&gt;
4. Download the fftw library and unzip it using the following commands&lt;br /&gt;
 cd ~/usr&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki/images/9/9e/Fftw.tar -O fftw.tar&lt;br /&gt;
 tar –zxvf fftw.tar&lt;br /&gt;
&lt;br /&gt;
5. Make sure you have the modules for using &#039;&#039;&#039;mpi&#039;&#039;&#039; complier and &#039;&#039;&#039;cuda&#039;&#039;&#039;, you can load the modules by adding the below two lines to your &#039;&#039;&#039;bash_profile&#039;&#039;&#039; file. &lt;br /&gt;
 vi ~/.bash_profile (You can use whatever text editor to open the file and add the following lines)&lt;br /&gt;
&lt;br /&gt;
 module load mpich/3.1.4&lt;br /&gt;
 module load cuda &lt;br /&gt;
&lt;br /&gt;
Save the file and log out. Next time when you log in, the compilers should work for you.&lt;br /&gt;
&lt;br /&gt;
===Compile LAMMPS with gpu===&lt;br /&gt;
&lt;br /&gt;
You need first to build the GPU library. Go to your lammps/lib/gpu folder.&lt;br /&gt;
Copy the generic linux makefile&lt;br /&gt;
 cd ~/Codes/LAMMPS/lib/gpu&lt;br /&gt;
 cp Makefile.linux Makefile.sherlock&lt;br /&gt;
&lt;br /&gt;
You have to modify 3 lines in this file. Open it and replace the values of CUDA_HOME, CUDA_ARCH and CUDA_PREC with the following&lt;br /&gt;
 vi Makefile.sherlock&lt;br /&gt;
&lt;br /&gt;
 CUDA_HOME = /share/sw/free/cuda/6.5&lt;br /&gt;
 CUDA_ARCH = -arch=sm_35&lt;br /&gt;
 CUDA_PREC = -D_DOUBLE_DOUBLE&lt;br /&gt;
&lt;br /&gt;
==Using the GPU for a LAMMPS run==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Modify the input script===&lt;br /&gt;
&lt;br /&gt;
===Request GPUs on Sherlock===&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6124</id>
		<title>Compile LAMMPS on GPU on Sherlock</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6124"/>
		<updated>2015-07-22T22:44:51Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: /* Compile LAMMPS with gpu */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;FONT SIZE=&amp;quot;+3&amp;quot; color=&amp;quot;darkred&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;&lt;br /&gt;
Compile LAMMPS on GPU on Sherlock  &amp;lt;/STRONG&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;Mikael Jorda&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;/DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt; Created july 2015&amp;lt;/P&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This tutorial explains how to install, compile and use LAMMPS with GPUs on the cluster Sherlock&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing and compiling LAMMPS on sherlock==&lt;br /&gt;
In order to use LAMMPS on GPU, you must compile it with the cuda library. The process is a little bit different from the usual compilation of LAMMPS.&lt;br /&gt;
&lt;br /&gt;
===Download LAMMPS===&lt;br /&gt;
&lt;br /&gt;
Go to the LAMMPS website (http://lammps.sandia.gov/download.html) and download the most recent stable version of the code. Put it in your Codes directory and unzip it&lt;br /&gt;
 tar -zxvf lammps-stable.tar.gz&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;or&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The following command can be used to checkout a specific reversion of LAMMPS from our &#039;&#039;&#039;svn&#039;&#039;&#039; server. &lt;br /&gt;
&lt;br /&gt;
 svn checkout -r 23 http://micro.stanford.edu/svn/LAMMPS ~/Codes/LAMMPS.svn/&lt;br /&gt;
&lt;br /&gt;
1. Copy Makefile.mc2 into Codes/LAMMPS.svn/src/MAKE/ directory using the following commands&lt;br /&gt;
 cd ~/Codes/LAMMPS&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki/images/f/fb/Makefile.mc2.txt -O ./src/MAKE/Makefile.mc2 &lt;br /&gt;
&lt;br /&gt;
2. In any directory, type the following command&lt;br /&gt;
 Export TARGET=sherlock&lt;br /&gt;
(or add it to your bash_profile not to have to type it every time you connect to the cluster)&lt;br /&gt;
&lt;br /&gt;
3. In your home directory, make a folder named &#039;&#039;&#039;usr&#039;&#039;&#039;&lt;br /&gt;
 mkdir ~/usr &lt;br /&gt;
&lt;br /&gt;
4. Download the fftw library and unzip it using the following commands&lt;br /&gt;
 cd ~/usr&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki/images/9/9e/Fftw.tar -O fftw.tar&lt;br /&gt;
 tar –zxvf fftw.tar&lt;br /&gt;
&lt;br /&gt;
5. Make sure you have the modules for using &#039;&#039;&#039;mpi&#039;&#039;&#039; complier and &#039;&#039;&#039;cuda&#039;&#039;&#039;, you can load the modules by adding the below two lines to your &#039;&#039;&#039;bash_profile&#039;&#039;&#039; file. &lt;br /&gt;
 vi ~/.bash_profile (You can use whatever text editor to open the file and add the following lines)&lt;br /&gt;
&lt;br /&gt;
 module load mpich/3.1.4&lt;br /&gt;
 module load cuda &lt;br /&gt;
&lt;br /&gt;
Save the file and log out. Next time when you log in, the compilers should work for you.&lt;br /&gt;
&lt;br /&gt;
===Compile LAMMPS with gpu===&lt;br /&gt;
&lt;br /&gt;
You need first to build the GPU library. Go to your lammps/lib/gpu folder.&lt;br /&gt;
Copy the generic linux mkefile&lt;br /&gt;
 cd ~/Codes/LAMMPS/lib/gpu&lt;br /&gt;
 cp Makefile.linux Makefile.sherlock&lt;br /&gt;
&lt;br /&gt;
You have to modify 3 lines in this file. Open it and replace the values of CUDA_HOME, CUDA_ARCH and CUDA_PREC with the following&lt;br /&gt;
 vi Makefile.sherlock&lt;br /&gt;
&lt;br /&gt;
 CUDA_HOME = /share/sw/free/cuda/6.5&lt;br /&gt;
 CUDA_ARCH = -arch=sm_35&lt;br /&gt;
 CUDA_PREC = -D_DOUBLE_DOUBLE&lt;br /&gt;
&lt;br /&gt;
==Using the GPU for a LAMMPS run==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Modify the input script===&lt;br /&gt;
&lt;br /&gt;
===Request GPUs on Sherlock===&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6123</id>
		<title>Compile LAMMPS on GPU on Sherlock</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6123"/>
		<updated>2015-07-22T22:39:16Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: /* Download LAMMPS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;FONT SIZE=&amp;quot;+3&amp;quot; color=&amp;quot;darkred&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;&lt;br /&gt;
Compile LAMMPS on GPU on Sherlock  &amp;lt;/STRONG&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;Mikael Jorda&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;/DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt; Created july 2015&amp;lt;/P&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This tutorial explains how to install, compile and use LAMMPS with GPUs on the cluster Sherlock&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing and compiling LAMMPS on sherlock==&lt;br /&gt;
In order to use LAMMPS on GPU, you must compile it with the cuda library. The process is a little bit different from the usual compilation of LAMMPS.&lt;br /&gt;
&lt;br /&gt;
===Download LAMMPS===&lt;br /&gt;
&lt;br /&gt;
Go to the LAMMPS website (http://lammps.sandia.gov/download.html) and download the most recent stable version of the code. Put it in your Codes directory and unzip it&lt;br /&gt;
 tar -zxvf lammps-stable.tar.gz&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;or&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The following command can be used to checkout a specific reversion of LAMMPS from our &#039;&#039;&#039;svn&#039;&#039;&#039; server. &lt;br /&gt;
&lt;br /&gt;
 svn checkout -r 23 http://micro.stanford.edu/svn/LAMMPS ~/Codes/LAMMPS.svn/&lt;br /&gt;
&lt;br /&gt;
1. Copy Makefile.mc2 into Codes/LAMMPS.svn/src/MAKE/ directory using the following commands&lt;br /&gt;
 cd ~/Codes/LAMMPS&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki/images/f/fb/Makefile.mc2.txt -O ./src/MAKE/Makefile.mc2 &lt;br /&gt;
&lt;br /&gt;
2. In any directory, type the following command&lt;br /&gt;
 Export TARGET=sherlock&lt;br /&gt;
(or add it to your bash_profile not to have to type it every time you connect to the cluster)&lt;br /&gt;
&lt;br /&gt;
3. In your home directory, make a folder named &#039;&#039;&#039;usr&#039;&#039;&#039;&lt;br /&gt;
 mkdir ~/usr &lt;br /&gt;
&lt;br /&gt;
4. Download the fftw library and unzip it using the following commands&lt;br /&gt;
 cd ~/usr&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki/images/9/9e/Fftw.tar -O fftw.tar&lt;br /&gt;
 tar –zxvf fftw.tar&lt;br /&gt;
&lt;br /&gt;
5. Make sure you have the modules for using &#039;&#039;&#039;mpi&#039;&#039;&#039; complier and &#039;&#039;&#039;cuda&#039;&#039;&#039;, you can load the modules by adding the below two lines to your &#039;&#039;&#039;bash_profile&#039;&#039;&#039; file. &lt;br /&gt;
 vi ~/.bash_profile (You can use whatever text editor to open the file and add the following lines)&lt;br /&gt;
&lt;br /&gt;
 module load mpich/3.1.4&lt;br /&gt;
 module load cuda &lt;br /&gt;
&lt;br /&gt;
Save the file and log out. Next time when you log in, the compilers should work for you.&lt;br /&gt;
&lt;br /&gt;
===Compile LAMMPS with gpu===&lt;br /&gt;
&lt;br /&gt;
You need first to build the GPU library. Go to your lammps/lib/gpu folder.&lt;br /&gt;
Copy the generic linux mkefile&lt;br /&gt;
 cp Makefile.linux Makefile.sherlock&lt;br /&gt;
&lt;br /&gt;
You have to modify 3 parameters in this file&lt;br /&gt;
&lt;br /&gt;
==Using the GPU for a LAMMPS run==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Modify the input script===&lt;br /&gt;
&lt;br /&gt;
===Request GPUs on Sherlock===&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6122</id>
		<title>Compile LAMMPS on GPU on Sherlock</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6122"/>
		<updated>2015-07-22T22:31:10Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: /* Compile LAMMPS with gpu */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;FONT SIZE=&amp;quot;+3&amp;quot; color=&amp;quot;darkred&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;&lt;br /&gt;
Compile LAMMPS on GPU on Sherlock  &amp;lt;/STRONG&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;Mikael Jorda&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;/DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt; Created july 2015&amp;lt;/P&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This tutorial explains how to install, compile and use LAMMPS with GPUs on the cluster Sherlock&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing and compiling LAMMPS on sherlock==&lt;br /&gt;
In order to use LAMMPS on GPU, you must compile it with the cuda library. The process is a little bit different from the usual compilation of LAMMPS.&lt;br /&gt;
&lt;br /&gt;
===Download LAMMPS===&lt;br /&gt;
&lt;br /&gt;
Go to the LAMMPS website (http://lammps.sandia.gov/download.html) and download the most recent stable version of the code.&lt;br /&gt;
&lt;br /&gt;
Put it in your Codes directory and unzip it&lt;br /&gt;
 tar -xvf lammps-stable.tar.gz&lt;br /&gt;
&lt;br /&gt;
===Compile LAMMPS with gpu===&lt;br /&gt;
&lt;br /&gt;
You need first to build the GPU library. Go to your lammps/lib/gpu folder.&lt;br /&gt;
Copy the generic linux mkefile&lt;br /&gt;
 cp Makefile.linux Makefile.sherlock&lt;br /&gt;
&lt;br /&gt;
You have to modify 3 parameters in this file&lt;br /&gt;
&lt;br /&gt;
==Using the GPU for a LAMMPS run==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Modify the input script===&lt;br /&gt;
&lt;br /&gt;
===Request GPUs on Sherlock===&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6121</id>
		<title>Compile LAMMPS on GPU on Sherlock</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6121"/>
		<updated>2015-07-22T22:20:44Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: /* Download LAMMPS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;FONT SIZE=&amp;quot;+3&amp;quot; color=&amp;quot;darkred&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;&lt;br /&gt;
Compile LAMMPS on GPU on Sherlock  &amp;lt;/STRONG&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;Mikael Jorda&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;/DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt; Created july 2015&amp;lt;/P&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This tutorial explains how to install, compile and use LAMMPS with GPUs on the cluster Sherlock&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing and compiling LAMMPS on sherlock==&lt;br /&gt;
In order to use LAMMPS on GPU, you must compile it with the cuda library. The process is a little bit different from the usual compilation of LAMMPS.&lt;br /&gt;
&lt;br /&gt;
===Download LAMMPS===&lt;br /&gt;
&lt;br /&gt;
Go to the LAMMPS website (http://lammps.sandia.gov/download.html) and download the most recent stable version of the code.&lt;br /&gt;
&lt;br /&gt;
Put it in your Codes directory and unzip it&lt;br /&gt;
 tar -xvf lammps-stable.tar.gz&lt;br /&gt;
&lt;br /&gt;
===Compile LAMMPS with gpu===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Using the GPU for a LAMMPS run==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Modify the input script===&lt;br /&gt;
&lt;br /&gt;
===Request GPUs on Sherlock===&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6120</id>
		<title>Compile LAMMPS on GPU on Sherlock</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6120"/>
		<updated>2015-07-22T22:13:12Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;FONT SIZE=&amp;quot;+3&amp;quot; color=&amp;quot;darkred&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;&lt;br /&gt;
Compile LAMMPS on GPU on Sherlock  &amp;lt;/STRONG&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;Mikael Jorda&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;/DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt; Created july 2015&amp;lt;/P&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This tutorial explains how to install, compile and use LAMMPS with GPUs on the cluster Sherlock&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing and compiling LAMMPS on sherlock==&lt;br /&gt;
In order to use LAMMPS on GPU, you must compile it with the cuda library. The process is a little bit different from the usual compilation of LAMMPS.&lt;br /&gt;
&lt;br /&gt;
===Download LAMMPS===&lt;br /&gt;
&lt;br /&gt;
===Compile LAMMPS with gpu===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Using the GPU for a LAMMPS run==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Modify the input script===&lt;br /&gt;
&lt;br /&gt;
===Request GPUs on Sherlock===&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6119</id>
		<title>Compile LAMMPS on GPU on Sherlock</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6119"/>
		<updated>2015-07-22T22:11:41Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;FONT SIZE=&amp;quot;+3&amp;quot; color=&amp;quot;darkred&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;&lt;br /&gt;
Compile LAMMPS on GPU on Sherlock  &amp;lt;/STRONG&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;Mikael Jorda&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;/DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt; Created july 2015&amp;lt;/P&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This tutorial explains how to install, compile and use LAMMPS with GPUs on the cluster Sherlock&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing and compiling LAMMPS on sherlock==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Download LAMMPS===&lt;br /&gt;
&lt;br /&gt;
===Compile LAMMPS with gpu===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Using the GPU for a LAMMPS run==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Modify the input script===&lt;br /&gt;
&lt;br /&gt;
===Request GPUs on Sherlock===&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6118</id>
		<title>Compile LAMMPS on GPU on Sherlock</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6118"/>
		<updated>2015-07-22T22:09:57Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;FONT SIZE=&amp;quot;+3&amp;quot; color=&amp;quot;darkred&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;&lt;br /&gt;
Compile LAMMPS on GPU on Sherlock  &amp;lt;/STRONG&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;Mikael Jorda&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;/DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt; Created july 2015&amp;lt;/P&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This tutorial explains how to install, compile and use LAMMPS with GPUs on the cluster Sherlock&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
==Installing and compiling LAMMPS on sherlock==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Download LAMMPS===&lt;br /&gt;
&lt;br /&gt;
===Compile LAMMPS with gpu===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Using the GPU for a LAMMPS run==&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6117</id>
		<title>Compile LAMMPS on GPU on Sherlock</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Compile_LAMMPS_on_GPU_on_Sherlock&amp;diff=6117"/>
		<updated>2015-07-22T22:04:27Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: Created page with &amp;quot;&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt; &amp;lt;FONT SIZE=&amp;quot;+3&amp;quot; color=&amp;quot;darkred&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt; Compile LAMMPS on GPU on Sherlock  &amp;lt;/STRONG&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/P&amp;gt; &amp;lt;DIV&amp;gt; &amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;Mikael Jorda&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt; &amp;lt;...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;FONT SIZE=&amp;quot;+3&amp;quot; color=&amp;quot;darkred&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;&lt;br /&gt;
Compile LAMMPS on GPU on Sherlock  &amp;lt;/STRONG&amp;gt;&amp;lt;/font&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;&amp;lt;STRONG&amp;gt;Mikael Jorda&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;/DIV&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt; Created july 2015&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;P&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This tutorial explains how to install, compile and use LAMMPS with GPUs on the cluster Sherlock&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Tutorial:Members_Only&amp;diff=6116</id>
		<title>Tutorial:Members Only</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Tutorial:Members_Only&amp;diff=6116"/>
		<updated>2015-07-22T21:59:37Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: /* Manuals for Group Members */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Manuals for Group Members ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;500&amp;quot; | Scientific Articles&lt;br /&gt;
|-&lt;br /&gt;
| [https://micro.stanford.edu/journal-repository Journal Repository]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;500&amp;quot; | ParaDiS&lt;br /&gt;
|-  &lt;br /&gt;
| [[ParaDiS Cylinder Code Manuals ]]&lt;br /&gt;
|-&lt;br /&gt;
| [[ParaDiS ThinFilm Code Manuals]]&lt;br /&gt;
|- &lt;br /&gt;
| [[ParaDiS Aniso Code Manuals]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | MD++&lt;br /&gt;
|-&lt;br /&gt;
| [[Foward Flux Sampling in MD++]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Torsion and Bending PBC in MD++]]&lt;br /&gt;
|- &lt;br /&gt;
| [[A Polygonal Dislocation Loop in MD++]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Use of Ewald Summation in MD++]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | LAMMPS&lt;br /&gt;
|-&lt;br /&gt;
| [[Use Au-Si MEAM Potential in LAMMPS]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Compile LAMMPS on GPU on Sherlock]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | Phase Field&lt;br /&gt;
|-&lt;br /&gt;
| [[Summary of Nanowire Growth Mechanism]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Single Phase Field Model with Isotropic Surface Energy]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Single Phase Field Model with Anisotropic Surface Energy]]&lt;br /&gt;
|- &lt;br /&gt;
| [[Multi Phase Field Model with Isotropic Interface Energy]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Multi Phase Field Model with Anisotropic Interface Energy]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Multi Phase Field Model (Revised Formulation)]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Parallelization of the  Phase Field Model]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Phase Field Model for Grain Evolution]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | VASP&lt;br /&gt;
|-&lt;br /&gt;
| [[VASP Computing Bulk Modulus of Au]]&lt;br /&gt;
|-&lt;br /&gt;
| [[VASP Computing Bulk Modulus of ZrO2]]&lt;br /&gt;
|-&lt;br /&gt;
| [[VASP Computing Bulk Modulus of YSZ]]&lt;br /&gt;
|-&lt;br /&gt;
| [[VASP Computing Density of States of YSZ]]&lt;br /&gt;
|-&lt;br /&gt;
| [[VASP Computing Generalized Stacking Fault Energy of Au]]&lt;br /&gt;
|-&lt;br /&gt;
| [[VASP Computing Ideal Shear Strength of Au]]&lt;br /&gt;
|-&lt;br /&gt;
| [[VASP terminology]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | Qbox&lt;br /&gt;
|-&lt;br /&gt;
| [[Qbox Computing Bulk Modulus of Au]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Qbox Computing Bulk Modulus of ZrO2]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Qbox Implemention of Magnetic Field]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Qbox Generating Pseudopotentials]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ab Initio Simulations of Condensed Matter under Arbitrary Magnetic Field | MPBC/Qbox draft1]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Predicting Molecular and Electronic Response to Magnetic Field from First Principles | MPBC/Qbox draft2]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | C++&lt;br /&gt;
|-&lt;br /&gt;
| [[BOOST Library]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Install GCC]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | LaTeX&lt;br /&gt;
|-&lt;br /&gt;
| [[Install LaTeX from Scratch]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Beamer Presentations]]&lt;br /&gt;
|-&lt;br /&gt;
| [[TikZ package]]&lt;br /&gt;
|-&lt;br /&gt;
| [[PGFPLOTS]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Asymptote]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | Tools&lt;br /&gt;
|-&lt;br /&gt;
| [[Atom Eye]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Gnuplot]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | Computers&lt;br /&gt;
|-&lt;br /&gt;
| [[Micro Maintenance]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Libraries in SU-AHPCRC]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | Fatigue Literature Review&lt;br /&gt;
|-&lt;br /&gt;
| [[2D Dislocation Dynamics]]&lt;br /&gt;
|-&lt;br /&gt;
| [[3D Dislocation Dynamics]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | Outreach&lt;br /&gt;
|-&lt;br /&gt;
| [[Simulating Solids in MD++]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Videos of bucky balls in motion]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Tutorials&amp;diff=6115</id>
		<title>Tutorials</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Tutorials&amp;diff=6115"/>
		<updated>2015-07-22T21:59:03Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: /* Simulation Codes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Simulation Codes ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[MD++ Manuals]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[ParaDiS Manuals]]&lt;br /&gt;
!width=&amp;quot;300&amp;quot; | [[ParaDiS Workshop Notes]]&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[DDLab Manuals]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[VASP Manuals]]&lt;br /&gt;
!width=&amp;quot;300&amp;quot; | [[How to compile Qbox]]&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | &lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[How to compile LAMMPS]]&lt;br /&gt;
!width=&amp;quot;300&amp;quot; | [[How to compile pimc++]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Computers ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Unix Basics]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Computer Setup]] &lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Computing Clusters | Parallel Clusters]]&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Install Ubuntu]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Install FFTW3]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Install HDF5]]&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Install GSL]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Standard Tcl Library | Tcl Library]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Install the GNU Compiler Collection (GCC)]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Scientific Background ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Dislocations]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Science Outreach ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [http://www.youtube.com/watch?v=SgM-Xes16Sw  Outreach interview]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[How to install MD++ in Ubuntu | Install MD++ in Ubuntu]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Introduction to Molecular Dynamics Simulations of Fullerenes | MD of Fullerenes]]&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Images of Fullerenes]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Android Applications and Information]]&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;!-- (commented out until completion)&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Simulating Solids in MD++]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Videos of bucky balls in motion]]&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Tutorial:Members_Only | Members Only]] ==&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Tutorials&amp;diff=6114</id>
		<title>Tutorials</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Tutorials&amp;diff=6114"/>
		<updated>2015-07-22T21:57:55Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: /* Simulation Codes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Simulation Codes ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[MD++ Manuals]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[ParaDiS Manuals]]&lt;br /&gt;
!width=&amp;quot;300&amp;quot; | [[ParaDiS Workshop Notes]]&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[DDLab Manuals]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[VASP Manuals]]&lt;br /&gt;
!width=&amp;quot;300&amp;quot; | [[How to compile Qbox]]&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[How to compile LAMMPS]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[How to compile LAMMPS with gpu on Sherlock]]&lt;br /&gt;
!width=&amp;quot;300&amp;quot; | [[How to compile pimc++]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Computers ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Unix Basics]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Computer Setup]] &lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Computing Clusters | Parallel Clusters]]&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Install Ubuntu]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Install FFTW3]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Install HDF5]]&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Install GSL]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Standard Tcl Library | Tcl Library]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Install the GNU Compiler Collection (GCC)]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Scientific Background ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Dislocations]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Science Outreach ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [http://www.youtube.com/watch?v=SgM-Xes16Sw  Outreach interview]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[How to install MD++ in Ubuntu | Install MD++ in Ubuntu]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Introduction to Molecular Dynamics Simulations of Fullerenes | MD of Fullerenes]]&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Images of Fullerenes]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Android Applications and Information]]&lt;br /&gt;
|&lt;br /&gt;
&amp;lt;!-- (commented out until completion)&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Simulating Solids in MD++]]&lt;br /&gt;
!width=&amp;quot;200&amp;quot; | [[Videos of bucky balls in motion]]&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Tutorial:Members_Only | Members Only]] ==&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Tutorial:Members_Only&amp;diff=6113</id>
		<title>Tutorial:Members Only</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Tutorial:Members_Only&amp;diff=6113"/>
		<updated>2015-07-08T21:16:36Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: /* Manuals for Group Members */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Manuals for Group Members ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;500&amp;quot; | Scientific Articles&lt;br /&gt;
|-&lt;br /&gt;
| [https://micro.stanford.edu/journal-repository Journal Repository]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!width=&amp;quot;500&amp;quot; | ParaDiS&lt;br /&gt;
|-  &lt;br /&gt;
| [[ParaDiS Cylinder Code Manuals ]]&lt;br /&gt;
|-&lt;br /&gt;
| [[ParaDiS ThinFilm Code Manuals]]&lt;br /&gt;
|- &lt;br /&gt;
| [[ParaDiS Aniso Code Manuals]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | MD++&lt;br /&gt;
|-&lt;br /&gt;
| [[Foward Flux Sampling in MD++]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Torsion and Bending PBC in MD++]]&lt;br /&gt;
|- &lt;br /&gt;
| [[A Polygonal Dislocation Loop in MD++]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Use of Ewald Summation in MD++]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | LAMMPS&lt;br /&gt;
|-&lt;br /&gt;
| [[Use Au-Si MEAM Potential in LAMMPS]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Compile LAMMPS on GPU]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | Phase Field&lt;br /&gt;
|-&lt;br /&gt;
| [[Summary of Nanowire Growth Mechanism]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Single Phase Field Model with Isotropic Surface Energy]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Single Phase Field Model with Anisotropic Surface Energy]]&lt;br /&gt;
|- &lt;br /&gt;
| [[Multi Phase Field Model with Isotropic Interface Energy]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Multi Phase Field Model with Anisotropic Interface Energy]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Multi Phase Field Model (Revised Formulation)]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Parallelization of the  Phase Field Model]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Phase Field Model for Grain Evolution]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | VASP&lt;br /&gt;
|-&lt;br /&gt;
| [[VASP Computing Bulk Modulus of Au]]&lt;br /&gt;
|-&lt;br /&gt;
| [[VASP Computing Bulk Modulus of ZrO2]]&lt;br /&gt;
|-&lt;br /&gt;
| [[VASP Computing Bulk Modulus of YSZ]]&lt;br /&gt;
|-&lt;br /&gt;
| [[VASP Computing Density of States of YSZ]]&lt;br /&gt;
|-&lt;br /&gt;
| [[VASP Computing Generalized Stacking Fault Energy of Au]]&lt;br /&gt;
|-&lt;br /&gt;
| [[VASP Computing Ideal Shear Strength of Au]]&lt;br /&gt;
|-&lt;br /&gt;
| [[VASP terminology]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | Qbox&lt;br /&gt;
|-&lt;br /&gt;
| [[Qbox Computing Bulk Modulus of Au]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Qbox Computing Bulk Modulus of ZrO2]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Qbox Implemention of Magnetic Field]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Qbox Generating Pseudopotentials]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Ab Initio Simulations of Condensed Matter under Arbitrary Magnetic Field | MPBC/Qbox draft1]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Predicting Molecular and Electronic Response to Magnetic Field from First Principles | MPBC/Qbox draft2]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | C++&lt;br /&gt;
|-&lt;br /&gt;
| [[BOOST Library]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Install GCC]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | LaTeX&lt;br /&gt;
|-&lt;br /&gt;
| [[Install LaTeX from Scratch]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Beamer Presentations]]&lt;br /&gt;
|-&lt;br /&gt;
| [[TikZ package]]&lt;br /&gt;
|-&lt;br /&gt;
| [[PGFPLOTS]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Asymptote]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | Tools&lt;br /&gt;
|-&lt;br /&gt;
| [[Atom Eye]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Gnuplot]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | Computers&lt;br /&gt;
|-&lt;br /&gt;
| [[Micro Maintenance]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Libraries in SU-AHPCRC]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | Fatigue Literature Review&lt;br /&gt;
|-&lt;br /&gt;
| [[2D Dislocation Dynamics]]&lt;br /&gt;
|-&lt;br /&gt;
| [[3D Dislocation Dynamics]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; cellpadding=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
|- &lt;br /&gt;
!width=&amp;quot;500&amp;quot; | Outreach&lt;br /&gt;
|-&lt;br /&gt;
| [[Simulating Solids in MD++]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Videos of bucky balls in motion]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=M11_MD%2B%2B_Powered_by_Python&amp;diff=6058</id>
		<title>M11 MD++ Powered by Python</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=M11_MD%2B%2B_Powered_by_Python&amp;diff=6058"/>
		<updated>2015-01-15T02:24:39Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MD++ with Python scripting language ([http://micro.stanford.edu/~caiwei/Forum/2004-12-12-MD++/PDF_Manuals/M11_MD++_v3.pdf Python])&lt;br /&gt;
&lt;br /&gt;
example scripts&lt;br /&gt;
&lt;br /&gt;
&amp;lt;UL&amp;gt;&lt;br /&gt;
  &amp;lt;LI&amp;gt; [http://micro.stanford.edu/~caiwei/Forum/2004-12-12-MD++/Python/si.py si.py]&lt;br /&gt;
  &amp;lt;LI&amp;gt; [http://micro.stanford.edu/~caiwei/Forum/2004-12-12-MD++/Python/si2.py si2.py]&lt;br /&gt;
  &amp;lt;LI&amp;gt; [http://micro.stanford.edu/~caiwei/Forum/2004-12-12-MD++/Python/si-arg.py si-arg.py]&lt;br /&gt;
  &amp;lt;LI&amp;gt; [http://micro.stanford.edu/~caiwei/Forum/2004-12-12-MD++/Python/si-temp.py si-temp.py]&lt;br /&gt;
&amp;lt;/UL&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=M11_MD%2B%2B_Powered_by_Python&amp;diff=6056</id>
		<title>M11 MD++ Powered by Python</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=M11_MD%2B%2B_Powered_by_Python&amp;diff=6056"/>
		<updated>2015-01-15T01:50:48Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MD++ with Python scripting language ([[M11_MD++_v3.pdf |Python]])&lt;br /&gt;
&lt;br /&gt;
example scripts&lt;br /&gt;
&lt;br /&gt;
&amp;lt;UL&amp;gt;&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[media:si.txt |si.py]]&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[media:si2.txt |si2.py]]&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[media:si-arg.txt |si-arg.py]]&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[media:si-temp.txt |si-temp.py]]&lt;br /&gt;
&amp;lt;/UL&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=M11_MD%2B%2B_Powered_by_Python&amp;diff=6055</id>
		<title>M11 MD++ Powered by Python</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=M11_MD%2B%2B_Powered_by_Python&amp;diff=6055"/>
		<updated>2015-01-15T01:49:32Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MD++ with Python scripting language ([[M11_MD++_v3.pdf |Python]])&lt;br /&gt;
&lt;br /&gt;
example scripts&lt;br /&gt;
&lt;br /&gt;
&amp;lt;UL&amp;gt;&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[media:si.txt |si.py]]&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[media:si2.py.txt |si2.py]]&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[media:si-arg.py.txt |si-arg.py]]&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[media:si-temp.py.txt |si-temp.py]]&lt;br /&gt;
&amp;lt;/UL&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=File:Si.txt&amp;diff=6054</id>
		<title>File:Si.txt</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=File:Si.txt&amp;diff=6054"/>
		<updated>2015-01-15T01:48:21Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=M11_MD%2B%2B_Powered_by_Python&amp;diff=6053</id>
		<title>M11 MD++ Powered by Python</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=M11_MD%2B%2B_Powered_by_Python&amp;diff=6053"/>
		<updated>2015-01-15T01:41:05Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MD++ with Python scripting language ([[M11_MD++_v3.pdf |Python]])&lt;br /&gt;
&lt;br /&gt;
example scripts&lt;br /&gt;
&lt;br /&gt;
&amp;lt;UL&amp;gt;&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[media:si.py.txt |si.py]]&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[media:si2.py.txt |si2.py]]&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[media:si-arg.py.txt |si-arg.py]]&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[media:si-temp.py.txt |si-temp.py]]&lt;br /&gt;
&amp;lt;/UL&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=M11_MD%2B%2B_Powered_by_Python&amp;diff=6052</id>
		<title>M11 MD++ Powered by Python</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=M11_MD%2B%2B_Powered_by_Python&amp;diff=6052"/>
		<updated>2015-01-15T01:35:41Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: Created page with &amp;quot;MD++ with Python scripting language (Python)  example scripts  &amp;lt;UL&amp;gt;   &amp;lt;LI&amp;gt; si.py   &amp;lt;LI&amp;gt; si2.py   &amp;lt;LI&amp;gt; si-arg.py   &amp;lt;LI&amp;gt; si-temp.py &amp;lt;/UL&amp;gt;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;MD++ with Python scripting language ([[M11_MD++_v3.pdf |Python]])&lt;br /&gt;
&lt;br /&gt;
example scripts&lt;br /&gt;
&lt;br /&gt;
&amp;lt;UL&amp;gt;&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[si.py]]&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[si2.py]]&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[si-arg.py]]&lt;br /&gt;
  &amp;lt;LI&amp;gt; [[si-temp.py]]&lt;br /&gt;
&amp;lt;/UL&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MD%2B%2B_Manuals&amp;diff=6051</id>
		<title>MD++ Manuals</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MD%2B%2B_Manuals&amp;diff=6051"/>
		<updated>2015-01-15T01:25:23Z</updated>

		<summary type="html">&lt;p&gt;Mjorda: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;H4&amp;gt;Manuals&amp;lt;/H4&amp;gt;&lt;br /&gt;
&amp;lt;UL&amp;gt;&lt;br /&gt;
&amp;lt;LI&amp;gt; [http://micro.stanford.edu/MDpp/docs/list MD++ Documentation]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[M01 Introduction to MD++]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[M02 Making a Perfect Crystal]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[M03 Equilibrium Lattice Constant and Bulk Modulus]] &lt;br /&gt;
&amp;lt;LI&amp;gt;[[M04 Energy Minimization of Vacancy]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[M05 Finite Temperature Simulation]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[M06 Visualization ]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[M07 Computing Elastic Constants | M07 Computing Elastic Constants at &#039;&#039;T&#039;&#039; = 0]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[M08 MD++ Powered by Tcl Language]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[M09 Computing Ideal Strength]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[M10 DisregistryAnalysis | M10 Visualize Disregistry vector]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[M11 MD++ Powered by Python]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[http://micro.stanford.edu/~caiwei/me346/  Molecular Simulations Lecture Notes]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[Comprehensive Nuclear Materials MD Case Studies | Case Studies of Crystals and Dislocations]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[MD++ An Example Script File | An Example Script File]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[MD++ An Example Tcl File | An Example Tcl File]]&lt;br /&gt;
&amp;lt;/UL&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;H4&amp;gt;Technical details&amp;lt;/H4&amp;gt;&lt;br /&gt;
&amp;lt;UL&amp;gt;&lt;br /&gt;
&amp;lt;LI&amp;gt;[[ MD++ QnA | MD++ FAQs]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[MD Potential Files]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[Making Amimations Using a MD++ Script File | Making Movies in MD++]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[Output File Formats in MD++]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[Running MD++ on Mac OS]]&lt;br /&gt;
&amp;lt;/UL&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;H4&amp;gt;Advanced topics&amp;lt;/H4&amp;gt;&lt;br /&gt;
&amp;lt;UL&amp;gt;&lt;br /&gt;
&amp;lt;LI&amp;gt;[[media:ewald_notes.pdf | Notes on Ewald Summation]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[Computing Melting Point by Free Energy Method]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[M04A Conjugate Gradient Method in MD++ | Conjugate Gradient Methods in MD++]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[Computing Elastic Constants 2 | Computing Elastic Constants at Finite Temperature]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[M10 Angular momentum is conserved or not | Conservation of Angular Momentum]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[Use MEAM in MD++]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[media:Day1_Ising_Demo.pdf | Monte Carlo Simulation of 2D Ising Model]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[Phonon dispersion relation | Phonon Dispersion Relation of Graphene]]&lt;br /&gt;
&amp;lt;/UL&amp;gt;&lt;/div&gt;</summary>
		<author><name>Mjorda</name></author>
	</entry>
</feed>