<?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=Caiwei</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=Caiwei"/>
	<link rel="alternate" type="text/html" href="http://micro.stanford.edu/wiki/Special:Contributions/Caiwei"/>
	<updated>2026-07-05T07:51:51Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.7</generator>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Computing_Melting_Point_by_Free_Energy_Method&amp;diff=6813</id>
		<title>Computing Melting Point by Free Energy Method</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Computing_Melting_Point_by_Free_Energy_Method&amp;diff=6813"/>
		<updated>2020-08-05T22:53:10Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: Add link to python jupyter notebook on GitLab&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;
Computing Melting Point by Free Eneregy Method&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;Seunghwa Ryu and Wei Cai&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;&amp;lt;STRONG&amp;gt;Modified by Yanming Wang (Sep 2015)&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This tutorial describes how to compute melting points from free energy methods.  We provide the [https://gitlab.com/micronano_public/MDpp MD++] script files and describe how to use them in detail.  The theoretical background is published in &lt;br /&gt;
&lt;br /&gt;
Comparison of Thermal Properties Predicted by Interatomic Potential Models,  &#039;&#039;Modelling and Simulation in Materials Science and Engineering&#039;&#039;, &#039;&#039;&#039;16&#039;&#039;&#039;, 085005 (2008). [http://micro.stanford.edu/~caiwei/papers/Ryu08msmse-meltingT.pdf (PDF)] (Paper selected as [http://www.iop.org/EJ/journal/-page=featured/0965-0393 MSMSE featured article]).  &lt;br /&gt;
&lt;br /&gt;
This case study is also available in the form of a Python [https://gitlab.com/micronano_public/MDpp/-/blob/release/scripts/ME346B/Tutorial%2027%20-%20Melting%20Point%20by%20Free%20Energy%20Method.ipynb jupyter notebook].&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Download files==&lt;br /&gt;
&lt;br /&gt;
First, you need to install MD++ on your computer by following the instructions on [[MD++_Manuals | MD++ Manuals]].&lt;br /&gt;
&lt;br /&gt;
Second, copy files [[media:melting_cubic.tcl.txt‎ | melting_cubic.tcl]] and&lt;br /&gt;
[[media:melting_noncubic.tcl.txt‎ | melting_noncubic.tcl]] to your input file directory of MD++.  You can do so by the following commands (assuming you have installed MD++ in &amp;lt;tt&amp;gt;~/Codes/MD++&amp;lt;/tt&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 export MDPP=~/Codes/MD++&lt;br /&gt;
 mkdir -p ${MDPP}/scripts/work/melting&lt;br /&gt;
 cd ${MDPP}/scripts/work/melting&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki-1.11.0/images/Melting_cubic.tcl.txt -O melting_cubic.tcl&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki-1.11.0/images/Melting_noncubic.tcl.txt -O melting_noncubic.tcl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Both files contain a big comment section in the beginning that describes in detail the (16) steps to compute the melting point.  These steps are fully automated.  In this tutorial, we describe how to run these scripts on a parallel cluster (using wcr.stanford.edu as an example) and what kind of results you should expect.&lt;br /&gt;
&lt;br /&gt;
==Compile executable file==&lt;br /&gt;
&lt;br /&gt;
Different executables in MD++ contains different interatomic potentials, for example, &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sw                  - Stillinger-Weber Silicon (modified by Balamane et al.)&lt;br /&gt;
sworig              - Original version of SW Silicon&lt;br /&gt;
swge                - Stillinger-Weber Germanium&lt;br /&gt;
tersoff             - Tersoff potential for Silicon&lt;br /&gt;
meam-lammps         - MEAM (taken from lammps)&lt;br /&gt;
meam-baskes         - MEAM (taken from Baskes&#039;s code dynamo)&lt;br /&gt;
meam                - MEAM (directly implemented in MD++)&lt;br /&gt;
eam                 - Embedded Atom Method &lt;br /&gt;
fs                  - Finnis-Sinclair&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here we use Si as an example. You can compile &amp;lt;tt&amp;gt;sworig&amp;lt;/tt&amp;gt; by typing&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 cd ${MDPP}&lt;br /&gt;
 make sworig build=R SYS=wcr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
If compilation is successful, this will create binary file &amp;lt;tt&amp;gt;sworig_wcr&amp;lt;/tt&amp;gt; file in your &amp;lt;tt&amp;gt;${MDPP}/bin&amp;lt;/tt&amp;gt; directory.&lt;br /&gt;
&lt;br /&gt;
The script [[media:melting_cubic.tcl.txt‎ | melting_cubic.tcl]] can be used with many potentials (i.e. executables), which are explained in the header region of the file.  Contact &amp;lt;tt&amp;gt;shryu@stanford.edu&amp;lt;/tt&amp;gt; if you have further questions.&lt;br /&gt;
&lt;br /&gt;
==Submit jobs==&lt;br /&gt;
&lt;br /&gt;
Here are the PBS scripts ([[media:melt1.pbs.txt‎ |melt1.pbs]] and&lt;br /&gt;
[[media:melt2.pbs.txt‎ |melt2.pbs]]) for submitting the jobs on wcr.stanford.edu.  You can submit jobs by typing the following commands.  This is a test case that computes the melting points of silicon described by the Stillinger-Weber (SW) potential on the parallel cluster wcr.stanford.edu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 cd ${MDPP}&lt;br /&gt;
 mkdir runs/Single_Elem_Tm&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki-1.11.0/images/Melt1.pbs.txt -O melt1.pbs&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki-1.11.0/images/Melt2.pbs.txt -O melt2.pbs&lt;br /&gt;
 qsub melt1.pbs&lt;br /&gt;
 qsub melt2.pbs&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After the calculation is finished (within 24 hours), the free energy data will be stored in the following two directories.&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
${MDPP}/runs/Single_Elem_Tm/SW_Si_Solid/&lt;br /&gt;
${MDPP}/runs/Single_Elem_Tm/SW_Si_Liquid/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Analyse data==&lt;br /&gt;
&lt;br /&gt;
At the end of the calculation, data files and Matlab files will be automatically generated.  Transfer these files to a location where you have Matlab installed.  Run the following commands in Matlab and you will get the free energy plot (for solid and liquid phases).  The melting point is the temperature at which the two free energy curves cross.&lt;br /&gt;
&lt;br /&gt;
In this test case, the analysis files are generated in directory&lt;br /&gt;
&amp;lt;tt&amp;gt;${MDPP}/runs/Single_Elem_Tm&amp;lt;/tt&amp;gt;.  They are&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Hessian_SW_Si.m&lt;br /&gt;
Free_Energy_of_SW_Si.m&lt;br /&gt;
tar_SW_Si&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Run the following command to zip all data &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 cd ${MDPP}/runs/Single_Elem_Tm&lt;br /&gt;
 ./tar_SW_Si&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
into a tar file &amp;lt;tt&amp;gt;inter_SW_Si.tar&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Copy this file to your local computer and unzip the data.  Next, run the following command in Matlab.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Hessian_SW_Si.m&lt;br /&gt;
Free_Energy_of_SW_Si.m&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You&#039;ll see the following output files that contain all free energy data and the error analysis.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Solid Free Energy Info&lt;br /&gt;
&lt;br /&gt;
lattice const =    5.43095&lt;br /&gt;
strain =    0.00518&lt;br /&gt;
E_0 = -2218.74337 eV (   -4.33348 eV/atom)&lt;br /&gt;
F_w = -253.34582 eV (   -0.49482 eV/atom)&lt;br /&gt;
F_ha = E_0 + F_w = -2472.08919 eV (   -4.82830 eV/atom)&lt;br /&gt;
W_re_to_ha =    5.99169 eV (    0.01170 eV/atom)&lt;br /&gt;
W_ha_to_re =   -7.30068 eV (   -0.01426 eV/atom)&lt;br /&gt;
F_re - F_ha = (W_ha_to_re - W_re_to_ha)/2 =   -6.64619 eV (   -0.01298 eV/atom)&lt;br /&gt;
F_re at 1600.000000 = -2478.73538 eV (   -4.84128 eV/atom)&lt;br /&gt;
W_T1_to_T11 =  417.87095 eV (    0.81615 eV/atom)&lt;br /&gt;
W_T11_to_T1 = -417.87508 eV (   -0.81616 eV/atom)&lt;br /&gt;
dW1 = (W_T1_to_T11 - W_T11_to_T1)/2 =  417.87302 eV (    0.81616 eV/atom)&lt;br /&gt;
F_re at 2000.000000 = -2605.55266 eV (   -5.08897 eV/atom)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Liquid Free Energy Info&lt;br /&gt;
&lt;br /&gt;
strain =   -0.01894&lt;br /&gt;
F_ideal = -919.36940 (   -1.79564 eV/atom)&lt;br /&gt;
W_re_to_ga = 1888.21102 eV (    3.68791 eV/atom)&lt;br /&gt;
W_ga_to_re = -1887.53306 eV (   -3.68659 eV/atom)&lt;br /&gt;
F_re - F_ga = (W_ga_to_re - W_re_to_ga)/2 = -1887.87204 eV (   -3.68725 eV/atom)&lt;br /&gt;
W_ga_to_id = -256.29295 eV (   -0.50057 eV/atom)&lt;br /&gt;
W_id_to_ga =  256.52177 eV (    0.50102 eV/atom)&lt;br /&gt;
F_ga - F_id = (W_id_to_ga - W_ga_to_id)/2 =  256.40736 eV (    0.50080 eV/atom)&lt;br /&gt;
F_re at 1800.000000 = -2550.83408 eV (   -4.98210 eV/atom)&lt;br /&gt;
W_T2_to_T22 = -583.02785 eV (   -1.13873 eV/atom)&lt;br /&gt;
W_T22_to_T2 =  583.06542 eV (    1.13880 eV/atom)&lt;br /&gt;
dW2 = (W_T2_to_T22 - W_T22_to_T2)/2 = -583.04664 eV (   -1.13876 eV/atom)&lt;br /&gt;
F_re at 1384.615385 = -2386.68534 eV (   -4.66149 eV/atom)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Error Analysis&lt;br /&gt;
&lt;br /&gt;
Solid Side&lt;br /&gt;
Err_re_to_ha =    0.02769 eV ( 0.00005407 eV/atom)( 0.628 K)&lt;br /&gt;
Err_ha_to_re =    0.02815 eV ( 0.00005498 eV/atom)( 0.638 K)&lt;br /&gt;
Err_T1_to_T11 =    0.00374 eV ( 0.00000730 eV/atom)( 0.085 K)&lt;br /&gt;
Err_T11_to_T1 =    0.00441 eV ( 0.00000861 eV/atom)( 0.100 K)&lt;br /&gt;
&lt;br /&gt;
Liquid Side&lt;br /&gt;
Err_re_to_ga =    0.04793 eV ( 0.00009362 eV/atom)( 1.086 K)&lt;br /&gt;
Err_ga_to_re =    0.06601 eV ( 0.00012893 eV/atom)( 1.496 K)&lt;br /&gt;
Err_ga_to_id =    0.02557 eV ( 0.00004993 eV/atom)( 0.580 K)&lt;br /&gt;
Err_id_to_ga =    0.03421 eV ( 0.00006682 eV/atom)( 0.776 K)&lt;br /&gt;
Err_T2_to_T22 =    0.01488 eV ( 0.00002906 eV/atom)( 0.337 K)&lt;br /&gt;
Err_T22_to_T2 =    0.01183 eV ( 0.00002311 eV/atom)( 0.268 K)&lt;br /&gt;
Max dT =  2.315&lt;br /&gt;
Tm= 1695.08000 (K), err= 1.044 Fm =   -4.89779 (eV/atom)&lt;br /&gt;
L=      165.8833097832 (eV) Ss=0.308452 Sl=0.406313&lt;br /&gt;
L=        0.3239908394 (eV/atom) ss=0.000602 sl=0.000794&lt;br /&gt;
L=    31206.7976529696 (J/mol) ss=58.027496 sl=76.437718&lt;br /&gt;
L=  1111115.7748689589 (J/kg) ss=2066.064819 sl=2721.559412&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;The Gibbs free energy (in eV/atom) as a function of temperature (in K) of the solid (blue) and liquid (green) phases of silicon described by the Stillinger-Weber (SW) potential.  The intersection of the two curves determines the melting point.&amp;quot; widths=&amp;quot;300px&amp;quot; height=&amp;quot;200px&amp;quot; perrow=&amp;quot;1&amp;quot;&amp;gt; &lt;br /&gt;
Image:SW_Si_Tm.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Melting point of Other Elements ==&lt;br /&gt;
&lt;br /&gt;
===MEAM Si===&lt;br /&gt;
Following the same procedure, we can evaluate the melting point of Au with the &#039;&#039;&#039;meam-lammps&#039;&#039;&#039;  potential. The results are &amp;lt;math&amp;gt;T_m = 1140.1&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 1315 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 48.70 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 83.91 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The above results are in good agreement with MSMSE 16, 085005 (2008), Table 1, in which &amp;lt;math&amp;gt;T_m = 1411.3 \pm 0.4&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 1309 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 48.74 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 74.79 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===MEAM Au===&lt;br /&gt;
Following the same procedure, we can evaluate the melting point of Au with the &#039;&#039;&#039;meam-lammps&#039;&#039;&#039;  potential. The results are &amp;lt;math&amp;gt;T_m = 1145&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 92.4 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 77.63 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 93.52 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This is to be compared with MSMSE 16, 085005 (2008), Table 1, in which &amp;lt;math&amp;gt;T_m = 1120.0 \pm 0.6&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 92 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 77.47 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 93.72 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The agreement on &amp;lt;math&amp;gt;L&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;S_L&amp;lt;/math&amp;gt; is pretty good.  The values of &amp;lt;math&amp;gt;T_m&amp;lt;/math&amp;gt; do not agree so well.&lt;br /&gt;
&lt;br /&gt;
===EAM Au===&lt;br /&gt;
Following the same procedure, we can evaluate the melting point of Cu with the &#039;&#039;&#039;eam&#039;&#039;&#039;  potential. The results are &amp;lt;math&amp;gt;T_m = 1229.6&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 161 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 71.57 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 79.90 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This is to be compared with MSMSE 16, 085005 (2008), Table 1, in which &amp;lt;math&amp;gt;T_m = 1239.6 \pm 2.3&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 164 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 71.78 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 80.17 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The relative differences in &amp;lt;math&amp;gt;T_m&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;L&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;S_L&amp;lt;/math&amp;gt; are all around or less 1%.&lt;br /&gt;
&lt;br /&gt;
===MEAM Ge===&lt;br /&gt;
Following the same procedure, we can evaluate the melting point of Au with the &#039;&#039;&#039;meam-lammps&#039;&#039;&#039;  potential. The results are &amp;lt;math&amp;gt;T_m = 1216.5 &amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 426.8 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 58.36 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 83.85 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is to be compared with MSMSE 16, 085005 (2008), Table 1, in which &amp;lt;math&amp;gt;T_m = 1216.2 \pm 0.6&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 427 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 58.34 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 83.84 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The agreement is fantastic&lt;br /&gt;
&lt;br /&gt;
===SW Ge===&lt;br /&gt;
Following the same procedure, we can evaluate the melting point of Au with the &#039;&#039;&#039;meam-lammps&#039;&#039;&#039;  potential. The results are &amp;lt;math&amp;gt;T_m = 2902.1&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 836.3 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 84.4 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 105.3 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is to be compared with MSMSE 16, 085005 (2008), Table 1, in which &amp;lt;math&amp;gt;T_m = 2898.0 \pm 1.7&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 847 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 84.07 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 105.30 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The agreement is OK, not too outside the error bar.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Wei_Cai&amp;diff=6809</id>
		<title>Wei Cai</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Wei_Cai&amp;diff=6809"/>
		<updated>2019-09-17T20:57:30Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Professor &amp;lt;br&amp;gt;&lt;br /&gt;
Mechanics and Computation &amp;lt;br&amp;gt;&lt;br /&gt;
Mechanical Engineering Department &amp;lt;br&amp;gt;&lt;br /&gt;
Stanford University&lt;br /&gt;
&lt;br /&gt;
Building 520 Room 126 &amp;lt;br&amp;gt;&lt;br /&gt;
452 Escondido Mall &amp;lt;br&amp;gt;&lt;br /&gt;
Stanford, CA 94305-4040 &amp;lt;br&amp;gt;&lt;br /&gt;
Phone: 650-736-1671&lt;br /&gt;
&lt;br /&gt;
[http://www.stanford.edu/~caiwei Wei Cai&#039;s home page]&lt;br /&gt;
&lt;br /&gt;
[[Wei&#039;s Bookshelf]]&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Computing_Melting_Point_by_Free_Energy_Method&amp;diff=6787</id>
		<title>Computing Melting Point by Free Energy Method</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Computing_Melting_Point_by_Free_Energy_Method&amp;diff=6787"/>
		<updated>2019-04-02T21:21:25Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Melting point of Other Elements */&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;
Computing Melting Point by Free Eneregy Method&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;Seunghwa Ryu and Wei Cai&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;&amp;lt;STRONG&amp;gt;Modified by Yanming Wang (Sep 2015)&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This tutorial describes how to compute melting points from free energy methods.  We provide the MD++ script files and describe how to use them in detail.  The theoretical background is published in &lt;br /&gt;
&lt;br /&gt;
Comparison of Thermal Properties Predicted by Interatomic Potential Models,  &#039;&#039;Modelling and Simulation in Materials Science and Engineering&#039;&#039;, &#039;&#039;&#039;16&#039;&#039;&#039;, 085005 (2008). [http://micro.stanford.edu/~caiwei/papers/Ryu08msmse-meltingT.pdf (PDF)] (Paper selected as [http://www.iop.org/EJ/journal/-page=featured/0965-0393 MSMSE featured article]).  &lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Download files==&lt;br /&gt;
&lt;br /&gt;
First, you need to install MD++ on your computer by following the instructions on [[MD++_Manuals | MD++ Manuals]].&lt;br /&gt;
&lt;br /&gt;
Second, copy files [[media:melting_cubic.tcl.txt‎ | melting_cubic.tcl]] and&lt;br /&gt;
[[media:melting_noncubic.tcl.txt‎ | melting_noncubic.tcl]] to your input file directory of MD++.  You can do so by the following commands (assuming you have installed MD++ in &amp;lt;tt&amp;gt;~/Codes/MD++&amp;lt;/tt&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 export MDPP=~/Codes/MD++&lt;br /&gt;
 mkdir -p ${MDPP}/scripts/work/melting&lt;br /&gt;
 cd ${MDPP}/scripts/work/melting&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki-1.11.0/images/Melting_cubic.tcl.txt -O melting_cubic.tcl&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki-1.11.0/images/Melting_noncubic.tcl.txt -O melting_noncubic.tcl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Both files contain a big comment section in the beginning that describes in detail the (16) steps to compute the melting point.  These steps are fully automated.  In this tutorial, we describe how to run these scripts on a parallel cluster (using wcr.stanford.edu as an example) and what kind of results you should expect.&lt;br /&gt;
&lt;br /&gt;
==Compile executable file==&lt;br /&gt;
&lt;br /&gt;
Different executables in MD++ contains different interatomic potentials, for example, &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sw                  - Stillinger-Weber Silicon (modified by Balamane et al.)&lt;br /&gt;
sworig              - Original version of SW Silicon&lt;br /&gt;
swge                - Stillinger-Weber Germanium&lt;br /&gt;
tersoff             - Tersoff potential for Silicon&lt;br /&gt;
meam-lammps         - MEAM (taken from lammps)&lt;br /&gt;
meam-baskes         - MEAM (taken from Baskes&#039;s code dynamo)&lt;br /&gt;
meam                - MEAM (directly implemented in MD++)&lt;br /&gt;
eam                 - Embedded Atom Method &lt;br /&gt;
fs                  - Finnis-Sinclair&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here we use Si as an example. You can compile &amp;lt;tt&amp;gt;sworig&amp;lt;/tt&amp;gt; by typing&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 cd ${MDPP}&lt;br /&gt;
 make sworig build=R SYS=wcr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
If compilation is successful, this will create binary file &amp;lt;tt&amp;gt;sworig_wcr&amp;lt;/tt&amp;gt; file in your &amp;lt;tt&amp;gt;${MDPP}/bin&amp;lt;/tt&amp;gt; directory.&lt;br /&gt;
&lt;br /&gt;
The script [[media:melting_cubic.tcl.txt‎ | melting_cubic.tcl]] can be used with many potentials (i.e. executables), which are explained in the header region of the file.  Contact &amp;lt;tt&amp;gt;shryu@stanford.edu&amp;lt;/tt&amp;gt; if you have further questions.&lt;br /&gt;
&lt;br /&gt;
==Submit jobs==&lt;br /&gt;
&lt;br /&gt;
Here are the PBS scripts ([[media:melt1.pbs.txt‎ |melt1.pbs]] and&lt;br /&gt;
[[media:melt2.pbs.txt‎ |melt2.pbs]]) for submitting the jobs on wcr.stanford.edu.  You can submit jobs by typing the following commands.  This is a test case that computes the melting points of silicon described by the Stillinger-Weber (SW) potential on the parallel cluster wcr.stanford.edu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 cd ${MDPP}&lt;br /&gt;
 mkdir runs/Single_Elem_Tm&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki-1.11.0/images/Melt1.pbs.txt -O melt1.pbs&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki-1.11.0/images/Melt2.pbs.txt -O melt2.pbs&lt;br /&gt;
 qsub melt1.pbs&lt;br /&gt;
 qsub melt2.pbs&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After the calculation is finished (within 24 hours), the free energy data will be stored in the following two directories.&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
${MDPP}/runs/Single_Elem_Tm/SW_Si_Solid/&lt;br /&gt;
${MDPP}/runs/Single_Elem_Tm/SW_Si_Liquid/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Analyse data==&lt;br /&gt;
&lt;br /&gt;
At the end of the calculation, data files and Matlab files will be automatically generated.  Transfer these files to a location where you have Matlab installed.  Run the following commands in Matlab and you will get the free energy plot (for solid and liquid phases).  The melting point is the temperature at which the two free energy curves cross.&lt;br /&gt;
&lt;br /&gt;
In this test case, the analysis files are generated in directory&lt;br /&gt;
&amp;lt;tt&amp;gt;${MDPP}/runs/Single_Elem_Tm&amp;lt;/tt&amp;gt;.  They are&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Hessian_SW_Si.m&lt;br /&gt;
Free_Energy_of_SW_Si.m&lt;br /&gt;
tar_SW_Si&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Run the following command to zip all data &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 cd ${MDPP}/runs/Single_Elem_Tm&lt;br /&gt;
 ./tar_SW_Si&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
into a tar file &amp;lt;tt&amp;gt;inter_SW_Si.tar&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Copy this file to your local computer and unzip the data.  Next, run the following command in Matlab.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Hessian_SW_Si.m&lt;br /&gt;
Free_Energy_of_SW_Si.m&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You&#039;ll see the following output files that contain all free energy data and the error analysis.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Solid Free Energy Info&lt;br /&gt;
&lt;br /&gt;
lattice const =    5.43095&lt;br /&gt;
strain =    0.00518&lt;br /&gt;
E_0 = -2218.74337 eV (   -4.33348 eV/atom)&lt;br /&gt;
F_w = -253.34582 eV (   -0.49482 eV/atom)&lt;br /&gt;
F_ha = E_0 + F_w = -2472.08919 eV (   -4.82830 eV/atom)&lt;br /&gt;
W_re_to_ha =    5.99169 eV (    0.01170 eV/atom)&lt;br /&gt;
W_ha_to_re =   -7.30068 eV (   -0.01426 eV/atom)&lt;br /&gt;
F_re - F_ha = (W_ha_to_re - W_re_to_ha)/2 =   -6.64619 eV (   -0.01298 eV/atom)&lt;br /&gt;
F_re at 1600.000000 = -2478.73538 eV (   -4.84128 eV/atom)&lt;br /&gt;
W_T1_to_T11 =  417.87095 eV (    0.81615 eV/atom)&lt;br /&gt;
W_T11_to_T1 = -417.87508 eV (   -0.81616 eV/atom)&lt;br /&gt;
dW1 = (W_T1_to_T11 - W_T11_to_T1)/2 =  417.87302 eV (    0.81616 eV/atom)&lt;br /&gt;
F_re at 2000.000000 = -2605.55266 eV (   -5.08897 eV/atom)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Liquid Free Energy Info&lt;br /&gt;
&lt;br /&gt;
strain =   -0.01894&lt;br /&gt;
F_ideal = -919.36940 (   -1.79564 eV/atom)&lt;br /&gt;
W_re_to_ga = 1888.21102 eV (    3.68791 eV/atom)&lt;br /&gt;
W_ga_to_re = -1887.53306 eV (   -3.68659 eV/atom)&lt;br /&gt;
F_re - F_ga = (W_ga_to_re - W_re_to_ga)/2 = -1887.87204 eV (   -3.68725 eV/atom)&lt;br /&gt;
W_ga_to_id = -256.29295 eV (   -0.50057 eV/atom)&lt;br /&gt;
W_id_to_ga =  256.52177 eV (    0.50102 eV/atom)&lt;br /&gt;
F_ga - F_id = (W_id_to_ga - W_ga_to_id)/2 =  256.40736 eV (    0.50080 eV/atom)&lt;br /&gt;
F_re at 1800.000000 = -2550.83408 eV (   -4.98210 eV/atom)&lt;br /&gt;
W_T2_to_T22 = -583.02785 eV (   -1.13873 eV/atom)&lt;br /&gt;
W_T22_to_T2 =  583.06542 eV (    1.13880 eV/atom)&lt;br /&gt;
dW2 = (W_T2_to_T22 - W_T22_to_T2)/2 = -583.04664 eV (   -1.13876 eV/atom)&lt;br /&gt;
F_re at 1384.615385 = -2386.68534 eV (   -4.66149 eV/atom)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Error Analysis&lt;br /&gt;
&lt;br /&gt;
Solid Side&lt;br /&gt;
Err_re_to_ha =    0.02769 eV ( 0.00005407 eV/atom)( 0.628 K)&lt;br /&gt;
Err_ha_to_re =    0.02815 eV ( 0.00005498 eV/atom)( 0.638 K)&lt;br /&gt;
Err_T1_to_T11 =    0.00374 eV ( 0.00000730 eV/atom)( 0.085 K)&lt;br /&gt;
Err_T11_to_T1 =    0.00441 eV ( 0.00000861 eV/atom)( 0.100 K)&lt;br /&gt;
&lt;br /&gt;
Liquid Side&lt;br /&gt;
Err_re_to_ga =    0.04793 eV ( 0.00009362 eV/atom)( 1.086 K)&lt;br /&gt;
Err_ga_to_re =    0.06601 eV ( 0.00012893 eV/atom)( 1.496 K)&lt;br /&gt;
Err_ga_to_id =    0.02557 eV ( 0.00004993 eV/atom)( 0.580 K)&lt;br /&gt;
Err_id_to_ga =    0.03421 eV ( 0.00006682 eV/atom)( 0.776 K)&lt;br /&gt;
Err_T2_to_T22 =    0.01488 eV ( 0.00002906 eV/atom)( 0.337 K)&lt;br /&gt;
Err_T22_to_T2 =    0.01183 eV ( 0.00002311 eV/atom)( 0.268 K)&lt;br /&gt;
Max dT =  2.315&lt;br /&gt;
Tm= 1695.08000 (K), err= 1.044 Fm =   -4.89779 (eV/atom)&lt;br /&gt;
L=      165.8833097832 (eV) Ss=0.308452 Sl=0.406313&lt;br /&gt;
L=        0.3239908394 (eV/atom) ss=0.000602 sl=0.000794&lt;br /&gt;
L=    31206.7976529696 (J/mol) ss=58.027496 sl=76.437718&lt;br /&gt;
L=  1111115.7748689589 (J/kg) ss=2066.064819 sl=2721.559412&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;The Gibbs free energy (in eV/atom) as a function of temperature (in K) of the solid (blue) and liquid (green) phases of silicon described by the Stillinger-Weber (SW) potential.  The intersection of the two curves determines the melting point.&amp;quot; widths=&amp;quot;300px&amp;quot; height=&amp;quot;200px&amp;quot; perrow=&amp;quot;1&amp;quot;&amp;gt; &lt;br /&gt;
Image:SW_Si_Tm.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Melting point of Other Elements ==&lt;br /&gt;
&lt;br /&gt;
===MEAM Si===&lt;br /&gt;
Following the same procedure, we can evaluate the melting point of Au with the &#039;&#039;&#039;meam-lammps&#039;&#039;&#039;  potential. The results are &amp;lt;math&amp;gt;T_m = 1140.1&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 1315 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 48.70 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 83.91 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The above results are in good agreement with MSMSE 16, 085005 (2008), Table 1, in which &amp;lt;math&amp;gt;T_m = 1411.3 \pm 0.4&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 1309 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 48.74 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 74.79 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===MEAM Au===&lt;br /&gt;
Following the same procedure, we can evaluate the melting point of Au with the &#039;&#039;&#039;meam-lammps&#039;&#039;&#039;  potential. The results are &amp;lt;math&amp;gt;T_m = 1145&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 92.4 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 77.63 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 93.52 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This is to be compared with MSMSE 16, 085005 (2008), Table 1, in which &amp;lt;math&amp;gt;T_m = 1120.0 \pm 0.6&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 92 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 77.47 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 93.72 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The agreement on &amp;lt;math&amp;gt;L&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;S_L&amp;lt;/math&amp;gt; is pretty good.  The values of &amp;lt;math&amp;gt;T_m&amp;lt;/math&amp;gt; do not agree so well.&lt;br /&gt;
&lt;br /&gt;
===EAM Au===&lt;br /&gt;
Following the same procedure, we can evaluate the melting point of Cu with the &#039;&#039;&#039;eam&#039;&#039;&#039;  potential. The results are &amp;lt;math&amp;gt;T_m = 1229.6&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 161 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 71.57 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 79.90 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This is to be compared with MSMSE 16, 085005 (2008), Table 1, in which &amp;lt;math&amp;gt;T_m = 1239.6 \pm 2.3&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 164 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 71.78 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 80.17 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The relative differences in &amp;lt;math&amp;gt;T_m&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;L&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;S_L&amp;lt;/math&amp;gt; are all around or less 1%.&lt;br /&gt;
&lt;br /&gt;
===MEAM Ge===&lt;br /&gt;
Following the same procedure, we can evaluate the melting point of Au with the &#039;&#039;&#039;meam-lammps&#039;&#039;&#039;  potential. The results are &amp;lt;math&amp;gt;T_m = 1216.5 &amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 426.8 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 58.36 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 83.85 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is to be compared with MSMSE 16, 085005 (2008), Table 1, in which &amp;lt;math&amp;gt;T_m = 1216.2 \pm 0.6&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 427 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 58.34 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 83.84 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The agreement is fantastic&lt;br /&gt;
&lt;br /&gt;
===SW Ge===&lt;br /&gt;
Following the same procedure, we can evaluate the melting point of Au with the &#039;&#039;&#039;meam-lammps&#039;&#039;&#039;  potential. The results are &amp;lt;math&amp;gt;T_m = 2902.1&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 836.3 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 84.4 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 105.3 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is to be compared with MSMSE 16, 085005 (2008), Table 1, in which &amp;lt;math&amp;gt;T_m = 2898.0 \pm 1.7&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 847 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 84.07 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 105.30 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The agreement is OK, not too outside the error bar.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=How_to_install_Moose&amp;diff=6665</id>
		<title>How to install Moose</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=How_to_install_Moose&amp;diff=6665"/>
		<updated>2017-06-11T18:04:02Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Create MOOSE Profile */&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;
How to install MOOSE&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;Yanming Wang&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;June, 2017&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://mooseframework.org MOOSE], short for Multiphysics Object-Oriented Simulation Environment, is a finite-element multi-physics framework developed by Idaho National Laboratory. Here we briefly describe how to install MOOSE on the [https://web.stanford.edu/group/hpcc/cgi-bin/certainty/index.php/Main_Page Certainty cluster].  &lt;br /&gt;
&lt;br /&gt;
== System requirements ==&lt;br /&gt;
The installation of MOOSE requires Compiler: C++11 Compliant GCC 4.8.4, Clang 3.4.0, Intel20130607, and Python 2.7+. On Certainty, they are provided as modules, so you can simply type the following commands to load them,&lt;br /&gt;
&lt;br /&gt;
 module load gnu/4.7.2&lt;br /&gt;
 module load clang/3.5.2&lt;br /&gt;
 module load gnu/5.2&lt;br /&gt;
 module load openmpi/1.10.2-gnu-5.2&lt;br /&gt;
 module load cmake/2.8.12.2&lt;br /&gt;
&lt;br /&gt;
Or you can copy and paste them in your &#039;&#039;&#039;~/.bashrc&#039;&#039;&#039; file, which will load the modules automatically when you login to Certainty. Notice that on Certainty  &#039;&#039;&#039;clang&#039;&#039;&#039; requires some libraries from &#039;&#039;&#039;gnu/4.7.2&#039;&#039;&#039;, so that you have to load &#039;&#039;&#039;gnu/4.7.2&#039;&#039;&#039; first and update it later (to &#039;&#039;&#039;gnu/5.2&#039;&#039;&#039; in this case) to satisfy the MOOSE requirement. Also, the version of &#039;&#039;&#039;openmpi&#039;&#039;&#039; compiler should be compatible with the &#039;&#039;&#039;gcc&#039;&#039;&#039; compiler.&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
The procedures of MOOSE installation is given in details on their [http://mooseframework.org/getting-started/ official website]. &lt;br /&gt;
=== PETSc ===&lt;br /&gt;
First, you need to install PETSc following the following steps. (mostly follow the official tutorial) &lt;br /&gt;
==== PREFIX Setup ====&lt;br /&gt;
 export CLUSTER_TEMP=`mktemp -d /tmp/cluster_temp.XXXXXX`&lt;br /&gt;
 export PACKAGES_DIR=$HOME/moose-compilers&lt;br /&gt;
==== Download Software ====&lt;br /&gt;
 cd $CLUSTER_TEMP&lt;br /&gt;
 curl -L -O http://ftp.mcs.anl.gov/pub/petsc/release-snapshots/petsc-3.6.4.tar.gz&lt;br /&gt;
==== Extract Software ====&lt;br /&gt;
 cd $CLUSTER_TEMP&lt;br /&gt;
 tar -xf petsc-3.6.4.tar.gz&lt;br /&gt;
==== Create MOOSE Profile ====&lt;br /&gt;
Make note of your $PACKAGES_DIR:&lt;br /&gt;
&lt;br /&gt;
 echo $PACKAGES_DIR&lt;br /&gt;
Edit the following file:&lt;br /&gt;
&lt;br /&gt;
 $HOME/.moose-profile&lt;br /&gt;
Add the following content to that file:&lt;br /&gt;
&lt;br /&gt;
 export PACKAGES_DIR=&amp;lt;span style=&amp;quot;color:#FFFFFF; background:#FF69B4&amp;quot;&amp;gt;INSERT-PACKAGES-DIR-HERE!!!!&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 export CC=mpicc&lt;br /&gt;
 export CXX=mpicxx&lt;br /&gt;
 export F90=mpif90&lt;br /&gt;
 export F77=mpif77&lt;br /&gt;
 export FC=mpif90&lt;br /&gt;
 &lt;br /&gt;
 export ARCH=gcc&lt;br /&gt;
 export PETSC_DIR=$PACKAGES_DIR/petsc/petsc-3.6.4/$ARCH-opt&lt;br /&gt;
&lt;br /&gt;
And run,&lt;br /&gt;
 source ~/.moose-profile&lt;br /&gt;
&lt;br /&gt;
==== Build and Install PETSc ====&lt;br /&gt;
 cd $CLUSTER_TEMP/petsc-3.6.4&lt;br /&gt;
&lt;br /&gt;
 ./configure \&lt;br /&gt;
 --prefix=$PETSC_DIR \&lt;br /&gt;
 --download-hypre=1 \&lt;br /&gt;
 --with-ssl=0 \&lt;br /&gt;
 --with-debugging=yes \&lt;br /&gt;
 --with-pic=1 \&lt;br /&gt;
 --with-shared-libraries=1 \&lt;br /&gt;
 --with-cc=mpicc \&lt;br /&gt;
 --with-cxx=mpicxx \&lt;br /&gt;
 --with-fc=mpif90 \&lt;br /&gt;
 --download-fblaslapack=1 \&lt;br /&gt;
 --download-metis=1 \&lt;br /&gt;
 --download-parmetis=1 \&lt;br /&gt;
 --download-superlu_dist=1 \&lt;br /&gt;
 --download-scalapack=1 \&lt;br /&gt;
 --download-mumps=1 \&lt;br /&gt;
 CC=mpicc CXX=mpicxx FC=mpif90 F77=mpif77 F90=mpif90 \&lt;br /&gt;
 CFLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 CXXFLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 FFLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 FCFLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 F90FLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 F77FLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 PETSC_DIR=`pwd`&lt;br /&gt;
&lt;br /&gt;
At the end of the configure step, the system will print out messages on your terminal window.  The last printed section contains the make command you will need to enter on your terminal window.  At the end of the make step, there will be another message about the make install commands. Just follow them to complete the setup.  An example is the following.  The specific folder you will need to enter will be different.  Just copy and paste the printed out message.&lt;br /&gt;
&lt;br /&gt;
 make PETSC_DIR=/tmp/cluster_temp.wowSIm/petsc-3.6.4 PETSC_ARCH=arch-linux2-c-debug all&lt;br /&gt;
 make PETSC_DIR=/tmp/cluster_temp.wowSIm/petsc-3.6.4 PETSC_ARCH=arch-linux2-c-debug install&lt;br /&gt;
&lt;br /&gt;
== Clone MOOSE ==&lt;br /&gt;
You can do exactly the same as suggested by their official tutorial.&lt;br /&gt;
&lt;br /&gt;
 mkdir ~/projects&lt;br /&gt;
 cd ~/projects&lt;br /&gt;
 git clone https://github.com/idaholab/moose.git&lt;br /&gt;
 cd ~/projects/moose&lt;br /&gt;
 git checkout master&lt;br /&gt;
&lt;br /&gt;
== Compile libMesh ==&lt;br /&gt;
This step is straight forward, but you may need some patience. The compilation may take up to an hour.  &lt;br /&gt;
 cd ~/projects/moose&lt;br /&gt;
 scripts/update_and_rebuild_libmesh.sh&lt;br /&gt;
&lt;br /&gt;
== Test ==  &lt;br /&gt;
 cd ~/projects/moose/test&lt;br /&gt;
 make -j8&lt;br /&gt;
 ./run_tests -j8&lt;br /&gt;
&lt;br /&gt;
The test results should look like&lt;br /&gt;
 Ran 1329 tests in 191.7 seconds&lt;br /&gt;
 1328 passed, 51 skipped, 0 pending, 1 FAILED&lt;br /&gt;
You may receive one message regarding the failed item,  &lt;br /&gt;
 preconditioners/pbp.lots_of_variables....................................................... FAILED (TIMEOUT)&lt;br /&gt;
Don&#039;t worry about it. This is a timed test, which most likely indicates that the computer is running slow (or the machine is overburdened).&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=How_to_install_Moose&amp;diff=6664</id>
		<title>How to install Moose</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=How_to_install_Moose&amp;diff=6664"/>
		<updated>2017-06-11T17:48:35Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Build and Install PETSc */&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;
How to install MOOSE&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;Yanming Wang&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;June, 2017&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://mooseframework.org MOOSE], short for Multiphysics Object-Oriented Simulation Environment, is a finite-element multi-physics framework developed by Idaho National Laboratory. Here we briefly describe how to install MOOSE on the [https://web.stanford.edu/group/hpcc/cgi-bin/certainty/index.php/Main_Page Certainty cluster].  &lt;br /&gt;
&lt;br /&gt;
== System requirements ==&lt;br /&gt;
The installation of MOOSE requires Compiler: C++11 Compliant GCC 4.8.4, Clang 3.4.0, Intel20130607, and Python 2.7+. On Certainty, they are provided as modules, so you can simply type the following commands to load them,&lt;br /&gt;
&lt;br /&gt;
 module load gnu/4.7.2&lt;br /&gt;
 module load clang/3.5.2&lt;br /&gt;
 module load gnu/5.2&lt;br /&gt;
 module load openmpi/1.10.2-gnu-5.2&lt;br /&gt;
 module load cmake/2.8.12.2&lt;br /&gt;
&lt;br /&gt;
Or you can copy and paste them in your &#039;&#039;&#039;~/.bashrc&#039;&#039;&#039; file, which will load the modules automatically when you login to Certainty. Notice that on Certainty  &#039;&#039;&#039;clang&#039;&#039;&#039; requires some libraries from &#039;&#039;&#039;gnu/4.7.2&#039;&#039;&#039;, so that you have to load &#039;&#039;&#039;gnu/4.7.2&#039;&#039;&#039; first and update it later (to &#039;&#039;&#039;gnu/5.2&#039;&#039;&#039; in this case) to satisfy the MOOSE requirement. Also, the version of &#039;&#039;&#039;openmpi&#039;&#039;&#039; compiler should be compatible with the &#039;&#039;&#039;gcc&#039;&#039;&#039; compiler.&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
The procedures of MOOSE installation is given in details on their [http://mooseframework.org/getting-started/ official website]. &lt;br /&gt;
=== PETSc ===&lt;br /&gt;
First, you need to install PETSc following the following steps. (mostly follow the official tutorial) &lt;br /&gt;
==== PREFIX Setup ====&lt;br /&gt;
 export CLUSTER_TEMP=`mktemp -d /tmp/cluster_temp.XXXXXX`&lt;br /&gt;
 export PACKAGES_DIR=$HOME/moose-compilers&lt;br /&gt;
==== Download Software ====&lt;br /&gt;
 cd $CLUSTER_TEMP&lt;br /&gt;
 curl -L -O http://ftp.mcs.anl.gov/pub/petsc/release-snapshots/petsc-3.6.4.tar.gz&lt;br /&gt;
==== Extract Software ====&lt;br /&gt;
 cd $CLUSTER_TEMP&lt;br /&gt;
 tar -xf petsc-3.6.4.tar.gz&lt;br /&gt;
==== Create MOOSE Profile ====&lt;br /&gt;
Make note of your $PACKAGES_DIR:&lt;br /&gt;
&lt;br /&gt;
 echo $PACKAGES_DIR&lt;br /&gt;
Edit the following file:&lt;br /&gt;
&lt;br /&gt;
 $HOME/.moose-profile&lt;br /&gt;
Add the following content to that file:&lt;br /&gt;
&lt;br /&gt;
 export PACKAGES_DIR=INSERT-PACKAGES-DIR-HERE!!!!&lt;br /&gt;
&lt;br /&gt;
 export CC=mpicc&lt;br /&gt;
 export CXX=mpicxx&lt;br /&gt;
 export F90=mpif90&lt;br /&gt;
 export F77=mpif77&lt;br /&gt;
 export FC=mpif90&lt;br /&gt;
 &lt;br /&gt;
 export ARCH=gcc&lt;br /&gt;
 export PETSC_DIR=$PACKAGES_DIR/petsc/petsc-3.6.4/$ARCH-opt&lt;br /&gt;
&lt;br /&gt;
And run,&lt;br /&gt;
 source ~/.moose-profile&lt;br /&gt;
==== Build and Install PETSc ====&lt;br /&gt;
 cd $CLUSTER_TEMP/petsc-3.6.4&lt;br /&gt;
&lt;br /&gt;
 ./configure \&lt;br /&gt;
 --prefix=$PETSC_DIR \&lt;br /&gt;
 --download-hypre=1 \&lt;br /&gt;
 --with-ssl=0 \&lt;br /&gt;
 --with-debugging=yes \&lt;br /&gt;
 --with-pic=1 \&lt;br /&gt;
 --with-shared-libraries=1 \&lt;br /&gt;
 --with-cc=mpicc \&lt;br /&gt;
 --with-cxx=mpicxx \&lt;br /&gt;
 --with-fc=mpif90 \&lt;br /&gt;
 --download-fblaslapack=1 \&lt;br /&gt;
 --download-metis=1 \&lt;br /&gt;
 --download-parmetis=1 \&lt;br /&gt;
 --download-superlu_dist=1 \&lt;br /&gt;
 --download-scalapack=1 \&lt;br /&gt;
 --download-mumps=1 \&lt;br /&gt;
 CC=mpicc CXX=mpicxx FC=mpif90 F77=mpif77 F90=mpif90 \&lt;br /&gt;
 CFLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 CXXFLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 FFLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 FCFLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 F90FLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 F77FLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 PETSC_DIR=`pwd`&lt;br /&gt;
&lt;br /&gt;
At the end of the configure step, the system will print out messages on your terminal window.  The last printed section contains the make command you will need to enter on your terminal window.  At the end of the make step, there will be another message about the make install commands. Just follow them to complete the setup.  An example is the following.  The specific folder you will need to enter will be different.  Just copy and paste the printed out message.&lt;br /&gt;
&lt;br /&gt;
 make PETSC_DIR=/tmp/cluster_temp.wowSIm/petsc-3.6.4 PETSC_ARCH=arch-linux2-c-debug all&lt;br /&gt;
 make PETSC_DIR=/tmp/cluster_temp.wowSIm/petsc-3.6.4 PETSC_ARCH=arch-linux2-c-debug install&lt;br /&gt;
&lt;br /&gt;
== Clone MOOSE ==&lt;br /&gt;
You can do exactly the same as suggested by their official tutorial.&lt;br /&gt;
&lt;br /&gt;
 mkdir ~/projects&lt;br /&gt;
 cd ~/projects&lt;br /&gt;
 git clone https://github.com/idaholab/moose.git&lt;br /&gt;
 cd ~/projects/moose&lt;br /&gt;
 git checkout master&lt;br /&gt;
&lt;br /&gt;
== Compile libMesh ==&lt;br /&gt;
This step is straight forward, but you may need some patience. The compilation may take up to an hour.  &lt;br /&gt;
 cd ~/projects/moose&lt;br /&gt;
 scripts/update_and_rebuild_libmesh.sh&lt;br /&gt;
&lt;br /&gt;
== Test ==  &lt;br /&gt;
 cd ~/projects/moose/test&lt;br /&gt;
 make -j8&lt;br /&gt;
 ./run_tests -j8&lt;br /&gt;
&lt;br /&gt;
The test results should look like&lt;br /&gt;
 Ran 1329 tests in 191.7 seconds&lt;br /&gt;
 1328 passed, 51 skipped, 0 pending, 1 FAILED&lt;br /&gt;
You may receive one message regarding the failed item,  &lt;br /&gt;
 preconditioners/pbp.lots_of_variables....................................................... FAILED (TIMEOUT)&lt;br /&gt;
Don&#039;t worry about it. This is a timed test, which most likely indicates that the computer is running slow (or the machine is overburdened).&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=How_to_install_Moose&amp;diff=6663</id>
		<title>How to install Moose</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=How_to_install_Moose&amp;diff=6663"/>
		<updated>2017-06-11T17:45:34Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Installation */&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;
How to install MOOSE&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;Yanming Wang&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;June, 2017&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://mooseframework.org MOOSE], short for Multiphysics Object-Oriented Simulation Environment, is a finite-element multi-physics framework developed by Idaho National Laboratory. Here we briefly describe how to install MOOSE on the [https://web.stanford.edu/group/hpcc/cgi-bin/certainty/index.php/Main_Page Certainty cluster].  &lt;br /&gt;
&lt;br /&gt;
== System requirements ==&lt;br /&gt;
The installation of MOOSE requires Compiler: C++11 Compliant GCC 4.8.4, Clang 3.4.0, Intel20130607, and Python 2.7+. On Certainty, they are provided as modules, so you can simply type the following commands to load them,&lt;br /&gt;
&lt;br /&gt;
 module load gnu/4.7.2&lt;br /&gt;
 module load clang/3.5.2&lt;br /&gt;
 module load gnu/5.2&lt;br /&gt;
 module load openmpi/1.10.2-gnu-5.2&lt;br /&gt;
 module load cmake/2.8.12.2&lt;br /&gt;
&lt;br /&gt;
Or you can copy and paste them in your &#039;&#039;&#039;~/.bashrc&#039;&#039;&#039; file, which will load the modules automatically when you login to Certainty. Notice that on Certainty  &#039;&#039;&#039;clang&#039;&#039;&#039; requires some libraries from &#039;&#039;&#039;gnu/4.7.2&#039;&#039;&#039;, so that you have to load &#039;&#039;&#039;gnu/4.7.2&#039;&#039;&#039; first and update it later (to &#039;&#039;&#039;gnu/5.2&#039;&#039;&#039; in this case) to satisfy the MOOSE requirement. Also, the version of &#039;&#039;&#039;openmpi&#039;&#039;&#039; compiler should be compatible with the &#039;&#039;&#039;gcc&#039;&#039;&#039; compiler.&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
The procedures of MOOSE installation is given in details on their [http://mooseframework.org/getting-started/ official website]. &lt;br /&gt;
=== PETSc ===&lt;br /&gt;
First, you need to install PETSc following the following steps. (mostly follow the official tutorial) &lt;br /&gt;
==== PREFIX Setup ====&lt;br /&gt;
 export CLUSTER_TEMP=`mktemp -d /tmp/cluster_temp.XXXXXX`&lt;br /&gt;
 export PACKAGES_DIR=$HOME/moose-compilers&lt;br /&gt;
==== Download Software ====&lt;br /&gt;
 cd $CLUSTER_TEMP&lt;br /&gt;
 curl -L -O http://ftp.mcs.anl.gov/pub/petsc/release-snapshots/petsc-3.6.4.tar.gz&lt;br /&gt;
==== Extract Software ====&lt;br /&gt;
 cd $CLUSTER_TEMP&lt;br /&gt;
 tar -xf petsc-3.6.4.tar.gz&lt;br /&gt;
==== Create MOOSE Profile ====&lt;br /&gt;
Make note of your $PACKAGES_DIR:&lt;br /&gt;
&lt;br /&gt;
 echo $PACKAGES_DIR&lt;br /&gt;
Edit the following file:&lt;br /&gt;
&lt;br /&gt;
 $HOME/.moose-profile&lt;br /&gt;
Add the following content to that file:&lt;br /&gt;
&lt;br /&gt;
 export PACKAGES_DIR=INSERT-PACKAGES-DIR-HERE!!!!&lt;br /&gt;
&lt;br /&gt;
 export CC=mpicc&lt;br /&gt;
 export CXX=mpicxx&lt;br /&gt;
 export F90=mpif90&lt;br /&gt;
 export F77=mpif77&lt;br /&gt;
 export FC=mpif90&lt;br /&gt;
 &lt;br /&gt;
 export ARCH=gcc&lt;br /&gt;
 export PETSC_DIR=$PACKAGES_DIR/petsc/petsc-3.6.4/$ARCH-opt&lt;br /&gt;
&lt;br /&gt;
And run,&lt;br /&gt;
 source ~/.moose-profile&lt;br /&gt;
==== Build and Install PETSc ====&lt;br /&gt;
 cd $CLUSTER_TEMP/petsc-3.6.4&lt;br /&gt;
&lt;br /&gt;
 ./configure \&lt;br /&gt;
 --prefix=$PETSC_DIR \&lt;br /&gt;
 --download-hypre=1 \&lt;br /&gt;
 --with-ssl=0 \&lt;br /&gt;
 --with-debugging=yes \&lt;br /&gt;
 --with-pic=1 \&lt;br /&gt;
 --with-shared-libraries=1 \&lt;br /&gt;
 --with-cc=mpicc \&lt;br /&gt;
 --with-cxx=mpicxx \&lt;br /&gt;
 --with-fc=mpif90 \&lt;br /&gt;
 --download-fblaslapack=1 \&lt;br /&gt;
 --download-metis=1 \&lt;br /&gt;
 --download-parmetis=1 \&lt;br /&gt;
 --download-superlu_dist=1 \&lt;br /&gt;
 --download-scalapack=1 \&lt;br /&gt;
 --download-mumps=1 \&lt;br /&gt;
 CC=mpicc CXX=mpicxx FC=mpif90 F77=mpif77 F90=mpif90 \&lt;br /&gt;
 CFLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 CXXFLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 FFLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 FCFLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 F90FLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 F77FLAGS=&#039;-fPIC -fopenmp&#039; \&lt;br /&gt;
 PETSC_DIR=`pwd`&lt;br /&gt;
&lt;br /&gt;
During the installation, the system will pop up messages on your terminal window, suggesting make / make install commands. Just follow them to complete the setup.  An example is the following.&lt;br /&gt;
&lt;br /&gt;
 make PETSC_DIR=/tmp/cluster_temp.wowSIm/petsc-3.6.4 PETSC_ARCH=arch-linux2-c-debug all&lt;br /&gt;
 make PETSC_DIR=/tmp/cluster_temp.wowSIm/petsc-3.6.4 PETSC_ARCH=arch-linux2-c-debug install&lt;br /&gt;
&lt;br /&gt;
== Clone MOOSE ==&lt;br /&gt;
You can do exactly the same as suggested by their official tutorial.&lt;br /&gt;
&lt;br /&gt;
 mkdir ~/projects&lt;br /&gt;
 cd ~/projects&lt;br /&gt;
 git clone https://github.com/idaholab/moose.git&lt;br /&gt;
 cd ~/projects/moose&lt;br /&gt;
 git checkout master&lt;br /&gt;
&lt;br /&gt;
== Compile libMesh ==&lt;br /&gt;
This step is straight forward, but you may need some patience. The compilation may take up to an hour.  &lt;br /&gt;
 cd ~/projects/moose&lt;br /&gt;
 scripts/update_and_rebuild_libmesh.sh&lt;br /&gt;
&lt;br /&gt;
== Test ==  &lt;br /&gt;
 cd ~/projects/moose/test&lt;br /&gt;
 make -j8&lt;br /&gt;
 ./run_tests -j8&lt;br /&gt;
&lt;br /&gt;
The test results should look like&lt;br /&gt;
 Ran 1329 tests in 191.7 seconds&lt;br /&gt;
 1328 passed, 51 skipped, 0 pending, 1 FAILED&lt;br /&gt;
You may receive one message regarding the failed item,  &lt;br /&gt;
 preconditioners/pbp.lots_of_variables....................................................... FAILED (TIMEOUT)&lt;br /&gt;
Don&#039;t worry about it. This is a timed test, which most likely indicates that the computer is running slow (or the machine is overburdened).&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=How_to_install_deal.II&amp;diff=6561</id>
		<title>How to install deal.II</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=How_to_install_deal.II&amp;diff=6561"/>
		<updated>2017-05-16T22:36:11Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: 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; How to install deal.II&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;Yanming Wang&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt; &amp;lt;P ALIGN=&amp;quot;CENT...&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;
How to install deal.II&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;Yanming Wang&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;P ALIGN=&amp;quot;CENTER&amp;quot;&amp;gt;May, 2017&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;BR&amp;gt;&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Deal.II is an open Finite Element Method (FEM) code.  Let&#039;s give a link.  Here we explain how to install it on the Sherlock cluster...&lt;br /&gt;
&lt;br /&gt;
(The following is copied from the wiki LAMMPS compilation.)&lt;br /&gt;
&lt;br /&gt;
This page discusses how to compile LAMMPS on the clusters at Stanford. An executable file can be created for running MD simulation with MEAM potential following this instruction. Before we start to compile LAMMPS, we assume the LAMMPS package was downloaded from our &#039;&#039;&#039;svn&#039;&#039;&#039; server and was unzipped into the directory Codes/LAMMPS.svn/.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== LAMMPS on mc2 ==&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.svn&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;
&lt;br /&gt;
2. In any directory, type the following command&lt;br /&gt;
 Export TARGET=mc2&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;icc&#039;&#039;&#039; and &#039;&#039;&#039;mpi&#039;&#039;&#039; complier, 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 intel/intel-11&lt;br /&gt;
 module load mvapich/1.2rc1-intel-11-dell-gen2 &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;
To confirm the compiler is ready, you can inquiry the location of the compiler by typing &lt;br /&gt;
 which icc&lt;br /&gt;
 which mpicc&lt;br /&gt;
This will tell you where are the compilers. &lt;br /&gt;
&lt;br /&gt;
6. Go to LAMMPS.svn directory&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn&lt;br /&gt;
 make clean&lt;br /&gt;
 make&lt;br /&gt;
This will make the executable file lmp_mc2 in LAMMPS.svn/src directory.&lt;br /&gt;
&lt;br /&gt;
== LAMMPS on WCR ==&lt;br /&gt;
&lt;br /&gt;
The system of WCR was rebuilt in June 2014 and the new Intel 14 compiler and MVAPICH2 wrappers were introduced onto the cluster. After this update, the old version LAMMPS on our &#039;&#039;&#039;svn&#039;&#039;&#039; server (before revision 24) cannot compile anymore. Accordingly, we updated a new version &#039;&#039;&#039;svn&#039;&#039;&#039; LAMMPS  based on the Feb1-2014 package from the official LAMMPS website. The following command can be used to download this LAMMPS package to your current directory.&lt;br /&gt;
&lt;br /&gt;
 svn checkout -r 24 https://micro.stanford.edu/svn/LAMMPS ./&lt;br /&gt;
&lt;br /&gt;
The compilation can be accomplished by the following steps.&lt;br /&gt;
&lt;br /&gt;
1. Revise the ~/.bashrc file to add the needed modules for Intel 14 and MVAPICH2 compiler by adding the following words at the end of your ~/.bashrc file. You need to logout and re-login for the changes to take effect.&lt;br /&gt;
&lt;br /&gt;
 module load null intel/14 mvapich2/2.0rc1-intel-14&lt;br /&gt;
&lt;br /&gt;
2. Install the FFTW library. First, in your home directory, make a folder named &#039;&#039;&#039;usr&#039;&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 mkdir ~/usr &lt;br /&gt;
&lt;br /&gt;
Then 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;
3. If you only want to build LAMMPS with basic packages, you can do the followings.&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/src/&lt;br /&gt;
 make wcr&lt;br /&gt;
This will make the executable lmp_wcr in LAMMPS.svn/src directory. To speed up the compilation, you can use the &amp;quot;-j&amp;quot; switch with the make command.&lt;br /&gt;
&lt;br /&gt;
4. If you want to build LAMMPS with optional packages, e.g., MEAM, see the below section. &lt;br /&gt;
First, type the following command. This will build the needed library for MEAM.&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/lib/meam/&lt;br /&gt;
 make -f Makefile.ifort&lt;br /&gt;
Then, go to the /src folder and install the meam package.&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/src/&lt;br /&gt;
 make yes-meam&lt;br /&gt;
Finally, do the compilation. &lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/src/&lt;br /&gt;
 make -j wcr&lt;br /&gt;
You should get the executable lmp_wcr when the build is complete.&lt;br /&gt;
&lt;br /&gt;
== LAMMPS compilation on WCR before June 2014 == &lt;br /&gt;
 &lt;br /&gt;
1. Open Codes/LAMMPS.svn/Makefile file, add the following line below SYS = $(TARGET)&lt;br /&gt;
 libFC.wcr = ifort&lt;br /&gt;
&lt;br /&gt;
2. Copy Makefile.wcr into Codes/LAMMPS.svn/src/MAKE/ directory using the following commands/&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki/images/8/80/Makefile.wcr.txt -O ./src/MAKE/Makefile.wcr&lt;br /&gt;
&lt;br /&gt;
3. In any directory, type the following command&lt;br /&gt;
 Export TARGET=wcr&lt;br /&gt;
&lt;br /&gt;
4. In your home directory, make a folder named usr&lt;br /&gt;
 mkdir ~/usr&lt;br /&gt;
&lt;br /&gt;
5. 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;
6. Choose the modules for the compliers.&lt;br /&gt;
The following command can list the available modules on the cluster.&lt;br /&gt;
 module avail&lt;br /&gt;
And the below command can give you the names of the modules you are currently using&lt;br /&gt;
 module list&lt;br /&gt;
By default, one module is intel/intel-9, and we need to change it to intel/intel-11, which can be done by typing the commands.&lt;br /&gt;
 module rm intel/intel-9&lt;br /&gt;
 module load intel/intel-11&lt;br /&gt;
Still, you can make changes to your bash_profile to let the system load the modules automatically for you. So the following lines could be added to your ~/.bash_profile file.&lt;br /&gt;
 module rm intel/intel-9&lt;br /&gt;
 module load intel/intel-11&lt;br /&gt;
 module load mvapich/1.2RC1-intel-11-gen2  &lt;br /&gt;
&lt;br /&gt;
7. Go to LAMMPS.svn directory&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn&lt;br /&gt;
 make clean&lt;br /&gt;
 make&lt;br /&gt;
This will make lmp_wcr in LAMMPS.svn/src directory.&lt;br /&gt;
&lt;br /&gt;
== References == &lt;br /&gt;
&lt;br /&gt;
The below webpages would be useful when you are new to using the clusters.&lt;br /&gt;
&lt;br /&gt;
https://www.stanford.edu/group/hpcc/cgi-bin/mediawiki/index.php/Main_Page&lt;br /&gt;
&lt;br /&gt;
https://www.stanford.edu/group/hpcc/cgi-bin/mediawiki/index.php/I%27m_new_%26_don%27t_know_what_to_do&lt;br /&gt;
&lt;br /&gt;
https://www.stanford.edu/group/hpcc/cgi-bin/mediawiki/index.php/New_to_Cluster_Computing&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Tutorial:Members_Only&amp;diff=6560</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=6560"/>
		<updated>2017-05-16T22:27:14Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* 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;
| [[ Cross-slip in ParaDiS]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Parallel Cluster Guides]]&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;
| [[MEAM Potential for Au-Si]]&lt;br /&gt;
|-&lt;br /&gt;
| [[MEAM Potential for Au-Ge]]&lt;br /&gt;
|-&lt;br /&gt;
| [[MEAM Potential for Si-Ge]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Computing Binary Phase Diagram in MD++]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Classical Simulation of GeAu droplet on Ge substrate]]&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;
| [[Perform Nanoindentation on Al-Mg Alloy]]&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; | FEM Codes&lt;br /&gt;
|-&lt;br /&gt;
| [[How to install deal.II]]&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;
| [[Computational XRD]]&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>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Group_Members&amp;diff=6447</id>
		<title>Group Members</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Group_Members&amp;diff=6447"/>
		<updated>2016-07-18T19:10:34Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
===Professor===&lt;br /&gt;
:[[Wei Cai]]&lt;br /&gt;
&lt;br /&gt;
===Graduate Students===&lt;br /&gt;
:[[Yanming Wang]]&lt;br /&gt;
:[[Yikai Yin]]&lt;br /&gt;
&lt;br /&gt;
===Postocs===&lt;br /&gt;
:[[Nicolas Bertin]]&lt;br /&gt;
:[[Xiaohan Zhang]]&lt;br /&gt;
:[[Lihua Jin]]&lt;br /&gt;
&lt;br /&gt;
===Former Members===&lt;br /&gt;
:[[Ryan Sills | Ryan Sills (former PhD student)]]&lt;br /&gt;
:[[Amin Aghaei | Amin Aghaei (former postdoc)]]&lt;br /&gt;
:[[William Kuykendall | William Kuykendall (former PhD student)]]&lt;br /&gt;
:[[William Cash | William Cash (former PhD student)]]&lt;br /&gt;
:[[Hark Lee | Hark Lee (former PhD student)]]&lt;br /&gt;
:[[Ill Ryu | Ill Ryu (former PhD student)]]&lt;br /&gt;
:[[Jie Yin | Jie Yin (former PhD student)]]&lt;br /&gt;
:[[Seunghwa Ryu | Seunghwa Ryu (former PhD student) ]]&lt;br /&gt;
:[[Seokwoo Lee | Seokwoo Lee (former PhD student) ]]&lt;br /&gt;
:[[Haneesh Kesari | Haneesh Kesari (former PhD student)]]&lt;br /&gt;
:[[Chris Weinberger | Chris Weinberger (former PhD student)]]&lt;br /&gt;
:[[William Fong | William Fong (guest)]]&lt;br /&gt;
:[[Alfredo Correa | Alfredo Correa (former postdoc)]]&lt;br /&gt;
:[[Keonwook Kang | Keonwook Kang (former PhD student)]]&lt;br /&gt;
:[[Eunseok Lee | Eunseok Lee (former PhD student)]]&lt;br /&gt;
:[[Sylvie Aubry | Sylvie Aubry (former Research Associate)]]&lt;br /&gt;
&lt;br /&gt;
===Outreach Collaborator===&lt;br /&gt;
:[[Alfonso Garcia | Alfonso Garcia (high school teacher)]]&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Wei_Cai&amp;diff=6443</id>
		<title>Wei Cai</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Wei_Cai&amp;diff=6443"/>
		<updated>2016-04-02T21:32:34Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Associate Professor &amp;lt;br&amp;gt;&lt;br /&gt;
Mechanics and Computation &amp;lt;br&amp;gt;&lt;br /&gt;
Mechanical Engineering Department &amp;lt;br&amp;gt;&lt;br /&gt;
Stanford University&lt;br /&gt;
&lt;br /&gt;
Building 520 Room 126 &amp;lt;br&amp;gt;&lt;br /&gt;
452 Escondido Mall &amp;lt;br&amp;gt;&lt;br /&gt;
Stanford, CA 94305-4040 &amp;lt;br&amp;gt;&lt;br /&gt;
Phone: 650-736-1671&lt;br /&gt;
&lt;br /&gt;
[http://www.stanford.edu/~caiwei Wei Cai&#039;s home page]&lt;br /&gt;
&lt;br /&gt;
[[Wei&#039;s Bookshelf]]&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Tutorial:Members_Only&amp;diff=6432</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=6432"/>
		<updated>2016-03-18T05:55:18Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* 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;
| [[ Cross-slip in ParaDiS]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Parallel Cluster Guides]]&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;
| [[MEAM Potential for Au-Si]]&lt;br /&gt;
|-&lt;br /&gt;
| [[MEAM Potential for Au-Ge]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Computing Binary Phase Diagram 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;
| [[Computational XRD]]&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>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=M04_Binary_Junction&amp;diff=6431</id>
		<title>M04 Binary Junction</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=M04_Binary_Junction&amp;diff=6431"/>
		<updated>2016-03-18T05:53:12Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;not available yet (someone still has to write it).&lt;br /&gt;
&lt;br /&gt;
See [[From DDLab to ParaDiS]]&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=ParaDiS_Manuals&amp;diff=6430</id>
		<title>ParaDiS Manuals</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=ParaDiS_Manuals&amp;diff=6430"/>
		<updated>2016-03-18T05:51:25Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;UL&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;LI&amp;gt; [[Overview of ParaDiS 2.2]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;LI&amp;gt; [[Before You Start: Known Bugs in ParaDiS]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;LI&amp;gt; [[M01 How to Obtain and Run ParaDiS]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;LI&amp;gt; [[M02 Straight dislocations]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;LI&amp;gt; [[M03 Frank-Read Source]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;LI&amp;gt; [[M04 Binary Junction]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;LI&amp;gt; [[M05 ParaDiS Flowchart]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;LI&amp;gt; [[Create Straight Dislocations for ParaDiS Input]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;LI&amp;gt; [[Programming tips for ParaDiS]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;LI&amp;gt; [[ParaDiS FAQs]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;LI&amp;gt; [[ParaDiS Manual Updated]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/UL&amp;gt;&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=M03_Frank-Read_Source&amp;diff=6429</id>
		<title>M03 Frank-Read Source</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=M03_Frank-Read_Source&amp;diff=6429"/>
		<updated>2016-03-18T05:45:59Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;not available yet (somebody still has to write it)&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Tutorial:Members_Only&amp;diff=6365</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=6365"/>
		<updated>2015-10-15T01:08:10Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* 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;
| [[MEAM Potential for Au-Si]]&lt;br /&gt;
|-&lt;br /&gt;
| [[MEAM Potential for Au-Ge]]&lt;br /&gt;
|-&lt;br /&gt;
| [[Computing Binary Phase Diagram 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;
| [[Computational XRD]]&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>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Ge&amp;diff=6335</id>
		<title>MEAM Potential for Au-Ge</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Ge&amp;diff=6335"/>
		<updated>2015-09-08T05:45:54Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* MEAM Potential for Ge */&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;
MEAM Potential for Au-Ge&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;Adriano Santana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Ge MEAM potential in MD++. It starts with the parameters in pure Au and pure Ge potentials, then talks about the Au-Ge cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
The details for the original &#039;Au&#039; potential can be found here&lt;br /&gt;
JUST REFER TO OTHER PAGE....!&lt;br /&gt;
&lt;br /&gt;
UNDER CONSTRUCTION!!!!!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Ge===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Ge&#039; potential whose parameters are originally given in M. I. Baskes,&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Ge&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;       &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3      &lt;br /&gt;
 &#039;Ge&#039; &#039;dia&#039;  4.     32       72.64     4.98   4.55      5.5    5.5  5.5 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;       &amp;lt;math&amp;gt;\rho_0^{\rm Ge}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.6575 3.85  1.0 1.0   4.02       5.23          -1.6     0.9861   0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Ge}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential. In our fitting it takes the value 0.9861 instead of the original one of 1.35 in Baskes paper. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS). ibar selects the G(gamma) function in Eq (4) and (5) of the paper by BJ Lee, PRB 68, 144112 (2003).&lt;br /&gt;
&lt;br /&gt;
While the functional form is quite different, the modulus is almost not affected by the choice of ibar.&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in the &#039;&#039;&#039;AuGe2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Ge==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuGe2nn.meam&#039;&#039;&#039; file.  The lines relevant for the cross potential (i.e. between species 1 and 2) are shown below.  &lt;br /&gt;
They are calculated from VASP LDA/PAW.&lt;br /&gt;
&lt;br /&gt;
Similar values are found in Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
RECALCULATE THIS VALUES FOR MY POTENTIAL AU-GE!!!&lt;br /&gt;
 re(1,2) = 2.6495 new!    (&amp;lt;math&amp;gt;r_e&amp;lt;/math&amp;gt;)&lt;br /&gt;
 delta(1,2) = -0.844 new!  (related to &amp;lt;math&amp;gt;E_c&amp;lt;/math&amp;gt;, see below)&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 4.927 new!     (&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;)&lt;br /&gt;
 attrac(1,2) = 0.0      &lt;br /&gt;
 repuls(1,2) = 0.26     (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,2) = 1.9      (&amp;lt;math&amp;gt;C_{\min}(1,1,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,1) = 0.95     (&amp;lt;math&amp;gt;C_{\min}(1,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,2) = 1.85     (&amp;lt;math&amp;gt;C_{\min}(1,2,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,1) = 1.0      (&amp;lt;math&amp;gt;C_{\min}(2,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
The values for  &amp;lt;math&amp;gt;E_c ({\rm AuGe}) = 4.734&amp;lt;/math&amp;gt;.&lt;br /&gt;
This value is related to delta(1,2) through&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E_c ({\rm AuGe}) = 0.5*[ E_c ({\rm Au}) + E_c({\rm Ge}) ] - {\rm delta}(1,2) = 0.5 * (3.93 + 3.85) - (-0.844) = 4.734&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Ge} / \rho_0^{\rm Au}&amp;lt;/math&amp;gt; = 0.9861 because of the &amp;lt;math&amp;gt;\rho_0^{\rm Ge}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; values specified above.  This value of &amp;lt;math&amp;gt;\rho_0^{\rm Ge} / \rho_0^{\rm Au}&amp;lt;/math&amp;gt; leads to the following impurity formation energies&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;E_1 = 0.310 &amp;lt;/math&amp;gt; eV   Ge impurity in FCC Au (MEAM)&lt;br /&gt;
 &amp;lt;math&amp;gt;E_2 = 1.169 &amp;lt;/math&amp;gt; eV   Au impurity in DC  Ge (MEAM)&lt;br /&gt;
&lt;br /&gt;
These values are to be compared with VASP predictions&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;E_1 = 0.31 &amp;lt;/math&amp;gt; eV   Ge impurity in FCC Au (VASP/LDA/PAW)&lt;br /&gt;
 &amp;lt;math&amp;gt;E_2 = 1.02 &amp;lt;/math&amp;gt; eV   Au impurity in DC  Ge (VASP/LDA/PAW)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;The VASP values will need to be recalculated to US pseudopotential.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cmax = 2.8 is the default value.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Ge&amp;diff=6334</id>
		<title>MEAM Potential for Au-Ge</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Ge&amp;diff=6334"/>
		<updated>2015-09-08T05:44:48Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Cross Potential between Au and Ge */&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;
MEAM Potential for Au-Ge&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;Adriano Santana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Ge MEAM potential in MD++. It starts with the parameters in pure Au and pure Ge potentials, then talks about the Au-Ge cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
The details for the original &#039;Au&#039; potential can be found here&lt;br /&gt;
JUST REFER TO OTHER PAGE....!&lt;br /&gt;
&lt;br /&gt;
UNDER CONSTRUCTION!!!!!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Ge===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Ge&#039; potential whose parameters are originally given in M. I. Baskes,&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Ge&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;       &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3      &lt;br /&gt;
 &#039;Ge&#039; &#039;dia&#039;  4.     32       72.64     4.98   4.55      5.5    5.5  5.5 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;       &amp;lt;math&amp;gt;\rho_0^{\rm Ge}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.6575 3.85  1.0 1.0   4.02       5.23          -1.6     1.35     0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Ge}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential. In our fitting it takes the value 0.861 instead of the original one of 1.35 in Baskes paper. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS). ibar selects the G(gamma) function in Eq (4) and (5) of the paper by BJ Lee, PRB 68, 144112 (2003).&lt;br /&gt;
&lt;br /&gt;
While the functional form is quite different, the modulus is almost not affected by the choice of ibar.&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in the &#039;&#039;&#039;AuGe2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Ge==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuGe2nn.meam&#039;&#039;&#039; file.  The lines relevant for the cross potential (i.e. between species 1 and 2) are shown below.  &lt;br /&gt;
They are calculated from VASP LDA/PAW.&lt;br /&gt;
&lt;br /&gt;
Similar values are found in Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
RECALCULATE THIS VALUES FOR MY POTENTIAL AU-GE!!!&lt;br /&gt;
 re(1,2) = 2.6495 new!    (&amp;lt;math&amp;gt;r_e&amp;lt;/math&amp;gt;)&lt;br /&gt;
 delta(1,2) = -0.844 new!  (related to &amp;lt;math&amp;gt;E_c&amp;lt;/math&amp;gt;, see below)&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 4.927 new!     (&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;)&lt;br /&gt;
 attrac(1,2) = 0.0      &lt;br /&gt;
 repuls(1,2) = 0.26     (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,2) = 1.9      (&amp;lt;math&amp;gt;C_{\min}(1,1,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,1) = 0.95     (&amp;lt;math&amp;gt;C_{\min}(1,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,2) = 1.85     (&amp;lt;math&amp;gt;C_{\min}(1,2,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,1) = 1.0      (&amp;lt;math&amp;gt;C_{\min}(2,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
The values for  &amp;lt;math&amp;gt;E_c ({\rm AuGe}) = 4.734&amp;lt;/math&amp;gt;.&lt;br /&gt;
This value is related to delta(1,2) through&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E_c ({\rm AuGe}) = 0.5*[ E_c ({\rm Au}) + E_c({\rm Ge}) ] - {\rm delta}(1,2) = 0.5 * (3.93 + 3.85) - (-0.844) = 4.734&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Ge} / \rho_0^{\rm Au}&amp;lt;/math&amp;gt; = 0.9861 because of the &amp;lt;math&amp;gt;\rho_0^{\rm Ge}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; values specified above.  This value of &amp;lt;math&amp;gt;\rho_0^{\rm Ge} / \rho_0^{\rm Au}&amp;lt;/math&amp;gt; leads to the following impurity formation energies&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;E_1 = 0.310 &amp;lt;/math&amp;gt; eV   Ge impurity in FCC Au (MEAM)&lt;br /&gt;
 &amp;lt;math&amp;gt;E_2 = 1.169 &amp;lt;/math&amp;gt; eV   Au impurity in DC  Ge (MEAM)&lt;br /&gt;
&lt;br /&gt;
These values are to be compared with VASP predictions&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;E_1 = 0.31 &amp;lt;/math&amp;gt; eV   Ge impurity in FCC Au (VASP/LDA/PAW)&lt;br /&gt;
 &amp;lt;math&amp;gt;E_2 = 1.02 &amp;lt;/math&amp;gt; eV   Au impurity in DC  Ge (VASP/LDA/PAW)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;The VASP values will need to be recalculated to US pseudopotential.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cmax = 2.8 is the default value.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Ge&amp;diff=6333</id>
		<title>MEAM Potential for Au-Ge</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Ge&amp;diff=6333"/>
		<updated>2015-09-08T05:37:34Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Cross Potential between Au and Ge */&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;
MEAM Potential for Au-Ge&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;Adriano Santana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Ge MEAM potential in MD++. It starts with the parameters in pure Au and pure Ge potentials, then talks about the Au-Ge cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
The details for the original &#039;Au&#039; potential can be found here&lt;br /&gt;
JUST REFER TO OTHER PAGE....!&lt;br /&gt;
&lt;br /&gt;
UNDER CONSTRUCTION!!!!!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Ge===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Ge&#039; potential whose parameters are originally given in M. I. Baskes,&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Ge&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;       &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3      &lt;br /&gt;
 &#039;Ge&#039; &#039;dia&#039;  4.     32       72.64     4.98   4.55      5.5    5.5  5.5 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;       &amp;lt;math&amp;gt;\rho_0^{\rm Ge}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.6575 3.85  1.0 1.0   4.02       5.23          -1.6     1.35     0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Ge}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential. In our fitting it takes the value 0.861 instead of the original one of 1.35 in Baskes paper. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS). ibar selects the G(gamma) function in Eq (4) and (5) of the paper by BJ Lee, PRB 68, 144112 (2003).&lt;br /&gt;
&lt;br /&gt;
While the functional form is quite different, the modulus is almost not affected by the choice of ibar.&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in the &#039;&#039;&#039;AuGe2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Ge==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuGe2nn.meam&#039;&#039;&#039; file.  The lines relevant for the cross potential (i.e. between species 1 and 2) are shown below.  &lt;br /&gt;
They are calculated from VASP LDA/PAW.&lt;br /&gt;
&lt;br /&gt;
Similar values are found in Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
RECALCULATE THIS VALUES FOR MY POTENTIAL AU-GE!!!&lt;br /&gt;
 re(1,2) = 2.6495 new!    (&amp;lt;math&amp;gt;r_e&amp;lt;/math&amp;gt;)&lt;br /&gt;
 delta(1,2) = -0.844 new!  (related to &amp;lt;math&amp;gt;E_c&amp;lt;/math&amp;gt;, see below)&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 4.927 new!     (&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;)&lt;br /&gt;
 attrac(1,2) = 0.0      &lt;br /&gt;
 repuls(1,2) = 0.26     (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,2) = 1.9      (&amp;lt;math&amp;gt;C_{\min}(1,1,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,1) = 0.95     (&amp;lt;math&amp;gt;C_{\min}(1,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,2) = 1.85     (&amp;lt;math&amp;gt;C_{\min}(1,2,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,1) = 1.0      (&amp;lt;math&amp;gt;C_{\min}(2,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
The values for  &amp;lt;math&amp;gt;E_c ({\rm AuGe}) = 4.734&amp;lt;/math&amp;gt;.&lt;br /&gt;
This value is related to delta(1,2) through&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E_c ({\rm AuGe}) = 0.5*[ E_c ({\rm Au}) + E_c({\rm Ge}) ] - {\rm delta}(1,2) = 0.5 * (3.93 + 3.85) - (-0.844) = 4.734&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Ge} / \rho_0^{\rm Au}&amp;lt;/math&amp;gt; = 0.9861 because of the &amp;lt;math&amp;gt;\rho_0^{\rm Ge}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; values specified above.  This value of &amp;lt;math&amp;gt;\rho_0^{\rm Ge} / \rho_0^{\rm Au}&amp;lt;/math&amp;gt; leads to the following impurity formation energies&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;E_1 = ?? &amp;lt;/math&amp;gt; eV   Ge impurity in FCC Au (MEAM)&lt;br /&gt;
 &amp;lt;math&amp;gt;E_2 = ?? &amp;lt;/math&amp;gt; eV   Au impurity in DC  Ge (MEAM)&lt;br /&gt;
&lt;br /&gt;
These values are to be compared with VASP predictions&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;E_1 = 0.31 &amp;lt;/math&amp;gt; eV   Ge impurity in FCC Au (VASP/LDA/PAW)&lt;br /&gt;
 &amp;lt;math&amp;gt;E_2 = 1.02 &amp;lt;/math&amp;gt; eV   Au impurity in DC  Ge (VASP/LDA/PAW)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;The VASP values will need to be recalculated to US pseudopotential.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cmax = 2.8 is the default value.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6325</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6325"/>
		<updated>2015-09-08T03:03:33Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Impurity energy */&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;
MEAM Potential for Au-Si&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;Adriano Santana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS). It selects the&lt;br /&gt;
G(gamma) function in Eq (4) and (5) on the paper by BJ LEE: Phys. Rev. B 64, 184102 (2001)&lt;br /&gt;
&lt;br /&gt;
While the functional form is quite different, the modulus is almost not affected by&lt;br /&gt;
the choice of ibar.&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
 augt1 = 1&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.  The variable &amp;lt;math&amp;gt;d = 0.05&amp;lt;/math&amp;gt; is hard coded in &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039; (when repuls &amp;lt; 5.0).&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
The modification made in Ryu and Cai JPCM (2010) is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The lines relevant for the cross potential (i.e. between species 1 and 2) are shown below.  The values correspond to Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
 re(1,2) = 2.700    (&amp;lt;math&amp;gt;r_e&amp;lt;/math&amp;gt;)&lt;br /&gt;
 delta(1,2) = 0.125   (related to &amp;lt;math&amp;gt;E_c&amp;lt;/math&amp;gt;, see below)&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819     (&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;)&lt;br /&gt;
 attrac(1,2) = 0.0      &lt;br /&gt;
 repuls(1,2) = 0.26     (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,2) = 1.9     (&amp;lt;math&amp;gt;C_{\min}(1,1,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,1) = 0.95     (&amp;lt;math&amp;gt;C_{\min}(1,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,2) = 1.85     (&amp;lt;math&amp;gt;C_{\min}(1,2,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,1) = 1.0     (&amp;lt;math&amp;gt;C_{\min}(2,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Table 3 of Ryu and Cai (2010) gives &amp;lt;math&amp;gt;E_c ({\rm AuSi}) = 4.155&amp;lt;/math&amp;gt;.  This value is related to delta(1,2) through&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E_c ({\rm AuSi}) = 0.5*[ E_c ({\rm Au}) + E_c({\rm Si}) ] - {\rm delta}(1,2) = 0.5 * (3.93 + 4.63) - 0.125 = 4.155&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si} / \rho_0^{\rm Au}&amp;lt;/math&amp;gt; = 1.48 because of the &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; values specified above.&lt;br /&gt;
&lt;br /&gt;
Cmax = 2.8 is the default value.&lt;br /&gt;
&lt;br /&gt;
==Benchmark in MD++==&lt;br /&gt;
&lt;br /&gt;
Compile the code using the following command.&lt;br /&gt;
&lt;br /&gt;
 make meam-lammps build=R SYS=gpp&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the equilibrium lattice constant and cohesive energy of pure Au (FCC).  You can download the [[media:si-au.tcl.txt | si-au.tcl]] from the link.&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si_au_benchmark.tcl 1&lt;br /&gt;
&lt;br /&gt;
The results are&lt;br /&gt;
&lt;br /&gt;
 a0 = 4.07300759775 Angstrom&lt;br /&gt;
 Ecoh = -3.92996804082 eV&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the equilibrium lattice constant and cohesive energy of pure Si (DC).&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si_au_benchmark.tcl 0&lt;br /&gt;
&lt;br /&gt;
The results are&lt;br /&gt;
 &lt;br /&gt;
  a0 = 5.43100051581 Angstrom &lt;br /&gt;
  Ecoh = -4.63000000205 eV&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the equilibrium lattice constant and cohesive energy of Au-Si (B1).&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si_au_benchmark.tcl 2&lt;br /&gt;
&lt;br /&gt;
The results are&lt;br /&gt;
 &lt;br /&gt;
  a0 = 5.4 Angstrom &lt;br /&gt;
  Ecoh = -4.155000000083061 eV&lt;br /&gt;
&lt;br /&gt;
===Impurity energy===&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the impurity of a Au atom in Si DC lattice.&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si_au_benchmark.tcl 4&lt;br /&gt;
&lt;br /&gt;
The results depend slightly on the cell size&lt;br /&gt;
 cell size, Eimp(eV)&lt;br /&gt;
 3x3x3      3.914&lt;br /&gt;
 4x4x4      3.968&lt;br /&gt;
 5x5x5      3.987&lt;br /&gt;
 10x10x10   4.005&lt;br /&gt;
 20x20x20   4.008&lt;br /&gt;
&lt;br /&gt;
The result in the paper (S. Ryu and W.Cai JPCM 22 055401 (2010), Table 2,&lt;br /&gt;
is &amp;lt;math&amp;gt;E_2 = 3.968&amp;lt;/math&amp;gt; (eV) for a Au atom in Si DC crystal.&lt;br /&gt;
So it seems that the result in JPCM (2010) corresponds to the 4x4x4 cell here.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the impurity of a Si atom in Au fcc lattice.&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si_au_benchmark.tcl 3&lt;br /&gt;
&lt;br /&gt;
 cell size, Eimp(eV)&lt;br /&gt;
 2x2x2      0.639&lt;br /&gt;
 3x3x3      0.660&lt;br /&gt;
 4x4x4      0.665&lt;br /&gt;
 5x5x5      0.667&lt;br /&gt;
 10x10x10   0.669&lt;br /&gt;
 20x20x20   0.669&lt;br /&gt;
&lt;br /&gt;
The result in the paper (S. Ryu and W.Cai JPCM 22 055401 (2010), Table 2, &lt;br /&gt;
is &amp;lt;math&amp;gt;E_1 = 0.636&amp;lt;/math&amp;gt; (eV) for a Si atom in Au FCC crystal.&lt;br /&gt;
So it seems that for a Si in Au FCC crystal, the predicted results here using&lt;br /&gt;
the 2x2x2 cell corresponds to the value in JPCM (2010).&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6324</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6324"/>
		<updated>2015-09-08T02:59:46Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Benchmark in MD++ */&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;
MEAM Potential for Au-Si&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;Adriano Santana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS). It selects the&lt;br /&gt;
G(gamma) function in Eq (4) and (5) on the paper by BJ LEE: Phys. Rev. B 64, 184102 (2001)&lt;br /&gt;
&lt;br /&gt;
While the functional form is quite different, the modulus is almost not affected by&lt;br /&gt;
the choice of ibar.&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
 augt1 = 1&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.  The variable &amp;lt;math&amp;gt;d = 0.05&amp;lt;/math&amp;gt; is hard coded in &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039; (when repuls &amp;lt; 5.0).&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
The modification made in Ryu and Cai JPCM (2010) is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The lines relevant for the cross potential (i.e. between species 1 and 2) are shown below.  The values correspond to Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
 re(1,2) = 2.700    (&amp;lt;math&amp;gt;r_e&amp;lt;/math&amp;gt;)&lt;br /&gt;
 delta(1,2) = 0.125   (related to &amp;lt;math&amp;gt;E_c&amp;lt;/math&amp;gt;, see below)&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819     (&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;)&lt;br /&gt;
 attrac(1,2) = 0.0      &lt;br /&gt;
 repuls(1,2) = 0.26     (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,2) = 1.9     (&amp;lt;math&amp;gt;C_{\min}(1,1,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,1) = 0.95     (&amp;lt;math&amp;gt;C_{\min}(1,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,2) = 1.85     (&amp;lt;math&amp;gt;C_{\min}(1,2,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,1) = 1.0     (&amp;lt;math&amp;gt;C_{\min}(2,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Table 3 of Ryu and Cai (2010) gives &amp;lt;math&amp;gt;E_c ({\rm AuSi}) = 4.155&amp;lt;/math&amp;gt;.  This value is related to delta(1,2) through&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E_c ({\rm AuSi}) = 0.5*[ E_c ({\rm Au}) + E_c({\rm Si}) ] - {\rm delta}(1,2) = 0.5 * (3.93 + 4.63) - 0.125 = 4.155&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si} / \rho_0^{\rm Au}&amp;lt;/math&amp;gt; = 1.48 because of the &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; values specified above.&lt;br /&gt;
&lt;br /&gt;
Cmax = 2.8 is the default value.&lt;br /&gt;
&lt;br /&gt;
==Benchmark in MD++==&lt;br /&gt;
&lt;br /&gt;
Compile the code using the following command.&lt;br /&gt;
&lt;br /&gt;
 make meam-lammps build=R SYS=gpp&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the equilibrium lattice constant and cohesive energy of pure Au (FCC).  You can download the [[media:si-au.tcl.txt | si-au.tcl]] from the link.&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si_au_benchmark.tcl 1&lt;br /&gt;
&lt;br /&gt;
The results are&lt;br /&gt;
&lt;br /&gt;
 a0 = 4.07300759775 Angstrom&lt;br /&gt;
 Ecoh = -3.92996804082 eV&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the equilibrium lattice constant and cohesive energy of pure Si (DC).&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si_au_benchmark.tcl 0&lt;br /&gt;
&lt;br /&gt;
The results are&lt;br /&gt;
 &lt;br /&gt;
  a0 = 5.43100051581 Angstrom &lt;br /&gt;
  Ecoh = -4.63000000205 eV&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the equilibrium lattice constant and cohesive energy of Au-Si (B1).&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si_au_benchmark.tcl 2&lt;br /&gt;
&lt;br /&gt;
The results are&lt;br /&gt;
 &lt;br /&gt;
  a0 = 5.4 Angstrom &lt;br /&gt;
  Ecoh = -4.155000000083061 eV&lt;br /&gt;
&lt;br /&gt;
===Impurity energy===&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the impurity of a Au atom in Si DC lattice.&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si_au_benchmark.tcl 4&lt;br /&gt;
&lt;br /&gt;
The results depend slightly on the cell size&lt;br /&gt;
 cell size, Eimp(eV)&lt;br /&gt;
 3x3x3      3.914&lt;br /&gt;
 4x4x4      3.968&lt;br /&gt;
 5x5x5      3.987&lt;br /&gt;
 10x10x10   4.005&lt;br /&gt;
 20x20x20   4.008&lt;br /&gt;
&lt;br /&gt;
The result in the paper (S. Ryu and W.Cai JPCM 22 055401 (2010), Table 2,&lt;br /&gt;
is &amp;lt;math&amp;gt;E_2 = 3.968&amp;lt;/math&amp;gt; (eV) for a Au atom in Si DC crystal.&lt;br /&gt;
So it seems that the result in JPCM (2010) corresponds to the 4x4x4 cell here.&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;Seunghwa: please confirm.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the impurity of a Si atom in Au fcc lattice.&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si_au_benchmark.tcl 3&lt;br /&gt;
&lt;br /&gt;
 cell size, Eimp(eV)&lt;br /&gt;
 2x2x2      0.639&lt;br /&gt;
 3x3x3      0.660&lt;br /&gt;
 4x4x4      0.665&lt;br /&gt;
 5x5x5      0.667&lt;br /&gt;
 10x10x10   0.669&lt;br /&gt;
 20x20x20   0.669&lt;br /&gt;
&lt;br /&gt;
The result in the paper (S. Ryu and W.Cai JPCM 22 055401 (2010), Table 2, &lt;br /&gt;
is &amp;lt;math&amp;gt;E_1 = 0.636&amp;lt;/math&amp;gt; (eV) for a Si atom in Au FCC crystal.&lt;br /&gt;
So it seems that for a Si in Au FCC crystal, the predicted results here (using MEAM potential by MD++) &amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;does not agree well with the value in JPCM (2010) regardless of the cell size.&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Use_Au-Si_MEAM_Potential_in_LAMMPS&amp;diff=6322</id>
		<title>Use Au-Si MEAM Potential in LAMMPS</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Use_Au-Si_MEAM_Potential_in_LAMMPS&amp;diff=6322"/>
		<updated>2015-09-08T02:49:08Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* MD++ test case */&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;
Use Au-Si MEAM Potential in LAMMPS  &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;Yanming Wang, Seunghwa Ryu and Wei Cai&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 June, 2012, Last modified July, 2014&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;P&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This tutorial explains how to use Au-Si MEAM potential in LAMMPS on a cluster like &#039;&#039;&#039;mc2&#039;&#039;&#039;. It starts with the installation of LAMMPS on &#039;&#039;&#039;mc2&#039;&#039;&#039;, then talks about the compiling of the Au-Si MEAM potential. This tutorial also includes a test case to make sure the result from LAMMPS with this MEAM potential is consistent with that from MD++.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing LAMMPS on &#039;&#039;&#039;mc2&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
[http://lammps.sandia.gov/ LAMMPS] is a classical molecular dynamics code for large-scale atomic/molecular massively parallel simulation. On &#039;&#039;&#039;mc2&#039;&#039;&#039;, you can get LAMMPS from our SVN server using the following commands.&lt;br /&gt;
&lt;br /&gt;
 mkdir -p ~/Codes/LAMMPS.svn&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn&lt;br /&gt;
 svn co https://micro.stanford.edu/svn/LAMMPS .&lt;br /&gt;
&lt;br /&gt;
Typing the following SVN command from within the &amp;quot;LAMMPS.svn&amp;quot; directory, you can update your LAMMPS package.&lt;br /&gt;
 &lt;br /&gt;
 svn update&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Compiling MEAM potential in LAMMPS==&lt;br /&gt;
&lt;br /&gt;
The compilation of MEAM potential has been changed starting from LAMMPS &#039;&#039;&#039;svn&#039;&#039;&#039; revision 24. For detailed instruction, please refer to [http://micro.stanford.edu/wiki/How_to_compile_LAMMPS How to compile LAMMPS].  &lt;br /&gt;
&lt;br /&gt;
Please notice the following content is only for the older version LAMMPS. &lt;br /&gt;
&lt;br /&gt;
=== Preparing for parallel run ===&lt;br /&gt;
&lt;br /&gt;
First, you need to download the [[media:fftw.tar.gz |fftw.tar.gz]] and upload this archive file to your account on &#039;&#039;&#039;mc2&#039;&#039;&#039;. In your home directory, make a new folder named usr, then type the following command to unzip the fftw library in your &#039;&#039;&#039;usr&#039;&#039;&#039; folder.&lt;br /&gt;
&lt;br /&gt;
 cd ~/usr&lt;br /&gt;
 tar zxvf fftw.tar.gz&lt;br /&gt;
&lt;br /&gt;
ALso add the following lines at the end of your &#039;&#039;&#039;~/.bash_profile&#039;&#039;&#039; file to clarify the compiler.&lt;br /&gt;
&lt;br /&gt;
 module load intel/intel-11&lt;br /&gt;
 module load mvapich/1.2rc1-intel-11-dell-gen2&lt;br /&gt;
&lt;br /&gt;
=== Preparing for compiling MEAM potential ===&lt;br /&gt;
&lt;br /&gt;
Au-Si MEAM potential is a potential developed by Dr. Seunghwa Ryu and Prof. Wei Cai&amp;lt;ref&amp;gt;&lt;br /&gt;
[http://iopscience.iop.org/0953-8984/22/5/055401 Seunghwa Ryu and Wei Cai, &amp;quot;Molecular Dynamics Simulations of Gold-Catalyzed Growth of Silicon Bulk Crystals and Nanowires&amp;quot;, Journal of Materials Research, 26, 2199 (2011).]&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[http://journals.cambridge.org/action/displayAbstract?fromPage=online&amp;amp;aid=8368065 Seunghwa Ryu and Wei Cai, &amp;quot;A Gold-Silicon Potential Fitted to the Binary Phase Diagram&amp;quot;, Journal of Physics Condensed Matter, 22, 055401 (2010).]&lt;br /&gt;
&amp;lt;/ref&amp;gt;for gold-silicon binary system. To compile this potential in LAMMPS, you need to open the Makefile file under the &#039;&#039;&#039;LAMMPS.svn&#039;&#039;&#039; directory, finding the following line	&lt;br /&gt;
 &lt;br /&gt;
 cd lib/meam;  make -f Makefile.$(libFC.$(SYS)) F90FLAGS=&amp;quot;-O -D_EROSE_FUNCTION=1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
and replace it with &lt;br /&gt;
&lt;br /&gt;
 cd lib/meam;  make -f Makefile.$(libFC.$(SYS)) F90FLAGS=&amp;quot;-O -D_EROSE_FUNCTION=3&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Next, in the &#039;&#039;&#039;~/.bash_profile&#039;&#039;&#039; file, add the following line to specify the system you are using.&lt;br /&gt;
&lt;br /&gt;
 export TARGET=mc2&lt;br /&gt;
&lt;br /&gt;
Finally, go to LAMMPS.svn directory and type&lt;br /&gt;
&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
This will make lmp_mc2 in LAMMPS.svn/src/ directory.&lt;br /&gt;
&lt;br /&gt;
==Test cases==&lt;br /&gt;
&lt;br /&gt;
===MD++ test cases===&lt;br /&gt;
Assuming you&#039;ve got the latest MD++ package (e.g., revision 452 or later) from the &#039;&#039;&#039;svn&#039;&#039;&#039; server, you can download [[Media:Md++_meam_test_r452.tar |MD++ test case]] that contains one input &#039;&#039;&#039;tcl&#039;&#039;&#039;scripts and two configuration &#039;&#039;&#039;cn&#039;&#039;&#039; files, and unzip it under the MD++ home directory using the command&lt;br /&gt;
 cd ~/Codes/MD++.svn/&lt;br /&gt;
 tar -xvf Md++_meam_test_r452.tar&lt;br /&gt;
&lt;br /&gt;
The compilation of MEAM on cluster (for example mc2) can be done with the following command,&lt;br /&gt;
 make meam-lammps build=R SYS=mc2&lt;br /&gt;
&lt;br /&gt;
Run the below command within the MD++ home folder to start the test cases.&lt;br /&gt;
&lt;br /&gt;
Test case 1:&lt;br /&gt;
 bin/meam-lammps_mc2 scripts/work/si_au/si_au_compare.tcl AuSiTestCase1&lt;br /&gt;
Test case 2:&lt;br /&gt;
 bin/meam-lammps_mc2 scripts/work/si_au/si_au_compare.tcl AuSiTestCase2  &lt;br /&gt;
&lt;br /&gt;
The two runs will create two folders named as &#039;&#039;&#039;AuSiTestCase1&#039;&#039;&#039; and &#039;&#039;&#039;AuSiTestCase2&#039;&#039;&#039; in the &#039;&#039;&#039;Codes/MD++.svn/runs&#039;&#039;&#039;folder. In inside each folder, you can find one &#039;&#039;&#039;energy.txt&#039;&#039;&#039; file that stores the total potential energy value and one &#039;&#039;&#039;force.txt&#039;&#039;&#039; file that lists the forces act on each atom. You can download this Matlab code [[Media:Matlab_meam_check.tar |Energy and force check]] to test if your results are correct. When you unzip the tar file, you will have a folder named &#039;&#039;&#039;TEST&#039;&#039;&#039; that contains one Matlab script &#039;&#039;&#039;data_compare.m&#039;&#039;&#039; and several standard test case results for comparison. You need to put your &#039;&#039;&#039;force.txt&#039;&#039;&#039; and &#039;&#039;&#039;force.txt&#039;&#039;&#039; in the same folder, then the Matlab code will tell you if you pass the tests.&lt;br /&gt;
&lt;br /&gt;
===LAMMPS test cases===&lt;br /&gt;
&lt;br /&gt;
Assuming you&#039;ve followed the previous instruction and compiled the LAMMPS executable successfully, you can start the test cases by downloading [[Media:Lammps_meam_test_r24.tar |LAMMPS test case]] and unzipping it within the LAMMPS home folder.&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/&lt;br /&gt;
 tar -xvf Lammps_meam_test_r24.tar&lt;br /&gt;
&lt;br /&gt;
For mc2 test cases, you need to enter the folder created for each test case and submit your simulation request via a &#039;&#039;&#039;PBS&#039;&#039;&#039; script by typing&lt;br /&gt;
&lt;br /&gt;
Test case 1:&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/runs/AuSiTestCase1/&lt;br /&gt;
 qsub golammps.pbs&lt;br /&gt;
&lt;br /&gt;
Test case 2:&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/runs/AuSiTestCase2/&lt;br /&gt;
 qsub golammps.pbs&lt;br /&gt;
&lt;br /&gt;
If you prefer to work on WCR, you can avoid touching the &#039;&#039;&#039;PBS&#039;&#039;&#039; scripts. Instead you can type&lt;br /&gt;
&lt;br /&gt;
Test case 1: &lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/runs/AuSiTestCase1/&lt;br /&gt;
 ../../src/lmp_wcr -in in.md&lt;br /&gt;
&lt;br /&gt;
Test case 2:&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/runs/AuSiTestCase2/&lt;br /&gt;
 ../../src/lmp_wcr -in in.md&lt;br /&gt;
&lt;br /&gt;
When the simulation is finished, in the same folder, it will create a &#039;&#039;&#039;log.md&#039;&#039;&#039; file contains potential energy value and a &#039;&#039;&#039;dump.md&#039;&#039;&#039; file contains force information. To check these results with the provided Matlab code, you need to copy these two files into the &#039;&#039;&#039;TEST&#039;&#039;&#039; folder generated by unzipping [[Media:Matlab_meam_check.tar |Energy and force check]]. The Matlab code will tell you if you pass the tests via the messages displayed on screen.&lt;br /&gt;
&lt;br /&gt;
==Test case:Comparsion with MD++ ==&lt;br /&gt;
===(for LAMMPS before revision 24 and MD++ before revision 452)===&lt;br /&gt;
This section illustrates how to compare the simulation result from LAMMPS using the MEAM potential with that from MD++. A successful test will show MD++ and LAMMPS report the same potential energy and forces from a given atoms&#039; configuration. &lt;br /&gt;
&lt;br /&gt;
===MD++ test case=== &lt;br /&gt;
&lt;br /&gt;
Supposing you&#039;ve known how to run MD++ code from [http://micro.stanford.edu/wiki/MD%2B%2B_Manuals our manuals] and downloaded the MD++ package from our SVN server, you can do the following test case.&lt;br /&gt;
&lt;br /&gt;
Download [[media:md++_meam_testcase.tar.gz |md++_meam_testcase.tar.gz]], which contains a input &#039;&#039;&#039;tcl&#039;&#039;&#039; script, three configuration &#039;&#039;&#039;cn&#039;&#039;&#039; files and a help text file.  &lt;br /&gt;
&lt;br /&gt;
Unzip this &#039;&#039;&#039;gz&#039;&#039;&#039; file under the certain folder using the command&lt;br /&gt;
&lt;br /&gt;
 mkdir -p ~/Codes/MD++.svn/scripts/work/si_au&lt;br /&gt;
 cd ~/Codes/MD++.svn/scripts/work/si_au&lt;br /&gt;
 tar zxvf md++_meam_testcase.tar.gz &lt;br /&gt;
&lt;br /&gt;
Compile the MEAM potential typing the below command and make sure that in src/Makefile file &#039;&#039;&#039;-D_EROSE_FUNCTION=3&#039;&#039;&#039; is specified under meam-lammps. &lt;br /&gt;
&lt;br /&gt;
 make meam-lammps build=R SYS=mc2&lt;br /&gt;
&lt;br /&gt;
Run the simulation within the MD++ home folder. For example,&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_mc2 scripts/work/si_au/si_au_compare.tcl AuSiTestCase1&lt;br /&gt;
&lt;br /&gt;
This will read the atoms&#039; configuration from AuSiTestCase1.cn, visualize the atoms and calculate the potential and forces of the system. Meanwhile, it provides one &#039;&#039;&#039;.lammps&#039;&#039;&#039; file for &#039;&#039;&#039;LAMMPS&#039;&#039;&#039; and one &#039;&#039;&#039;.cfg&#039;&#039;&#039; file for &#039;&#039;&#039;Atomeye&#039;&#039;&#039;. The potential energy in this case should be&lt;br /&gt;
&lt;br /&gt;
 EPOT = -18874.6969309944&lt;br /&gt;
&lt;br /&gt;
You can compare this value with the number from LAMMPS later.&lt;br /&gt;
&lt;br /&gt;
Run the second test case,&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_mc2 scripts/work/si_au/si_au_compare.tcl AuSiTestCase2&lt;br /&gt;
&lt;br /&gt;
You should get this potential energy&lt;br /&gt;
&lt;br /&gt;
  EPOT=-19301.21011320015&lt;br /&gt;
&lt;br /&gt;
You can compare this value with the number from LAMMPS later.&lt;br /&gt;
&lt;br /&gt;
===LAMMPS test case=== &lt;br /&gt;
&lt;br /&gt;
Download [[Media:lammps_meam_testcase.tar.gz |lammps_meam_testcase.tar.gz]] and unzip it by the command&lt;br /&gt;
&lt;br /&gt;
 mkdir ~/Codes/LAMMPS.svn/runs/AuSi_meam_test&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/runs/AuSi_meam_test&lt;br /&gt;
 tar zxvf lammps_meam_testcase.tar.gz&lt;br /&gt;
&lt;br /&gt;
In this archive file, the &#039;&#039;&#039;in.md&#039;&#039;&#039; is the input script for[http://lammps.sandia.gov/doc/Manual.html LAMMPS]. The &#039;&#039;&#039;golammps.pbs&#039;&#039;&#039; can submit your simulation request onto the server. Run this LAMMPS test case, you should type&lt;br /&gt;
&lt;br /&gt;
 qsub golammps.pbs&lt;br /&gt;
&lt;br /&gt;
When the simulation is finished, in the same folder, you can check the potential information in the &#039;&#039;&#039;lammps.out&#039;&#039;&#039; file and the forces information in the &#039;&#039;&#039;dump.md&#039;&#039;&#039;file. Specifically, if you read the configuration from &#039;&#039;&#039;AuSiTestCase1.lammpsdata&#039;&#039;&#039;, you would expect the potential and forces results are exactly the same as those come from MD++ simulation, like the potential should be -1.88746969e+04.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Seunghwa&#039;s Instructions on How to Use MEAM Au-Si Potential==&lt;br /&gt;
&lt;br /&gt;
Adriano: please past the content here.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Use_Au-Si_MEAM_Potential_in_LAMMPS&amp;diff=6321</id>
		<title>Use Au-Si MEAM Potential in LAMMPS</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Use_Au-Si_MEAM_Potential_in_LAMMPS&amp;diff=6321"/>
		<updated>2015-09-08T01:46:42Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Test case:Comparsion with MD++ */&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;
Use Au-Si MEAM Potential in LAMMPS  &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;Yanming Wang, Seunghwa Ryu and Wei Cai&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 June, 2012, Last modified July, 2014&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;P&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This tutorial explains how to use Au-Si MEAM potential in LAMMPS on a cluster like &#039;&#039;&#039;mc2&#039;&#039;&#039;. It starts with the installation of LAMMPS on &#039;&#039;&#039;mc2&#039;&#039;&#039;, then talks about the compiling of the Au-Si MEAM potential. This tutorial also includes a test case to make sure the result from LAMMPS with this MEAM potential is consistent with that from MD++.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing LAMMPS on &#039;&#039;&#039;mc2&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
[http://lammps.sandia.gov/ LAMMPS] is a classical molecular dynamics code for large-scale atomic/molecular massively parallel simulation. On &#039;&#039;&#039;mc2&#039;&#039;&#039;, you can get LAMMPS from our SVN server using the following commands.&lt;br /&gt;
&lt;br /&gt;
 mkdir -p ~/Codes/LAMMPS.svn&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn&lt;br /&gt;
 svn co https://micro.stanford.edu/svn/LAMMPS .&lt;br /&gt;
&lt;br /&gt;
Typing the following SVN command from within the &amp;quot;LAMMPS.svn&amp;quot; directory, you can update your LAMMPS package.&lt;br /&gt;
 &lt;br /&gt;
 svn update&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Compiling MEAM potential in LAMMPS==&lt;br /&gt;
&lt;br /&gt;
The compilation of MEAM potential has been changed starting from LAMMPS &#039;&#039;&#039;svn&#039;&#039;&#039; revision 24. For detailed instruction, please refer to [http://micro.stanford.edu/wiki/How_to_compile_LAMMPS How to compile LAMMPS].  &lt;br /&gt;
&lt;br /&gt;
Please notice the following content is only for the older version LAMMPS. &lt;br /&gt;
&lt;br /&gt;
=== Preparing for parallel run ===&lt;br /&gt;
&lt;br /&gt;
First, you need to download the [[media:fftw.tar.gz |fftw.tar.gz]] and upload this archive file to your account on &#039;&#039;&#039;mc2&#039;&#039;&#039;. In your home directory, make a new folder named usr, then type the following command to unzip the fftw library in your &#039;&#039;&#039;usr&#039;&#039;&#039; folder.&lt;br /&gt;
&lt;br /&gt;
 cd ~/usr&lt;br /&gt;
 tar zxvf fftw.tar.gz&lt;br /&gt;
&lt;br /&gt;
ALso add the following lines at the end of your &#039;&#039;&#039;~/.bash_profile&#039;&#039;&#039; file to clarify the compiler.&lt;br /&gt;
&lt;br /&gt;
 module load intel/intel-11&lt;br /&gt;
 module load mvapich/1.2rc1-intel-11-dell-gen2&lt;br /&gt;
&lt;br /&gt;
=== Preparing for compiling MEAM potential ===&lt;br /&gt;
&lt;br /&gt;
Au-Si MEAM potential is a potential developed by Dr. Seunghwa Ryu and Prof. Wei Cai&amp;lt;ref&amp;gt;&lt;br /&gt;
[http://iopscience.iop.org/0953-8984/22/5/055401 Seunghwa Ryu and Wei Cai, &amp;quot;Molecular Dynamics Simulations of Gold-Catalyzed Growth of Silicon Bulk Crystals and Nanowires&amp;quot;, Journal of Materials Research, 26, 2199 (2011).]&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[http://journals.cambridge.org/action/displayAbstract?fromPage=online&amp;amp;aid=8368065 Seunghwa Ryu and Wei Cai, &amp;quot;A Gold-Silicon Potential Fitted to the Binary Phase Diagram&amp;quot;, Journal of Physics Condensed Matter, 22, 055401 (2010).]&lt;br /&gt;
&amp;lt;/ref&amp;gt;for gold-silicon binary system. To compile this potential in LAMMPS, you need to open the Makefile file under the &#039;&#039;&#039;LAMMPS.svn&#039;&#039;&#039; directory, finding the following line	&lt;br /&gt;
 &lt;br /&gt;
 cd lib/meam;  make -f Makefile.$(libFC.$(SYS)) F90FLAGS=&amp;quot;-O -D_EROSE_FUNCTION=1&amp;quot;&lt;br /&gt;
&lt;br /&gt;
and replace it with &lt;br /&gt;
&lt;br /&gt;
 cd lib/meam;  make -f Makefile.$(libFC.$(SYS)) F90FLAGS=&amp;quot;-O -D_EROSE_FUNCTION=3&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Next, in the &#039;&#039;&#039;~/.bash_profile&#039;&#039;&#039; file, add the following line to specify the system you are using.&lt;br /&gt;
&lt;br /&gt;
 export TARGET=mc2&lt;br /&gt;
&lt;br /&gt;
Finally, go to LAMMPS.svn directory and type&lt;br /&gt;
&lt;br /&gt;
 make&lt;br /&gt;
&lt;br /&gt;
This will make lmp_mc2 in LAMMPS.svn/src/ directory.&lt;br /&gt;
&lt;br /&gt;
==Test cases==&lt;br /&gt;
&lt;br /&gt;
===MD++ test cases===&lt;br /&gt;
Assuming you&#039;ve got the latest MD++ package (e.g., revision 452 or later) from the &#039;&#039;&#039;svn&#039;&#039;&#039; server, you can download [[Media:Md++_meam_test_r452.tar |MD++ test case]] that contains one input &#039;&#039;&#039;tcl&#039;&#039;&#039;scripts and two configuration &#039;&#039;&#039;cn&#039;&#039;&#039; files, and unzip it under the MD++ home directory using the command&lt;br /&gt;
 cd ~/Codes/MD++.svn/&lt;br /&gt;
 tar -xvf Md++_meam_test_r452.tar&lt;br /&gt;
&lt;br /&gt;
The compilation of MEAM on cluster (for example mc2) can be done with the following command,&lt;br /&gt;
 make meam-lammps build=R SYS=mc2&lt;br /&gt;
&lt;br /&gt;
Run the below command within the MD++ home folder to start the test cases.&lt;br /&gt;
&lt;br /&gt;
Test case 1:&lt;br /&gt;
 bin/meam-lammps_mc2 scripts/work/si_au/si_au_compare.tcl AuSiTestCase1&lt;br /&gt;
Test case 2:&lt;br /&gt;
 bin/meam-lammps_mc2 scripts/work/si_au/si_au_compare.tcl AuSiTestCase2  &lt;br /&gt;
&lt;br /&gt;
The two runs will create two folders named as &#039;&#039;&#039;AuSiTestCase1&#039;&#039;&#039; and &#039;&#039;&#039;AuSiTestCase2&#039;&#039;&#039; in the &#039;&#039;&#039;Codes/MD++.svn/runs&#039;&#039;&#039;folder. In inside each folder, you can find one &#039;&#039;&#039;energy.txt&#039;&#039;&#039; file that stores the total potential energy value and one &#039;&#039;&#039;force.txt&#039;&#039;&#039; file that lists the forces act on each atom. You can download this Matlab code [[Media:Matlab_meam_check.tar |Energy and force check]] to test if your results are correct. When you unzip the tar file, you will have a folder named &#039;&#039;&#039;TEST&#039;&#039;&#039; that contains one Matlab script &#039;&#039;&#039;data_compare.m&#039;&#039;&#039; and several standard test case results for comparison. You need to put your &#039;&#039;&#039;force.txt&#039;&#039;&#039; and &#039;&#039;&#039;force.txt&#039;&#039;&#039; in the same folder, then the Matlab code will tell you if you pass the tests.&lt;br /&gt;
&lt;br /&gt;
===LAMMPS test cases===&lt;br /&gt;
&lt;br /&gt;
Assuming you&#039;ve followed the previous instruction and compiled the LAMMPS executable successfully, you can start the test cases by downloading [[Media:Lammps_meam_test_r24.tar |LAMMPS test case]] and unzipping it within the LAMMPS home folder.&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/&lt;br /&gt;
 tar -xvf Lammps_meam_test_r24.tar&lt;br /&gt;
&lt;br /&gt;
For mc2 test cases, you need to enter the folder created for each test case and submit your simulation request via a &#039;&#039;&#039;PBS&#039;&#039;&#039; script by typing&lt;br /&gt;
&lt;br /&gt;
Test case 1:&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/runs/AuSiTestCase1/&lt;br /&gt;
 qsub golammps.pbs&lt;br /&gt;
&lt;br /&gt;
Test case 2:&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/runs/AuSiTestCase2/&lt;br /&gt;
 qsub golammps.pbs&lt;br /&gt;
&lt;br /&gt;
If you prefer to work on WCR, you can avoid touching the &#039;&#039;&#039;PBS&#039;&#039;&#039; scripts. Instead you can type&lt;br /&gt;
&lt;br /&gt;
Test case 1: &lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/runs/AuSiTestCase1/&lt;br /&gt;
 ../../src/lmp_wcr -in in.md&lt;br /&gt;
&lt;br /&gt;
Test case 2:&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/runs/AuSiTestCase2/&lt;br /&gt;
 ../../src/lmp_wcr -in in.md&lt;br /&gt;
&lt;br /&gt;
When the simulation is finished, in the same folder, it will create a &#039;&#039;&#039;log.md&#039;&#039;&#039; file contains potential energy value and a &#039;&#039;&#039;dump.md&#039;&#039;&#039; file contains force information. To check these results with the provided Matlab code, you need to copy these two files into the &#039;&#039;&#039;TEST&#039;&#039;&#039; folder generated by unzipping [[Media:Matlab_meam_check.tar |Energy and force check]]. The Matlab code will tell you if you pass the tests via the messages displayed on screen.&lt;br /&gt;
&lt;br /&gt;
==Test case:Comparsion with MD++ ==&lt;br /&gt;
===(for LAMMPS before revision 24 and MD++ before revision 452)===&lt;br /&gt;
This section illustrates how to compare the simulation result from LAMMPS using the MEAM potential with that from MD++. A successful test will show MD++ and LAMMPS report the same potential energy and forces from a given atoms&#039; configuration. &lt;br /&gt;
&lt;br /&gt;
===MD++ test case=== &lt;br /&gt;
&lt;br /&gt;
Supposing you&#039;ve known how to run MD++ code from [http://micro.stanford.edu/wiki/MD%2B%2B_Manuals our manuals] and downloaded the MD++ package from our SVN server, you can do the following test case.&lt;br /&gt;
&lt;br /&gt;
Downlaod [[media:md++_meam_testcase.tar.gz |md++_meam_testcase.tar.gz]], which contains a input &#039;&#039;&#039;tcl&#039;&#039;&#039; script, three configuration &#039;&#039;&#039;cn&#039;&#039;&#039; files and a help text file.  &lt;br /&gt;
&lt;br /&gt;
Unzip this &#039;&#039;&#039;gz&#039;&#039;&#039; file under the certain folder using the command&lt;br /&gt;
&lt;br /&gt;
 mkdir -p ~/Codes/MD++.svn/scripts/work/si_au&lt;br /&gt;
 cd ~/Codes/MD++.svn/scripts/work/si_au&lt;br /&gt;
 tar zxvf md++_meam_testcase.tar.gz &lt;br /&gt;
&lt;br /&gt;
Compile the MEAM potential typing the below command and make sure that in src/Makefile file &#039;&#039;&#039;-D_EROSE_FUNCTION=3&#039;&#039;&#039; is specified under meam-lammps. &lt;br /&gt;
&lt;br /&gt;
 make meam-lammps build=R SYS=mc2&lt;br /&gt;
&lt;br /&gt;
Run the simulation within the MD++ home folder. for example,&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_mc2 scripts/work/si_au/si_au_compare.tcl AuSiTestCase1&lt;br /&gt;
&lt;br /&gt;
This will read the atoms&#039; configuration from AuSiTestCase1.cn, visualize the atoms and calculate the potential and forces of the system. Meanwhile, it provides one &#039;&#039;&#039;.lammps&#039;&#039;&#039; file for &#039;&#039;&#039;LAMMPS&#039;&#039;&#039; and one &#039;&#039;&#039;.cfg&#039;&#039;&#039; file for &#039;&#039;&#039;Atomeye&#039;&#039;&#039;. The potential energy in this case should be -18874.6969309944. You can compare this value with the number from LAMMPS later.&lt;br /&gt;
&lt;br /&gt;
===LAMMPS test case=== &lt;br /&gt;
&lt;br /&gt;
Download [[Media:lammps_meam_testcase.tar.gz |lammps_meam_testcase.tar.gz]] and unzip it by the command&lt;br /&gt;
&lt;br /&gt;
 mkdir ~/Codes/LAMMPS.svn/runs/AuSi_meam_test&lt;br /&gt;
 cd ~/Codes/LAMMPS.svn/runs/AuSi_meam_test&lt;br /&gt;
 tar zxvf lammps_meam_testcase.tar.gz&lt;br /&gt;
&lt;br /&gt;
In this archive file, the &#039;&#039;&#039;in.md&#039;&#039;&#039; is the input script for[http://lammps.sandia.gov/doc/Manual.html LAMMPS]. The &#039;&#039;&#039;golammps.pbs&#039;&#039;&#039; can submit your simulation request onto the server. Run this LAMMPS test case, you should type&lt;br /&gt;
&lt;br /&gt;
 qsub golammps.pbs&lt;br /&gt;
&lt;br /&gt;
When the simulation is finished, in the same folder, you can check the potential information in the &#039;&#039;&#039;lammps.out&#039;&#039;&#039; file and the forces information in the &#039;&#039;&#039;dump.md&#039;&#039;&#039;file. Specifically, if you read the configuration from &#039;&#039;&#039;AuSiTestCase1.lammpsdata&#039;&#039;&#039;, you would expect the potential and forces results are exactly the same as those come from MD++ simulation, like the potential should be -1.88746969e+04.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Seunghwa&#039;s Instructions on How to Use MEAM Au-Si Potential==&lt;br /&gt;
&lt;br /&gt;
Adriano: please past the content here.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Computing_Melting_Point_by_Free_Energy_Method&amp;diff=6320</id>
		<title>Computing Melting Point by Free Energy Method</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=Computing_Melting_Point_by_Free_Energy_Method&amp;diff=6320"/>
		<updated>2015-09-07T07:21:10Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Melting point of MEAM Au */&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;
Computing Melting Point by Free Eneregy Method&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;Seunghwa Ryu and Wei Cai&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;&amp;lt;STRONG&amp;gt;Modified by Yanming Wang (Sep 2015)&amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This tutorial describes how to compute melting points from free energy methods.  We provide the MD++ script files and describe how to use them in detail.  The theoretical background is published in &lt;br /&gt;
&lt;br /&gt;
Comparison of Thermal Properties Predicted by Interatomic Potential Models,  &#039;&#039;Modelling and Simulation in Materials Science and Engineering&#039;&#039;, &#039;&#039;&#039;16&#039;&#039;&#039;, 085005 (2008). [http://micro.stanford.edu/~caiwei/papers/Ryu08msmse-meltingT.pdf (PDF)] (Paper selected as [http://www.iop.org/EJ/journal/-page=featured/0965-0393 MSMSE featured article]).  &lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Download files==&lt;br /&gt;
&lt;br /&gt;
First, you need to install MD++ on your computer by following the instructions on [[MD++_Manuals | MD++ Manuals]].&lt;br /&gt;
&lt;br /&gt;
Second, copy files [[media:melting_cubic.tcl.txt‎ | melting_cubic.tcl]] and&lt;br /&gt;
[[media:melting_noncubic.tcl.txt‎ | melting_noncubic.tcl]] to your input file directory of MD++.  You can do so by the following commands (assuming you have installed MD++ in &amp;lt;tt&amp;gt;~/Codes/MD++&amp;lt;/tt&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 export MDPP=~/Codes/MD++&lt;br /&gt;
 mkdir -p ${MDPP}/scripts/work/melting&lt;br /&gt;
 cd ${MDPP}/scripts/work/melting&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki-1.11.0/images/Melting_cubic.tcl.txt -O melting_cubic.tcl&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki-1.11.0/images/Melting_noncubic.tcl.txt -O melting_noncubic.tcl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Both files contain a big comment section in the beginning that describes in detail the (16) steps to compute the melting point.  These steps are fully automated.  In this tutorial, we describe how to run these scripts on a parallel cluster (using wcr.stanford.edu as an example) and what kind of results you should expect.&lt;br /&gt;
&lt;br /&gt;
==Compile executable file==&lt;br /&gt;
&lt;br /&gt;
Different executables in MD++ contains different interatomic potentials, for example, &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sw                  - Stillinger-Weber Silicon (modified by Balamane et al.)&lt;br /&gt;
sworig              - Original version of SW Silicon&lt;br /&gt;
swge                - Stillinger-Weber Germanium&lt;br /&gt;
tersoff             - Tersoff potential for Silicon&lt;br /&gt;
meam-lammps         - MEAM (taken from lammps)&lt;br /&gt;
meam-baskes         - MEAM (taken from Baskes&#039;s code dynamo)&lt;br /&gt;
meam                - MEAM (directly implemented in MD++)&lt;br /&gt;
eam                 - Embedded Atom Method &lt;br /&gt;
fs                  - Finnis-Sinclair&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here we use Si as an example. You can compile &amp;lt;tt&amp;gt;sworig&amp;lt;/tt&amp;gt; by typing&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 cd ${MDPP}&lt;br /&gt;
 make sworig build=R SYS=wcr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
If compilation is successful, this will create binary file &amp;lt;tt&amp;gt;sworig_wcr&amp;lt;/tt&amp;gt; file in your &amp;lt;tt&amp;gt;${MDPP}/bin&amp;lt;/tt&amp;gt; directory.&lt;br /&gt;
&lt;br /&gt;
The script [[media:melting_cubic.tcl.txt‎ | melting_cubic.tcl]] can be used with many potentials (i.e. executables), which are explained in the header region of the file.  Contact &amp;lt;tt&amp;gt;shryu@stanford.edu&amp;lt;/tt&amp;gt; if you have further questions.&lt;br /&gt;
&lt;br /&gt;
==Submit jobs==&lt;br /&gt;
&lt;br /&gt;
Here are the PBS scripts ([[media:melt1.pbs.txt‎ |melt1.pbs]] and&lt;br /&gt;
[[media:melt2.pbs.txt‎ |melt2.pbs]]) for submitting the jobs on wcr.stanford.edu.  You can submit jobs by typing the following commands.  This is a test case that computes the melting points of silicon described by the Stillinger-Weber (SW) potential on the parallel cluster wcr.stanford.edu.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 cd ${MDPP}&lt;br /&gt;
 mkdir runs/Single_Elem_Tm&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki-1.11.0/images/Melt1.pbs.txt -O melt1.pbs&lt;br /&gt;
 wget http://micro.stanford.edu/mediawiki-1.11.0/images/Melt2.pbs.txt -O melt2.pbs&lt;br /&gt;
 qsub melt1.pbs&lt;br /&gt;
 qsub melt2.pbs&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After the calculation is finished (within 24 hours), the free energy data will be stored in the following two directories.&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
${MDPP}/runs/Single_Elem_Tm/SW_Si_Solid/&lt;br /&gt;
${MDPP}/runs/Single_Elem_Tm/SW_Si_Liquid/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Analyse data==&lt;br /&gt;
&lt;br /&gt;
At the end of the calculation, data files and Matlab files will be automatically generated.  Transfer these files to a location where you have Matlab installed.  Run the following commands in Matlab and you will get the free energy plot (for solid and liquid phases).  The melting point is the temperature at which the two free energy curves cross.&lt;br /&gt;
&lt;br /&gt;
In this test case, the analysis files are generated in directory&lt;br /&gt;
&amp;lt;tt&amp;gt;${MDPP}/runs/Single_Elem_Tm&amp;lt;/tt&amp;gt;.  They are&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Hessian_SW_Si.m&lt;br /&gt;
Free_Energy_of_SW_Si.m&lt;br /&gt;
tar_SW_Si&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Run the following command to zip all data &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 cd ${MDPP}/runs/Single_Elem_Tm&lt;br /&gt;
 ./tar_SW_Si&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
into a tar file &amp;lt;tt&amp;gt;inter_SW_Si.tar&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Copy this file to your local computer and unzip the data.  Next, run the following command in Matlab.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Hessian_SW_Si.m&lt;br /&gt;
Free_Energy_of_SW_Si.m&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You&#039;ll see the following output files that contain all free energy data and the error analysis.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Solid Free Energy Info&lt;br /&gt;
&lt;br /&gt;
lattice const =    5.43095&lt;br /&gt;
strain =    0.00518&lt;br /&gt;
E_0 = -2218.74337 eV (   -4.33348 eV/atom)&lt;br /&gt;
F_w = -253.34582 eV (   -0.49482 eV/atom)&lt;br /&gt;
F_ha = E_0 + F_w = -2472.08919 eV (   -4.82830 eV/atom)&lt;br /&gt;
W_re_to_ha =    5.99169 eV (    0.01170 eV/atom)&lt;br /&gt;
W_ha_to_re =   -7.30068 eV (   -0.01426 eV/atom)&lt;br /&gt;
F_re - F_ha = (W_ha_to_re - W_re_to_ha)/2 =   -6.64619 eV (   -0.01298 eV/atom)&lt;br /&gt;
F_re at 1600.000000 = -2478.73538 eV (   -4.84128 eV/atom)&lt;br /&gt;
W_T1_to_T11 =  417.87095 eV (    0.81615 eV/atom)&lt;br /&gt;
W_T11_to_T1 = -417.87508 eV (   -0.81616 eV/atom)&lt;br /&gt;
dW1 = (W_T1_to_T11 - W_T11_to_T1)/2 =  417.87302 eV (    0.81616 eV/atom)&lt;br /&gt;
F_re at 2000.000000 = -2605.55266 eV (   -5.08897 eV/atom)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Liquid Free Energy Info&lt;br /&gt;
&lt;br /&gt;
strain =   -0.01894&lt;br /&gt;
F_ideal = -919.36940 (   -1.79564 eV/atom)&lt;br /&gt;
W_re_to_ga = 1888.21102 eV (    3.68791 eV/atom)&lt;br /&gt;
W_ga_to_re = -1887.53306 eV (   -3.68659 eV/atom)&lt;br /&gt;
F_re - F_ga = (W_ga_to_re - W_re_to_ga)/2 = -1887.87204 eV (   -3.68725 eV/atom)&lt;br /&gt;
W_ga_to_id = -256.29295 eV (   -0.50057 eV/atom)&lt;br /&gt;
W_id_to_ga =  256.52177 eV (    0.50102 eV/atom)&lt;br /&gt;
F_ga - F_id = (W_id_to_ga - W_ga_to_id)/2 =  256.40736 eV (    0.50080 eV/atom)&lt;br /&gt;
F_re at 1800.000000 = -2550.83408 eV (   -4.98210 eV/atom)&lt;br /&gt;
W_T2_to_T22 = -583.02785 eV (   -1.13873 eV/atom)&lt;br /&gt;
W_T22_to_T2 =  583.06542 eV (    1.13880 eV/atom)&lt;br /&gt;
dW2 = (W_T2_to_T22 - W_T22_to_T2)/2 = -583.04664 eV (   -1.13876 eV/atom)&lt;br /&gt;
F_re at 1384.615385 = -2386.68534 eV (   -4.66149 eV/atom)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Error Analysis&lt;br /&gt;
&lt;br /&gt;
Solid Side&lt;br /&gt;
Err_re_to_ha =    0.02769 eV ( 0.00005407 eV/atom)( 0.628 K)&lt;br /&gt;
Err_ha_to_re =    0.02815 eV ( 0.00005498 eV/atom)( 0.638 K)&lt;br /&gt;
Err_T1_to_T11 =    0.00374 eV ( 0.00000730 eV/atom)( 0.085 K)&lt;br /&gt;
Err_T11_to_T1 =    0.00441 eV ( 0.00000861 eV/atom)( 0.100 K)&lt;br /&gt;
&lt;br /&gt;
Liquid Side&lt;br /&gt;
Err_re_to_ga =    0.04793 eV ( 0.00009362 eV/atom)( 1.086 K)&lt;br /&gt;
Err_ga_to_re =    0.06601 eV ( 0.00012893 eV/atom)( 1.496 K)&lt;br /&gt;
Err_ga_to_id =    0.02557 eV ( 0.00004993 eV/atom)( 0.580 K)&lt;br /&gt;
Err_id_to_ga =    0.03421 eV ( 0.00006682 eV/atom)( 0.776 K)&lt;br /&gt;
Err_T2_to_T22 =    0.01488 eV ( 0.00002906 eV/atom)( 0.337 K)&lt;br /&gt;
Err_T22_to_T2 =    0.01183 eV ( 0.00002311 eV/atom)( 0.268 K)&lt;br /&gt;
Max dT =  2.315&lt;br /&gt;
Tm= 1695.08000 (K), err= 1.044 Fm =   -4.89779 (eV/atom)&lt;br /&gt;
L=      165.8833097832 (eV) Ss=0.308452 Sl=0.406313&lt;br /&gt;
L=        0.3239908394 (eV/atom) ss=0.000602 sl=0.000794&lt;br /&gt;
L=    31206.7976529696 (J/mol) ss=58.027496 sl=76.437718&lt;br /&gt;
L=  1111115.7748689589 (J/kg) ss=2066.064819 sl=2721.559412&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;The Gibbs free energy (in eV/atom) as a function of temperature (in K) of the solid (blue) and liquid (green) phases of silicon described by the Stillinger-Weber (SW) potential.  The intersection of the two curves determines the melting point.&amp;quot; widths=&amp;quot;300px&amp;quot; height=&amp;quot;200px&amp;quot; perrow=&amp;quot;1&amp;quot;&amp;gt; &lt;br /&gt;
Image:SW_Si_Tm.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Melting point of Other Elements ==&lt;br /&gt;
&lt;br /&gt;
===MEAM Si===&lt;br /&gt;
Following the same procedure, we can evaluate the melting point of Au with the &#039;&#039;&#039;meam-lammps&#039;&#039;&#039;  potential. The results are &amp;lt;math&amp;gt;T_m = ??&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = ?? J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = ?? J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = ?? J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This is to be compared with MSMSE 16, 085005 (2008), Table 1, in which &amp;lt;math&amp;gt;T_m = 1411.3 \pm 0.4&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 1309 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 48.74 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 74.79 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The agreement is good / not-so-good ???&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===MEAM Au===&lt;br /&gt;
Following the same procedure, we can evaluate the melting point of Au with the &#039;&#039;&#039;meam-lammps&#039;&#039;&#039;  potential. The results are &amp;lt;math&amp;gt;T_m = 1145&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 92.4 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 77.63 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 93.52 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This is to be compared with MSMSE 16, 085005 (2008), Table 1, in which &amp;lt;math&amp;gt;T_m = 1120.0 \pm 0.6&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 92 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 77.47 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 93.72 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The agreement on &amp;lt;math&amp;gt;L&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;S_L&amp;lt;/math&amp;gt; is pretty good.  The values of &amp;lt;math&amp;gt;T_m&amp;lt;/math&amp;gt; do not agree so well.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===EAM Au===&lt;br /&gt;
Still waiting for results...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===MEAM Ge===&lt;br /&gt;
Following the same procedure, we can evaluate the melting point of Au with the &#039;&#039;&#039;meam-lammps&#039;&#039;&#039;  potential. The results are &amp;lt;math&amp;gt;T_m = ???&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = ??? J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = ??? J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = ??? J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This is to be compared with MSMSE 16, 085005 (2008), Table 1, in which &amp;lt;math&amp;gt;T_m = 1216.2 \pm 0.6&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 427 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 58.34 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 83.84 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The agreement is good / not-so-good ???&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===SW Ge===&lt;br /&gt;
Following the same procedure, we can evaluate the melting point of Au with the &#039;&#039;&#039;meam-lammps&#039;&#039;&#039;  potential. The results are &amp;lt;math&amp;gt;T_m = ???&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = ??? J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = ??? J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = ??? J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
This is to be compared with MSMSE 16, 085005 (2008), Table 1, in which &amp;lt;math&amp;gt;T_m = 2898.0 \pm 1.7&amp;lt;/math&amp;gt; K, &amp;lt;math&amp;gt;L = 847 J/g &amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;S_S = 84.07 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;S_L = 105.30 J/(\mbox{mol}\cdot K) &amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The agreement is good / not-so-good ???&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6318</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6318"/>
		<updated>2015-09-07T05:05:45Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Benchmark in MD++ */&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;
MEAM Potential for Au-Si&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;Adriano Santana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS). It selects the&lt;br /&gt;
G(gamma) function in Eq (4) and (5) on the paper by BJ LEE: Phys. Rev. B 64, 184102 (2001)&lt;br /&gt;
&lt;br /&gt;
While the functional form is quite different, the modulus is almost not affected by&lt;br /&gt;
the choice of ibar.&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
 augt1 = 1&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.  The variable &amp;lt;math&amp;gt;d = 0.05&amp;lt;/math&amp;gt; is hard coded in &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039; (when repuls &amp;lt; 5.0).&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
The modification made in Ryu and Cai JPCM (2010) is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The lines relevant for the cross potential (i.e. between species 1 and 2) are shown below.  The values correspond to Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
 re(1,2) = 2.700    (&amp;lt;math&amp;gt;r_e&amp;lt;/math&amp;gt;)&lt;br /&gt;
 delta(1,2) = 0.125   (related to &amp;lt;math&amp;gt;E_c&amp;lt;/math&amp;gt;, see below)&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819     (&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;)&lt;br /&gt;
 attrac(1,2) = 0.0      &lt;br /&gt;
 repuls(1,2) = 0.26     (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,2) = 1.9     (&amp;lt;math&amp;gt;C_{\min}(1,1,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,1) = 0.95     (&amp;lt;math&amp;gt;C_{\min}(1,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,2) = 1.85     (&amp;lt;math&amp;gt;C_{\min}(1,2,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,1) = 1.0     (&amp;lt;math&amp;gt;C_{\min}(2,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Table 3 of Ryu and Cai (2010) gives &amp;lt;math&amp;gt;E_c ({\rm AuSi}) = 4.155&amp;lt;/math&amp;gt;.  This value is related to delta(1,2) through&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E_c ({\rm AuSi}) = 0.5*[ E_c ({\rm Au}) + E_c({\rm Si}) ] - {\rm delta}(1,2) = 0.5 * (3.93 + 4.63) - 0.125 = 4.155&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si} / \rho_0^{\rm Au}&amp;lt;/math&amp;gt; = 1.48 because of the &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; values specified above.&lt;br /&gt;
&lt;br /&gt;
Cmax = 2.8 is the default value.&lt;br /&gt;
&lt;br /&gt;
==Benchmark in MD++==&lt;br /&gt;
&lt;br /&gt;
Compile the code using the following command.&lt;br /&gt;
&lt;br /&gt;
 make meam-lammps build=R SYS=gpp&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the equilibrium lattice constant and cohesive energy of pure Au (FCC).  You can download the [[media:si-au.tcl.txt | si-au.tcl]] from the link.&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si-au.tcl 1&lt;br /&gt;
&lt;br /&gt;
The results are&lt;br /&gt;
&lt;br /&gt;
 a0 = 4.07300759775 Angstrom&lt;br /&gt;
 Ecoh = -3.92996804082 eV&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the equilibrium lattice constant and cohesive energy of pure Si (DC).&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si-au.tcl 0&lt;br /&gt;
&lt;br /&gt;
The results are&lt;br /&gt;
 &lt;br /&gt;
  a0 = 5.43100051581 Angstrom &lt;br /&gt;
  Ecoh = -4.63000000205 eV&lt;br /&gt;
&lt;br /&gt;
===Impurity energy===&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the impurity of a Au atom in Si DC lattice.&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si-au.tcl 4&lt;br /&gt;
&lt;br /&gt;
The results depend slightly on the cell size&lt;br /&gt;
 cell size, Eimp(eV)&lt;br /&gt;
 3x3x3      3.914&lt;br /&gt;
 4x4x4      3.968&lt;br /&gt;
 5x5x5      3.987&lt;br /&gt;
 10x10x10   4.005&lt;br /&gt;
 20x20x20   4.008&lt;br /&gt;
&lt;br /&gt;
The result in the paper (S. Ryu and W.Cai JPCM 22 055401 (2010), Table 2,&lt;br /&gt;
is &amp;lt;math&amp;gt;E_2 = 3.968&amp;lt;/math&amp;gt; (eV) for a Au atom in Si DC crystal.&lt;br /&gt;
So it seems that the result in JPCM (2010) corresponds to the 4x4x4 cell here.&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;Seunghwa: please confirm.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the impurity of a Si atom in Au fcc lattice.&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si-au.tcl 3&lt;br /&gt;
&lt;br /&gt;
 cell size, Eimp(eV)&lt;br /&gt;
 2x2x2      0.639&lt;br /&gt;
 3x3x3      0.660&lt;br /&gt;
 4x4x4      0.665&lt;br /&gt;
 5x5x5      0.667&lt;br /&gt;
 10x10x10   0.669&lt;br /&gt;
 20x20x20   0.669&lt;br /&gt;
&lt;br /&gt;
The result in the paper (S. Ryu and W.Cai JPCM 22 055401 (2010), Table 2, &lt;br /&gt;
is &amp;lt;math&amp;gt;E_1 = 0.636&amp;lt;/math&amp;gt; (eV) for a Si atom in Au FCC crystal.&lt;br /&gt;
So it seems that for a Si in Au FCC crystal, the predicted results here (using MEAM potential by MD++) &amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;does not agree well with the value in JPCM (2010) regardless of the cell size.&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6317</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6317"/>
		<updated>2015-09-07T05:03:47Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Benchmark in MD++ */&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;
MEAM Potential for Au-Si&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;Adriano Santana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS). It selects the&lt;br /&gt;
G(gamma) function in Eq (4) and (5) on the paper by BJ LEE: Phys. Rev. B 64, 184102 (2001)&lt;br /&gt;
&lt;br /&gt;
While the functional form is quite different, the modulus is almost not affected by&lt;br /&gt;
the choice of ibar.&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
 augt1 = 1&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.  The variable &amp;lt;math&amp;gt;d = 0.05&amp;lt;/math&amp;gt; is hard coded in &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039; (when repuls &amp;lt; 5.0).&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
The modification made in Ryu and Cai JPCM (2010) is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The lines relevant for the cross potential (i.e. between species 1 and 2) are shown below.  The values correspond to Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
 re(1,2) = 2.700    (&amp;lt;math&amp;gt;r_e&amp;lt;/math&amp;gt;)&lt;br /&gt;
 delta(1,2) = 0.125   (related to &amp;lt;math&amp;gt;E_c&amp;lt;/math&amp;gt;, see below)&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819     (&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;)&lt;br /&gt;
 attrac(1,2) = 0.0      &lt;br /&gt;
 repuls(1,2) = 0.26     (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,2) = 1.9     (&amp;lt;math&amp;gt;C_{\min}(1,1,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,1) = 0.95     (&amp;lt;math&amp;gt;C_{\min}(1,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,2) = 1.85     (&amp;lt;math&amp;gt;C_{\min}(1,2,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,1) = 1.0     (&amp;lt;math&amp;gt;C_{\min}(2,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Table 3 of Ryu and Cai (2010) gives &amp;lt;math&amp;gt;E_c ({\rm AuSi}) = 4.155&amp;lt;/math&amp;gt;.  This value is related to delta(1,2) through&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E_c ({\rm AuSi}) = 0.5*[ E_c ({\rm Au}) + E_c({\rm Si}) ] - {\rm delta}(1,2) = 0.5 * (3.93 + 4.63) - 0.125 = 4.155&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si} / \rho_0^{\rm Au}&amp;lt;/math&amp;gt; = 1.48 because of the &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; values specified above.&lt;br /&gt;
&lt;br /&gt;
Cmax = 2.8 is the default value.&lt;br /&gt;
&lt;br /&gt;
==Benchmark in MD++==&lt;br /&gt;
&lt;br /&gt;
Compile the code using the following command.&lt;br /&gt;
&lt;br /&gt;
 make meam-lammps build=R SYS=gpp&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the equilibrium lattice constant and cohesive energy of pure Au (FCC).  You can download the [[media:Si-au.tcl.txt | si-au.tcl]] from the link.&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si-au.tcl 1&lt;br /&gt;
&lt;br /&gt;
The results are&lt;br /&gt;
&lt;br /&gt;
 a0 = 4.07300759775 Angstrom&lt;br /&gt;
 Ecoh = -3.92996804082 eV&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the equilibrium lattice constant and cohesive energy of pure Si (DC).&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si-au.tcl 0&lt;br /&gt;
&lt;br /&gt;
The results are&lt;br /&gt;
 &lt;br /&gt;
  a0 = 5.43100051581 Angstrom &lt;br /&gt;
  Ecoh = -4.63000000205 eV&lt;br /&gt;
&lt;br /&gt;
===Impurity energy===&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the impurity of a Au atom in Si DC lattice.&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si-au.tcl 4&lt;br /&gt;
&lt;br /&gt;
The results depend slightly on the cell size&lt;br /&gt;
 cell size, Eimp(eV)&lt;br /&gt;
 3x3x3      3.914&lt;br /&gt;
 4x4x4      3.968&lt;br /&gt;
 5x5x5      3.987&lt;br /&gt;
 10x10x10   4.005&lt;br /&gt;
 20x20x20   4.008&lt;br /&gt;
&lt;br /&gt;
The result in the paper (S. Ryu and W.Cai JPCM 22 055401 (2010), Table 2,&lt;br /&gt;
is &amp;lt;math&amp;gt;E_2 = 3.968&amp;lt;/math&amp;gt; (eV) for a Au atom in Si DC crystal.&lt;br /&gt;
So it seems that the result in JPCM (2010) corresponds to the 4x4x4 cell here.&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;Seunghwa: please confirm.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the impurity of a Si atom in Au fcc lattice.&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si-au.tcl 3&lt;br /&gt;
&lt;br /&gt;
 cell size, Eimp(eV)&lt;br /&gt;
 2x2x2      0.639&lt;br /&gt;
 3x3x3      0.660&lt;br /&gt;
 4x4x4      0.665&lt;br /&gt;
 5x5x5      0.667&lt;br /&gt;
 10x10x10   0.669&lt;br /&gt;
 20x20x20   0.669&lt;br /&gt;
&lt;br /&gt;
The result in the paper (S. Ryu and W.Cai JPCM 22 055401 (2010), Table 2, &lt;br /&gt;
is &amp;lt;math&amp;gt;E_1 = 0.636&amp;lt;/math&amp;gt; (eV) for a Si atom in Au FCC crystal.&lt;br /&gt;
So it seems that for a Si in Au FCC crystal, the predicted results here (using MEAM potential by MD++) &amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;does not agree well with the value in JPCM (2010) regardless of the cell size.&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6316</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6316"/>
		<updated>2015-09-07T04:48:27Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Impurity energy */&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;
MEAM Potential for Au-Si&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;Adriano Santana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS). It selects the&lt;br /&gt;
G(gamma) function in Eq (4) and (5) on the paper by BJ LEE: Phys. Rev. B 64, 184102 (2001)&lt;br /&gt;
&lt;br /&gt;
While the functional form is quite different, the modulus is almost not affected by&lt;br /&gt;
the choice of ibar.&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
 augt1 = 1&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.  The variable &amp;lt;math&amp;gt;d = 0.05&amp;lt;/math&amp;gt; is hard coded in &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039; (when repuls &amp;lt; 5.0).&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
The modification made in Ryu and Cai JPCM (2010) is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The lines relevant for the cross potential (i.e. between species 1 and 2) are shown below.  The values correspond to Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
 re(1,2) = 2.700    (&amp;lt;math&amp;gt;r_e&amp;lt;/math&amp;gt;)&lt;br /&gt;
 delta(1,2) = 0.125   (related to &amp;lt;math&amp;gt;E_c&amp;lt;/math&amp;gt;, see below)&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819     (&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;)&lt;br /&gt;
 attrac(1,2) = 0.0      &lt;br /&gt;
 repuls(1,2) = 0.26     (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,2) = 1.9     (&amp;lt;math&amp;gt;C_{\min}(1,1,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,1) = 0.95     (&amp;lt;math&amp;gt;C_{\min}(1,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,2) = 1.85     (&amp;lt;math&amp;gt;C_{\min}(1,2,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,1) = 1.0     (&amp;lt;math&amp;gt;C_{\min}(2,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Table 3 of Ryu and Cai (2010) gives &amp;lt;math&amp;gt;E_c ({\rm AuSi}) = 4.155&amp;lt;/math&amp;gt;.  This value is related to delta(1,2) through&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E_c ({\rm AuSi}) = 0.5*[ E_c ({\rm Au}) + E_c({\rm Si}) ] - {\rm delta}(1,2) = 0.5 * (3.93 + 4.63) - 0.125 = 4.155&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si} / \rho_0^{\rm Au}&amp;lt;/math&amp;gt; = 1.48 because of the &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; values specified above.&lt;br /&gt;
&lt;br /&gt;
Cmax = 2.8 is the default value.&lt;br /&gt;
&lt;br /&gt;
==Benchmark in MD++==&lt;br /&gt;
&lt;br /&gt;
Compile the code using the following command.&lt;br /&gt;
&lt;br /&gt;
 make meam-lammps build=R SYS=gpp&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the equilibrium lattice constant and cohesive energy of pure Au (FCC).&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si-au.tcl 1&lt;br /&gt;
&lt;br /&gt;
The results are&lt;br /&gt;
&lt;br /&gt;
 a0 = 4.07300759775 Angstrom&lt;br /&gt;
 Ecoh = -3.92996804082 eV&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the equilibrium lattice constant and cohesive energy of pure Si (DC).&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si-au.tcl 0&lt;br /&gt;
&lt;br /&gt;
The results are&lt;br /&gt;
 &lt;br /&gt;
  a0 = 5.43100051581 Angstrom &lt;br /&gt;
  Ecoh = -4.63000000205 eV&lt;br /&gt;
&lt;br /&gt;
===Impurity energy===&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the impurity of a Au atom in Si DC lattice.&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si-au.tcl 4&lt;br /&gt;
&lt;br /&gt;
The results depend slightly on the cell size&lt;br /&gt;
 cell size, Eimp(eV)&lt;br /&gt;
 3x3x3      3.914&lt;br /&gt;
 4x4x4      3.968&lt;br /&gt;
 5x5x5      3.987&lt;br /&gt;
 10x10x10   4.005&lt;br /&gt;
 20x20x20   4.008&lt;br /&gt;
&lt;br /&gt;
The result in the paper (S. Ryu and W.Cai JPCM 22 055401 (2010), Table 2,&lt;br /&gt;
is &amp;lt;math&amp;gt;E_2 = 3.968&amp;lt;/math&amp;gt; (eV) for a Au atom in Si DC crystal.&lt;br /&gt;
So it seems that the result in JPCM (2010) corresponds to the 4x4x4 cell here.&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;Seunghwa: please confirm.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Use the following command to compute the impurity of a Si atom in Au fcc lattice.&lt;br /&gt;
&lt;br /&gt;
 bin/meam-lammps_gpp scripts/work/si_au/si-au.tcl 3&lt;br /&gt;
&lt;br /&gt;
 cell size, Eimp(eV)&lt;br /&gt;
 2x2x2      0.639&lt;br /&gt;
 3x3x3      0.660&lt;br /&gt;
 4x4x4      0.665&lt;br /&gt;
 5x5x5      0.667&lt;br /&gt;
 10x10x10   0.669&lt;br /&gt;
 20x20x20   0.669&lt;br /&gt;
&lt;br /&gt;
The result in the paper (S. Ryu and W.Cai JPCM 22 055401 (2010), Table 2, &lt;br /&gt;
is &amp;lt;math&amp;gt;E_1 = 0.636&amp;lt;/math&amp;gt; (eV) for a Si atom in Au FCC crystal.&lt;br /&gt;
So it seems that for a Si in Au FCC crystal, the predicted results here (using MEAM potential by MD++) &amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;does not agree well with the value in JPCM (2010) regardless of the cell size.&amp;lt;/span&amp;gt;&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6220</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6220"/>
		<updated>2015-08-31T07:07:24Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* New 2nn MEAM Potential for Au */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;&#039;&#039;&#039;Seunghwa: Can you explain what does ibar mean?  For Au, ibar = 3, and for Si, ibar = 0.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
 augt1 = 1&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.  The variable &amp;lt;math&amp;gt;d = 0.05&amp;lt;/math&amp;gt; is hard coded in &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039; (when repuls &amp;lt; 5.0).&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
The modification made in Ryu and Cai JPCM (2010) is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The lines relevant for the cross potential (i.e. between species 1 and 2) are shown below.  The values correspond to Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
 re(1,2) = 2.700    (&amp;lt;math&amp;gt;r_e&amp;lt;/math&amp;gt;)&lt;br /&gt;
 delta(1,2) = 0.125   (related to &amp;lt;math&amp;gt;E_c&amp;lt;/math&amp;gt;, see below)&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819     (&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;)&lt;br /&gt;
 attrac(1,2) = 0.0      &lt;br /&gt;
 repuls(1,2) = 0.26     (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,2) = 1.9     (&amp;lt;math&amp;gt;C_{\min}(1,1,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,1) = 0.95     (&amp;lt;math&amp;gt;C_{\min}(1,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,2) = 1.85     (&amp;lt;math&amp;gt;C_{\min}(1,2,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,1) = 1.0     (&amp;lt;math&amp;gt;C_{\min}(2,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Table 3 of Ryu and Cai (2010) gives &amp;lt;math&amp;gt;E_c ({\rm AuSi}) = 4.155&amp;lt;/math&amp;gt;.  This value is related to delta(1,2) through&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E_c ({\rm AuSi}) = 0.5*[ E_c ({\rm Au}) + E_c({\rm Si}) ] - {\rm delta}(1,2) = 0.5 * (3.93 + 4.63) - 0.125 = 4.155&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si} / \rho_0^{\rm Au}&amp;lt;/math&amp;gt; = 1.48 because of the &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; values specified above.&lt;br /&gt;
&lt;br /&gt;
Cmax = 2.8 is the default value.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6219</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6219"/>
		<updated>2015-08-31T07:06:19Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Cross Potential between Au and Si */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;&#039;&#039;&#039;Seunghwa: Can you explain what does ibar mean?  For Au, ibar = 3, and for Si, ibar = 0.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.  The variable &amp;lt;math&amp;gt;d = 0.05&amp;lt;/math&amp;gt; is hard coded in &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039; (when repuls &amp;lt; 5.0).&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
The modification made in Ryu and Cai JPCM (2010) is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The lines relevant for the cross potential (i.e. between species 1 and 2) are shown below.  The values correspond to Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
 re(1,2) = 2.700    (&amp;lt;math&amp;gt;r_e&amp;lt;/math&amp;gt;)&lt;br /&gt;
 delta(1,2) = 0.125   (related to &amp;lt;math&amp;gt;E_c&amp;lt;/math&amp;gt;, see below)&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819     (&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;)&lt;br /&gt;
 attrac(1,2) = 0.0      &lt;br /&gt;
 repuls(1,2) = 0.26     (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,2) = 1.9     (&amp;lt;math&amp;gt;C_{\min}(1,1,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,1) = 0.95     (&amp;lt;math&amp;gt;C_{\min}(1,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,2) = 1.85     (&amp;lt;math&amp;gt;C_{\min}(1,2,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,1) = 1.0     (&amp;lt;math&amp;gt;C_{\min}(2,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Table 3 of Ryu and Cai (2010) gives &amp;lt;math&amp;gt;E_c ({\rm AuSi}) = 4.155&amp;lt;/math&amp;gt;.  This value is related to delta(1,2) through&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E_c ({\rm AuSi}) = 0.5*[ E_c ({\rm Au}) + E_c({\rm Si}) ] - {\rm delta}(1,2) = 0.5 * (3.93 + 4.63) - 0.125 = 4.155&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si} / \rho_0^{\rm Au}&amp;lt;/math&amp;gt; = 1.48 because of the &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; values specified above.&lt;br /&gt;
&lt;br /&gt;
Cmax = 2.8 is the default value.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6218</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6218"/>
		<updated>2015-08-31T07:05:20Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Cross Potential between Au and Si */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;&#039;&#039;&#039;Seunghwa: Can you explain what does ibar mean?  For Au, ibar = 3, and for Si, ibar = 0.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.  The variable &amp;lt;math&amp;gt;d = 0.05&amp;lt;/math&amp;gt; is hard coded in &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039; (when repuls &amp;lt; 5.0).&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
The modification made in Ryu and Cai JPCM (2010) is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The lines relevant for the cross potential (i.e. between species 1 and 2) are shown below.  The values correspond to Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
 re(1,2) = 2.700    (&amp;lt;math&amp;gt;r_e&amp;lt;/math&amp;gt;)&lt;br /&gt;
 delta(1,2) = 0.125   (related to &amp;lt;math&amp;gt;E_c&amp;lt;/math&amp;gt;, see below)&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819     (&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;)&lt;br /&gt;
 attrac(1,2) = 0.0      &lt;br /&gt;
 repuls(1,2) = 0.26     (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,2) = 1.9     (&amp;lt;math&amp;gt;C_{\min}(1,1,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,1) = 0.95     (&amp;lt;math&amp;gt;C_{\min}(1,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,2) = 1.85     (&amp;lt;math&amp;gt;C_{\min}(1,2,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,1) = 1.0     (&amp;lt;math&amp;gt;C_{\min}(2,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Table 3 of Ryu and Cai (2010) gives &amp;lt;math&amp;gt;E_c (AuSi) = 4.155&amp;lt;/math&amp;gt;.  This value is related to delta(1,2) through&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E_c ({\rm AuSi}) = 0.5*[ E_c ({\rm Au}) + E_c({\rm Si}) ] - delta(1,2) = 0.5 * (3.93 + 4.63) - 0.125 = 4.155&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si} / \rho_0^{\rm Au}&amp;lt;/math&amp;gt; = 1.48 because of the &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; values specified above.&lt;br /&gt;
&lt;br /&gt;
Cmax = 2.8 is the default value.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6217</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6217"/>
		<updated>2015-08-31T07:03:37Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Cross Potential between Au and Si */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;&#039;&#039;&#039;Seunghwa: Can you explain what does ibar mean?  For Au, ibar = 3, and for Si, ibar = 0.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.  The variable &amp;lt;math&amp;gt;d = 0.05&amp;lt;/math&amp;gt; is hard coded in &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039; (when repuls &amp;lt; 5.0).&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
The modification made in Ryu and Cai JPCM (2010) is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The lines relevant for the cross potential (i.e. between species 1 and 2) are shown below.  The values correspond to Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
 re(1,2) = 2.700    (&amp;lt;math&amp;gt;r_e&amp;lt;/math&amp;gt;)&lt;br /&gt;
 delta(1,2) = 0.125   (related to &amp;lt;math&amp;gt;E_c&amp;lt;/math&amp;gt;, see below)&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819     (&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;)&lt;br /&gt;
 attrac(1,2) = 0.0      &lt;br /&gt;
 repuls(1,2) = 0.26     (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,2) = 1.9     (&amp;lt;math&amp;gt;C_{\min}(1,1,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,1) = 0.95     (&amp;lt;math&amp;gt;C_{\min}(1,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,2) = 1.85     (&amp;lt;math&amp;gt;C_{\min}(1,2,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,1) = 1.0     (&amp;lt;math&amp;gt;C_{\min}(2,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Table 3 of Ryu and Cai (2010) gives &amp;lt;math&amp;gt;E_c (AuSi) = 4.155&amp;lt;/math&amp;gt;.  This value is related to delta(1,2) through&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E_c (AuSi) = 0.5*[ E_c (Au) + E_c(Si) ] - delta(1,2) = 0.5 * (3.93 + 4.63) - 0.125 = 4.155&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si} / \rho_0^{\rm Au}&amp;lt;/math&amp;gt; = 1.48 because of the &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; values specified above.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6216</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6216"/>
		<updated>2015-08-31T07:03:11Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Cross Potential between Au and Si */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;&#039;&#039;&#039;Seunghwa: Can you explain what does ibar mean?  For Au, ibar = 3, and for Si, ibar = 0.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.  The variable &amp;lt;math&amp;gt;d = 0.05&amp;lt;/math&amp;gt; is hard coded in &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039; (when repuls &amp;lt; 5.0).&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
The modification made in Ryu and Cai JPCM (2010) is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The lines relevant for the cross potential (i.e. between species 1 and 2) are shown below.  The values correspond to Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
 re(1,2) = 2.700    (&amp;lt;math&amp;gt;r_e&amp;lt;/math&amp;gt;)&lt;br /&gt;
 delta(1,2) = 0.125   (related to &amp;lt;math&amp;gt;E_c&amp;lt;/math&amp;gt;, see below)&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819     (&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;)&lt;br /&gt;
 attrac(1,2) = 0.0      &lt;br /&gt;
 repuls(1,2) = 0.26     (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,2) = 1.9     (&amp;lt;math&amp;gt;C_{\min}(1,1,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,1) = 0.95     (&amp;lt;math&amp;gt;C_{\min}(1,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,2) = 1.85     (&amp;lt;math&amp;gt;C_{\min}(1,2,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,1) = 1.0     (&amp;lt;math&amp;gt;C_{\min}(2,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Table 3 of Ryu and Cai (2010) gives &amp;lt;math&amp;gt;E_c (AuSi) = 4.155&amp;lt;/math&amp;gt;.  This value is related to delta(1,2) through&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E_c (AuSi) = 0.5*[ E_c (Au) + E_c(Si) ] - delta(1,2) = 0.5 * (3.93 + 4.63) - 0.125 = 4.155&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si} / \rho_0^{\rm Au} = 1.38&amp;lt;/math&amp;gt; because of the &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; values specified above.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6215</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6215"/>
		<updated>2015-08-31T06:34:11Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Cross Potential between Au and Si */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;&#039;&#039;&#039;Seunghwa: Can you explain what does ibar mean?  For Au, ibar = 3, and for Si, ibar = 0.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.  The variable &amp;lt;math&amp;gt;d = 0.05&amp;lt;/math&amp;gt; is hard coded in &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039; (when repuls &amp;lt; 5.0).&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
The modification made in Ryu and Cai JPCM (2010) is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The lines relevant for the cross potential (i.e. between species 1 and 2) are shown below.  The values correspond to Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
 re(1,2) = 2.700    (&amp;lt;math&amp;gt;r_e&amp;lt;/math&amp;gt;)&lt;br /&gt;
 delta(1,2) = 0.125   (related to &amp;lt;math&amp;gt;E_c&amp;lt;/math&amp;gt;, see below)&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819     (&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;)&lt;br /&gt;
 attrac(1,2) = 0.0      &lt;br /&gt;
 repuls(1,2) = 0.26     (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,2) = 1.9     (&amp;lt;math&amp;gt;C_{\min}(1,1,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,1) = 0.95     (&amp;lt;math&amp;gt;C_{\min}(1,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,2) = 1.85     (&amp;lt;math&amp;gt;C_{\min}(1,2,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,1) = 1.0     (&amp;lt;math&amp;gt;C_{\min}(2,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Table 3 of Ryu and Cai (2010) gives &amp;lt;math&amp;gt;E_c (AuSi) = 4.155&amp;lt;/math&amp;gt;.  This value is related to delta(1,2) through&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E_c (AuSi) = 0.5*[ E_c (Au) + E_c(Si) ] - delta(1,2) = 0.5 * (3.93 + 4.63) - 0.125 = 4.155&amp;lt;/math&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6214</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6214"/>
		<updated>2015-08-31T06:33:11Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Cross Potential between Au and Si */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;&#039;&#039;&#039;Seunghwa: Can you explain what does ibar mean?  For Au, ibar = 3, and for Si, ibar = 0.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.  The variable &amp;lt;math&amp;gt;d = 0.05&amp;lt;/math&amp;gt; is hard coded in &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039; (when repuls &amp;lt; 5.0).&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
The modification made in Ryu and Cai JPCM (2010) is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The lines relevant for the cross potential (i.e. between species 1 and 2) are shown below.  The values correspond to Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
 re(1,2) = 2.700    (&amp;lt;math&amp;gt;r_e&amp;lt;/math&amp;gt;)&lt;br /&gt;
 delta(1,2) = 0.125   (??????)&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819     (&amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;)&lt;br /&gt;
 attrac(1,2) = 0.0      &lt;br /&gt;
 repuls(1,2) = 0.26     (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,2) = 1.9     (&amp;lt;math&amp;gt;C_{\min}(1,1,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,1) = 0.95     (&amp;lt;math&amp;gt;C_{\min}(1,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,2,2) = 1.85     (&amp;lt;math&amp;gt;C_{\min}(1,2,2)&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,1) = 1.0     (&amp;lt;math&amp;gt;C_{\min}(2,2,1)&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Table 3 of Ryu and Cai (2010) gives &amp;lt;math&amp;gt;E_c (AuSi) = 4.155&amp;lt;/math&amp;gt;.  This value is related to delta(1,2) through&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;E_c (AuSi) = 0.5*[ E_c (Au) + E_c(Si) ] - delta(1,2) = 0.5 * (3.93 + 4.63) - 0.125 = 4.155&amp;lt;/math&amp;gt;.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6213</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6213"/>
		<updated>2015-08-31T06:22:17Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* MEAM Potential for Si */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;&#039;&#039;&#039;Seunghwa: Can you explain what does ibar mean?  For Au, ibar = 3, and for Si, ibar = 0.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.  The variable &amp;lt;math&amp;gt;d = 0.05&amp;lt;/math&amp;gt; is hard coded in &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039; (when repuls &amp;lt; 5.0).&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
The modification made in Ryu and Cai JPCM (2010) is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Si as 2.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The content is shown below.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 re(1,2) = 2.700&lt;br /&gt;
 delta(1,2) = 0.125&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819&lt;br /&gt;
 attrac(1,1) = -0.182&lt;br /&gt;
 repuls(1,1) = 4.0&lt;br /&gt;
 attrac(2,2) = -0.36&lt;br /&gt;
 repuls(2,2) = 16.0&lt;br /&gt;
 attrac(1,2) = 0.0&lt;br /&gt;
 repuls(1,2) = 0.26&lt;br /&gt;
 Cmin(1,1,1) = 0.8&lt;br /&gt;
 Cmin(2,2,2) = 1.85&lt;br /&gt;
 Cmin(1,1,2) = 1.9&lt;br /&gt;
 Cmin(1,2,1) = 0.95&lt;br /&gt;
 Cmin(1,2,2) = 1.85&lt;br /&gt;
 Cmin(2,2,1) = 1.0&lt;br /&gt;
 augt1 = 1&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;re&#039;&#039;&#039;(1,2), &#039;&#039;&#039;alpha&#039;&#039;&#039;(1,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,1,2),&#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,1), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(2,2,1) correspond to values given in Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
We will explain &#039;&#039;&#039;erose_form&#039;&#039;&#039;, &#039;&#039;&#039;rc&#039;&#039;&#039;, &#039;&#039;&#039;delta&#039;&#039;&#039;, &#039;&#039;&#039;attract&#039;&#039;&#039;, &#039;&#039;&#039;repuls&#039;&#039;&#039;, &#039;&#039;&#039;augt1&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Where are &amp;lt;math&amp;gt;C_{\rm max}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt; specified.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6212</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6212"/>
		<updated>2015-08-31T06:21:35Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Original MEAM Potential for Au */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;background:yellow&amp;quot;&amp;gt;&#039;&#039;&#039;Seunghwa: Can you explain what does ibar mean?  For Au, ibar = 3, and for Si, ibar = 0.&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.  The variable &amp;lt;math&amp;gt;d = 0.05&amp;lt;/math&amp;gt; is hard coded in &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039; (when repuls &amp;lt; 5.0).&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
The modification made in Ryu and Cai JPCM (2010) is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The content is shown below.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 re(1,2) = 2.700&lt;br /&gt;
 delta(1,2) = 0.125&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819&lt;br /&gt;
 attrac(1,1) = -0.182&lt;br /&gt;
 repuls(1,1) = 4.0&lt;br /&gt;
 attrac(2,2) = -0.36&lt;br /&gt;
 repuls(2,2) = 16.0&lt;br /&gt;
 attrac(1,2) = 0.0&lt;br /&gt;
 repuls(1,2) = 0.26&lt;br /&gt;
 Cmin(1,1,1) = 0.8&lt;br /&gt;
 Cmin(2,2,2) = 1.85&lt;br /&gt;
 Cmin(1,1,2) = 1.9&lt;br /&gt;
 Cmin(1,2,1) = 0.95&lt;br /&gt;
 Cmin(1,2,2) = 1.85&lt;br /&gt;
 Cmin(2,2,1) = 1.0&lt;br /&gt;
 augt1 = 1&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;re&#039;&#039;&#039;(1,2), &#039;&#039;&#039;alpha&#039;&#039;&#039;(1,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,1,2),&#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,1), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(2,2,1) correspond to values given in Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
We will explain &#039;&#039;&#039;erose_form&#039;&#039;&#039;, &#039;&#039;&#039;rc&#039;&#039;&#039;, &#039;&#039;&#039;delta&#039;&#039;&#039;, &#039;&#039;&#039;attract&#039;&#039;&#039;, &#039;&#039;&#039;repuls&#039;&#039;&#039;, &#039;&#039;&#039;augt1&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Where are &amp;lt;math&amp;gt;C_{\rm max}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt; specified.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6211</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6211"/>
		<updated>2015-08-31T06:20:05Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Potential for Pure Elements */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Seunghwa: Can you explain what does ibar mean?  For Au, ibar = 3, and for Si, ibar = 0.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.  The variable &amp;lt;math&amp;gt;d = 0.05&amp;lt;/math&amp;gt; is hard coded in &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039; (when repuls &amp;lt; 5.0).&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
The modification made in Ryu and Cai JPCM (2010) is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(2,2) = -0.36 (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(2,2) = 16.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(2,2,2) = 1.85  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The content is shown below.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 re(1,2) = 2.700&lt;br /&gt;
 delta(1,2) = 0.125&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819&lt;br /&gt;
 attrac(1,1) = -0.182&lt;br /&gt;
 repuls(1,1) = 4.0&lt;br /&gt;
 attrac(2,2) = -0.36&lt;br /&gt;
 repuls(2,2) = 16.0&lt;br /&gt;
 attrac(1,2) = 0.0&lt;br /&gt;
 repuls(1,2) = 0.26&lt;br /&gt;
 Cmin(1,1,1) = 0.8&lt;br /&gt;
 Cmin(2,2,2) = 1.85&lt;br /&gt;
 Cmin(1,1,2) = 1.9&lt;br /&gt;
 Cmin(1,2,1) = 0.95&lt;br /&gt;
 Cmin(1,2,2) = 1.85&lt;br /&gt;
 Cmin(2,2,1) = 1.0&lt;br /&gt;
 augt1 = 1&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;re&#039;&#039;&#039;(1,2), &#039;&#039;&#039;alpha&#039;&#039;&#039;(1,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,1,2),&#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,1), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(2,2,1) correspond to values given in Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
We will explain &#039;&#039;&#039;erose_form&#039;&#039;&#039;, &#039;&#039;&#039;rc&#039;&#039;&#039;, &#039;&#039;&#039;delta&#039;&#039;&#039;, &#039;&#039;&#039;attract&#039;&#039;&#039;, &#039;&#039;&#039;repuls&#039;&#039;&#039;, &#039;&#039;&#039;augt1&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Where are &amp;lt;math&amp;gt;C_{\rm max}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt; specified.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6210</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6210"/>
		<updated>2015-08-31T06:07:50Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* New 2nn MEAM Potential for Au */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the newer 2nn MEAM potential whose parameters are given by Lee, Shim and Baskes, Phys. Rev. B 68, 144112 (2003), and later modified by Ryu and Cai, J. Phys. Condens. Matter 22, 055401 (2010).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.  The new parameters correspond to values given in Table I of Lee, Shim and Baskes, PRB (2003).&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;          &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112 5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77   1.00    1.7         1.64       2.0&lt;br /&gt;
&lt;br /&gt;
Note that in Table I of Lee et al. (2003), &amp;lt;math&amp;gt;t^{(1)} = 2.90&amp;lt;/math&amp;gt;, while in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file, t1 = 1.7.  This is because of the &#039;&#039;&#039;augt1&#039;&#039;&#039; parameter.  In &#039;&#039;&#039;meam_setup_done.F&#039;&#039;&#039;, there is a line&lt;br /&gt;
&lt;br /&gt;
  t1_meam(:) = t1_meam(:) + augt1 * 3.d0/5.d0 * t3_meam(:)&lt;br /&gt;
&lt;br /&gt;
This means that if &#039;&#039;&#039;augt1&#039;&#039;&#039; = 1.0, then the &#039;&#039;true&#039;&#039; value of t1 is 1.7 + 0.6 * 2.0 = 2.9.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;augt1&#039;&#039;&#039; is specified in the &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file, as described below.&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file contains several lines that are relevant for the pure Au potential.  The variables in Eq.(A.1) of Ryu and Cai JPCM (2010) are given in the parenthesis.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 attrac(1,1) = -0.182  (&amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt;)&lt;br /&gt;
 repuls(1,1) = 4.0  (&amp;lt;math&amp;gt;\lambda&amp;lt;/math&amp;gt;)&lt;br /&gt;
 Cmin(1,1,1) = 0.8  (&amp;lt;math&amp;gt;C_{\rm min}&amp;lt;/math&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
Note that we label the atomic species of Au as 1.&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The content is shown below.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 re(1,2) = 2.700&lt;br /&gt;
 delta(1,2) = 0.125&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819&lt;br /&gt;
 attrac(1,1) = -0.182&lt;br /&gt;
 repuls(1,1) = 4.0&lt;br /&gt;
 attrac(2,2) = -0.36&lt;br /&gt;
 repuls(2,2) = 16.0&lt;br /&gt;
 attrac(1,2) = 0.0&lt;br /&gt;
 repuls(1,2) = 0.26&lt;br /&gt;
 Cmin(1,1,1) = 0.8&lt;br /&gt;
 Cmin(2,2,2) = 1.85&lt;br /&gt;
 Cmin(1,1,2) = 1.9&lt;br /&gt;
 Cmin(1,2,1) = 0.95&lt;br /&gt;
 Cmin(1,2,2) = 1.85&lt;br /&gt;
 Cmin(2,2,1) = 1.0&lt;br /&gt;
 augt1 = 1&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;re&#039;&#039;&#039;(1,2), &#039;&#039;&#039;alpha&#039;&#039;&#039;(1,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,1,2),&#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,1), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(2,2,1) correspond to values given in Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
We will explain &#039;&#039;&#039;erose_form&#039;&#039;&#039;, &#039;&#039;&#039;rc&#039;&#039;&#039;, &#039;&#039;&#039;delta&#039;&#039;&#039;, &#039;&#039;&#039;attract&#039;&#039;&#039;, &#039;&#039;&#039;repuls&#039;&#039;&#039;, &#039;&#039;&#039;augt1&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Where are &amp;lt;math&amp;gt;C_{\rm max}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt; specified.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6209</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6209"/>
		<updated>2015-08-31T05:45:16Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Potential for Pure Elements */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the &#039;AuBt&#039; potential whose parameters are given by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
We can see that from &#039;Au&#039; to &#039;AuBt&#039;, the following parameters are changed.&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;math&amp;gt;\alpha&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 &#039;Au&#039;   6.34090112  5.449  1.04  1.58956328 1.50776392  2.60609758&lt;br /&gt;
 &#039;AuBt&#039; 6.59815965 5.77    1.00 1.0   1.7   1.64 2.0   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The content is shown below.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 re(1,2) = 2.700&lt;br /&gt;
 delta(1,2) = 0.125&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819&lt;br /&gt;
 attrac(1,1) = -0.182&lt;br /&gt;
 repuls(1,1) = 4.0&lt;br /&gt;
 attrac(2,2) = -0.36&lt;br /&gt;
 repuls(2,2) = 16.0&lt;br /&gt;
 attrac(1,2) = 0.0&lt;br /&gt;
 repuls(1,2) = 0.26&lt;br /&gt;
 Cmin(1,1,1) = 0.8&lt;br /&gt;
 Cmin(2,2,2) = 1.85&lt;br /&gt;
 Cmin(1,1,2) = 1.9&lt;br /&gt;
 Cmin(1,2,1) = 0.95&lt;br /&gt;
 Cmin(1,2,2) = 1.85&lt;br /&gt;
 Cmin(2,2,1) = 1.0&lt;br /&gt;
 augt1 = 1&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;re&#039;&#039;&#039;(1,2), &#039;&#039;&#039;alpha&#039;&#039;&#039;(1,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,1,2),&#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,1), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(2,2,1) correspond to values given in Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
We will explain &#039;&#039;&#039;erose_form&#039;&#039;&#039;, &#039;&#039;&#039;rc&#039;&#039;&#039;, &#039;&#039;&#039;delta&#039;&#039;&#039;, &#039;&#039;&#039;attract&#039;&#039;&#039;, &#039;&#039;&#039;repuls&#039;&#039;&#039;, &#039;&#039;&#039;augt1&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Where are &amp;lt;math&amp;gt;C_{\rm max}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt; specified.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6208</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6208"/>
		<updated>2015-08-31T05:36:53Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* New 2nn MEAM Potential for Au */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the &#039;AuBt&#039; potential whose parameters are given by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965 5.77   2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The content is shown below.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 re(1,2) = 2.700&lt;br /&gt;
 delta(1,2) = 0.125&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819&lt;br /&gt;
 attrac(1,1) = -0.182&lt;br /&gt;
 repuls(1,1) = 4.0&lt;br /&gt;
 attrac(2,2) = -0.36&lt;br /&gt;
 repuls(2,2) = 16.0&lt;br /&gt;
 attrac(1,2) = 0.0&lt;br /&gt;
 repuls(1,2) = 0.26&lt;br /&gt;
 Cmin(1,1,1) = 0.8&lt;br /&gt;
 Cmin(2,2,2) = 1.85&lt;br /&gt;
 Cmin(1,1,2) = 1.9&lt;br /&gt;
 Cmin(1,2,1) = 0.95&lt;br /&gt;
 Cmin(1,2,2) = 1.85&lt;br /&gt;
 Cmin(2,2,1) = 1.0&lt;br /&gt;
 augt1 = 1&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;re&#039;&#039;&#039;(1,2), &#039;&#039;&#039;alpha&#039;&#039;&#039;(1,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,1,2),&#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,1), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(2,2,1) correspond to values given in Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
We will explain &#039;&#039;&#039;erose_form&#039;&#039;&#039;, &#039;&#039;&#039;rc&#039;&#039;&#039;, &#039;&#039;&#039;delta&#039;&#039;&#039;, &#039;&#039;&#039;attract&#039;&#039;&#039;, &#039;&#039;&#039;repuls&#039;&#039;&#039;, &#039;&#039;&#039;augt1&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Where are &amp;lt;math&amp;gt;C_{\rm max}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt; specified.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6207</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6207"/>
		<updated>2015-08-31T05:33:38Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* MEAM Potential for Au */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===Original MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
As an example, we first describe the original &#039;Au&#039; potential whose parameters are given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
===New 2nn MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We now explain use the &#039;Aubt&#039; potential whose parameters are given by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;AuBt&#039; is given below.  &lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;AuBt&#039; &#039;fcc&#039; 12.     79      196.967 6.59815965  5.77    2.20   6.0   2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.073 3.93 1.00 1.0    1.7        1.64         2.0       1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The content is shown below.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 re(1,2) = 2.700&lt;br /&gt;
 delta(1,2) = 0.125&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819&lt;br /&gt;
 attrac(1,1) = -0.182&lt;br /&gt;
 repuls(1,1) = 4.0&lt;br /&gt;
 attrac(2,2) = -0.36&lt;br /&gt;
 repuls(2,2) = 16.0&lt;br /&gt;
 attrac(1,2) = 0.0&lt;br /&gt;
 repuls(1,2) = 0.26&lt;br /&gt;
 Cmin(1,1,1) = 0.8&lt;br /&gt;
 Cmin(2,2,2) = 1.85&lt;br /&gt;
 Cmin(1,1,2) = 1.9&lt;br /&gt;
 Cmin(1,2,1) = 0.95&lt;br /&gt;
 Cmin(1,2,2) = 1.85&lt;br /&gt;
 Cmin(2,2,1) = 1.0&lt;br /&gt;
 augt1 = 1&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;re&#039;&#039;&#039;(1,2), &#039;&#039;&#039;alpha&#039;&#039;&#039;(1,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,1,2),&#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,1), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(2,2,1) correspond to values given in Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
We will explain &#039;&#039;&#039;erose_form&#039;&#039;&#039;, &#039;&#039;&#039;rc&#039;&#039;&#039;, &#039;&#039;&#039;delta&#039;&#039;&#039;, &#039;&#039;&#039;attract&#039;&#039;&#039;, &#039;&#039;&#039;repuls&#039;&#039;&#039;, &#039;&#039;&#039;augt1&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Where are &amp;lt;math&amp;gt;C_{\rm max}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt; specified.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6206</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6206"/>
		<updated>2015-08-31T05:21:10Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Cross Potential between Au and Si */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Au&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
The parameters for the cross potential are specified in &#039;&#039;&#039;AuSi2nn.meam&#039;&#039;&#039; file.  The content is shown below.&lt;br /&gt;
&lt;br /&gt;
 erose_form = 3&lt;br /&gt;
 rc = 4.5&lt;br /&gt;
 re(1,2) = 2.700&lt;br /&gt;
 delta(1,2) = 0.125&lt;br /&gt;
 lattce(1,2) = b1&lt;br /&gt;
 alpha(1,2) = 5.819&lt;br /&gt;
 attrac(1,1) = -0.182&lt;br /&gt;
 repuls(1,1) = 4.0&lt;br /&gt;
 attrac(2,2) = -0.36&lt;br /&gt;
 repuls(2,2) = 16.0&lt;br /&gt;
 attrac(1,2) = 0.0&lt;br /&gt;
 repuls(1,2) = 0.26&lt;br /&gt;
 Cmin(1,1,1) = 0.8&lt;br /&gt;
 Cmin(2,2,2) = 1.85&lt;br /&gt;
 Cmin(1,1,2) = 1.9&lt;br /&gt;
 Cmin(1,2,1) = 0.95&lt;br /&gt;
 Cmin(1,2,2) = 1.85&lt;br /&gt;
 Cmin(2,2,1) = 1.0&lt;br /&gt;
 augt1 = 1&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;re&#039;&#039;&#039;(1,2), &#039;&#039;&#039;alpha&#039;&#039;&#039;(1,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,1,2),&#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,1), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(1,2,2), &#039;&#039;&#039;Cmin&#039;&#039;&#039;(2,2,1) correspond to values given in Table 3 of Ryu and Cai, J. Phys. Condens. Matter, 22, 055401 (2010).  &lt;br /&gt;
&lt;br /&gt;
We will explain &#039;&#039;&#039;erose_form&#039;&#039;&#039;, &#039;&#039;&#039;rc&#039;&#039;&#039;, &#039;&#039;&#039;delta&#039;&#039;&#039;, &#039;&#039;&#039;attract&#039;&#039;&#039;, &#039;&#039;&#039;repuls&#039;&#039;&#039;, &#039;&#039;&#039;augt1&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Where are &amp;lt;math&amp;gt;C_{\rm max}&amp;lt;/math&amp;gt; and &amp;lt;math&amp;gt;\gamma&amp;lt;/math&amp;gt; specified.&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6205</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6205"/>
		<updated>2015-08-31T05:10:03Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Potential for Pure Elements */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Au&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Au}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Si4&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Si4&#039; &#039;dia&#039; 4.     14     28.086     4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;     &amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47          -1.8      1.48    0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;math&amp;gt;\rho_0^{\rm Si}&amp;lt;/math&amp;gt; = &#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ABC&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6204</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6204"/>
		<updated>2015-08-31T04:58:27Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* Potential for Pure Elements */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Au&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Siz&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Siz&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Siz&#039; &#039;dia&#039; 4.     14      28.086    4.87     4.4     5.5    5.5   5.5   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  5.431 4.63  1.  1.0    3.13        4.47       -1.80     1.600   0&lt;br /&gt;
&lt;br /&gt;
Note that  the nearest neighbor distance &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039;  &amp;lt;math&amp;gt;\times \sqrt{3}/4&amp;lt;/math&amp;gt; for the diamond cubic structure.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ABC&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6203</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6203"/>
		<updated>2015-08-31T04:49:19Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* MEAM Potential for Au */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Au&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.  Most of these parameters correspond to Table III of Baskes PRB (1992), as shown below.&lt;br /&gt;
&lt;br /&gt;
                                       &amp;lt;math&amp;gt;\alpha_i&amp;lt;/math&amp;gt;      &amp;lt;math&amp;gt;\beta_i^{(0)}&amp;lt;/math&amp;gt;    &amp;lt;math&amp;gt;\beta_i^{(1)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(2)}&amp;lt;/math&amp;gt;  &amp;lt;math&amp;gt;\beta_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;math&amp;gt;(R_i^0)&amp;lt;/math&amp;gt; &amp;lt;math&amp;gt;E_i^0&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;A_i&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(0)}&amp;lt;/math&amp;gt;   &amp;lt;math&amp;gt;t_i^{(1)}&amp;lt;/math&amp;gt;        &amp;lt;math&amp;gt;t_i^{(2)}&amp;lt;/math&amp;gt;         &amp;lt;math&amp;gt;t_i^{(3)}&amp;lt;/math&amp;gt;&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
Note that  &amp;lt;math&amp;gt; R_i^0 &amp;lt;/math&amp;gt; = &#039;&#039;&#039;alat&#039;&#039;&#039; / &amp;lt;math&amp;gt;\sqrt{2}&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;rozero&#039;&#039;&#039; will be important only for cross-potential.  &#039;&#039;&#039;ibar&#039;&#039;&#039; is a setting used in the equation of state (EOS), and will be explained later.&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
ABC&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ABC&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6202</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6202"/>
		<updated>2015-08-31T04:33:40Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: /* MEAM Potential for Au */&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Au&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
The main parameters in the MEAM potential is specified in the &#039;&#039;&#039;meamf&#039;&#039;&#039; file. (In MD++, this file is in the potentials/MEAMDATA folder.)  The lines correspond to &#039;Au&#039; is given below.&lt;br /&gt;
&lt;br /&gt;
 elt  lat   z    ielement   atwt      alpha    b0       b1     b2    b3   &lt;br /&gt;
 &#039;Au&#039; &#039;fcc&#039; 12.     79     196.967 6.34090112  5.449   2.20    6     2.20  &lt;br /&gt;
&lt;br /&gt;
  alat  esub  asub t0     t1          t2           t3     rozero  ibar&lt;br /&gt;
  4.07  3.93  1.04 1.0  1.58956328 1.50776392  2.60609758    1.      3&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
ABC&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ABC&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6201</id>
		<title>MEAM Potential for Au-Si</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=MEAM_Potential_for_Au-Si&amp;diff=6201"/>
		<updated>2015-08-31T04:25:00Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: 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; MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&amp;lt;/STRONG&amp;gt;&amp;lt;/P...&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;
MEAM Potential for Au-Si&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;Adriano Satana and Wei Cai&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 Aug, 2015, Last modified Sep, 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 specify the parameters for the Au-Si MEAM potential in MD++. It starts with the parameters in pure Au and pure Si potentials, then talks about the Au-Si cross potential.&lt;br /&gt;
&amp;lt;HR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Potential for Pure Elements==&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Au===&lt;br /&gt;
&lt;br /&gt;
We use the &#039;Au&#039; potential whose parameters are originally given in M. I. Baskes, Phys. Rev. B 46, 2727 (1992), and later modified by S. Ryu, et al. Model. Simul. Mater. Sci. Eng. 17, 075008 (2009).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===MEAM Potential for Si===&lt;br /&gt;
&lt;br /&gt;
ABC&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cross Potential between Au and Si==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ABC&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=Tutorial:Members_Only&amp;diff=6200</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=6200"/>
		<updated>2015-08-31T03:32:47Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: &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;
| [[MEAM Potential for Au-Si]]&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;
| [[Computational XRD]]&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>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=File:Fit_a0EB.m.txt&amp;diff=6149</id>
		<title>File:Fit a0EB.m.txt</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=File:Fit_a0EB.m.txt&amp;diff=6149"/>
		<updated>2015-08-25T09:16:35Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: Caiwei uploaded a new version of &amp;amp;quot;File:Fit a0EB.m.txt&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=VASP_Computing_Elastic_Constants_of_Au&amp;diff=6148</id>
		<title>VASP Computing Elastic Constants of Au</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=VASP_Computing_Elastic_Constants_of_Au&amp;diff=6148"/>
		<updated>2015-08-24T01:04:47Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: 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; VASP: Computing Elastic Constants of Au&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; &amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt; &amp;lt;/DIV&amp;gt;  ...&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;
VASP: Computing Elastic Constants of Au&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; &amp;lt;/STRONG&amp;gt;&amp;lt;/P&amp;gt;&lt;br /&gt;
&amp;lt;/DIV&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Input files===&lt;br /&gt;
&lt;br /&gt;
(Under construction!!!)&lt;br /&gt;
&lt;br /&gt;
Here we give an example of how to use VASP to compute the bulk modulus of LDA-Au.  We performed this calculation on &amp;lt;tt&amp;gt;MC-CC&amp;lt;/tt&amp;gt; in serial model in the &amp;lt;tt&amp;gt;~/Codes/VASP/runs/Au/LDA/perfect.21x21x21&amp;lt;/tt&amp;gt; directory.  This directory contains the following files.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;INCAR&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ENCUT  =  400&lt;br /&gt;
ISMEAR  = 1&lt;br /&gt;
SIGMA = 0.1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;KPOINTS&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
21x21x21&lt;br /&gt;
0        0 = automatic generation of k-points&lt;br /&gt;
Monkhorst&lt;br /&gt;
21 21 21&lt;br /&gt;
0 0 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;POSCAR&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
POSCAR for FCC Au (created manually)&lt;br /&gt;
   4.068 &lt;br /&gt;
   0    0.5  0.5&lt;br /&gt;
   0.5  0    0.5&lt;br /&gt;
   0.5  0.5  0&lt;br /&gt;
   1 &lt;br /&gt;
Cartesian  (real coordinates r)&lt;br /&gt;
   0    0    0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To do this calculation, you also need to put the LDA pseudopotential file as &amp;lt;tt&amp;gt;POTCAR&amp;lt;/tt&amp;gt; in this directory.&lt;br /&gt;
&lt;br /&gt;
===Run VASP===&lt;br /&gt;
&lt;br /&gt;
Now we are ready to run&lt;br /&gt;
&lt;br /&gt;
 vasp&lt;br /&gt;
&lt;br /&gt;
To compute the equilibrium lattice constant, cohesive energy and bulk modulus, we use the following script &amp;lt;tt&amp;gt;auto.B.serial&amp;lt;/tt&amp;gt; to run &amp;lt;tt&amp;gt;vasp&amp;lt;/tt&amp;gt; repeated with different lattice constants.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
rm WAVECAR &lt;br /&gt;
for a in 4.056 4.058 4.060 4.062 4.064 4.066 4.068&lt;br /&gt;
do&lt;br /&gt;
cat &amp;gt; POSCAR &amp;lt;&amp;lt; FIN&lt;br /&gt;
POSCAR for FCC Au (created manually)&lt;br /&gt;
   $a &lt;br /&gt;
   0    0.5  0.5&lt;br /&gt;
   0.5  0    0.5&lt;br /&gt;
   0.5  0.5  0&lt;br /&gt;
   1 &lt;br /&gt;
Cartesian  (real coordinates r)&lt;br /&gt;
   0    0    0&lt;br /&gt;
FIN&lt;br /&gt;
&lt;br /&gt;
echo &amp;quot;a=$a&amp;quot;&lt;br /&gt;
./vasp&lt;br /&gt;
&lt;br /&gt;
E=`tail -1 OSZICAR`&lt;br /&gt;
echo $a $E | sed -s &#039;s/F=//; s/E0=//; s/d E =//;&#039; &amp;gt;&amp;gt; Elatt.B.dat&lt;br /&gt;
&lt;br /&gt;
p=`grep pressure OUTCAR | cut -b 25-34`&lt;br /&gt;
echo $a $p &amp;gt;&amp;gt; platt.B.dat&lt;br /&gt;
&lt;br /&gt;
done&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Analyze data===&lt;br /&gt;
&lt;br /&gt;
After running it as &amp;lt;tt&amp;gt;./auto.B.serial&amp;lt;/tt&amp;gt;, it will create data files &amp;lt;tt&amp;gt;Elatt.B.dat&amp;lt;/tt&amp;gt; and &amp;lt;tt&amp;gt;platt.B.dat&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Launch &amp;lt;tt&amp;gt;octave&amp;lt;/tt&amp;gt; and run the following functions [[media:fit_a0EB.m.txt | fit_a0EB.m]] and [[media:fit_a0B.m.txt | fit_a0B.m]],&lt;br /&gt;
&lt;br /&gt;
 fit_a0EB(&#039;Elatt.B.dat&#039;);&lt;br /&gt;
 fit_a0B (&#039;platt.B.dat&#039;);&lt;br /&gt;
&lt;br /&gt;
The first line fits the energy data to a quadratic curve and computes the equilibrium lattice constant, cohesive energy and bulk modulus.  The second line fits the pressure data to a linear curve and computes the equilibrium lattice constant and bulk modulus.  In this example, the result is a0 = 4.06 angstrom, Ecoh = -4.39 eV, B = 190 GPa.&lt;br /&gt;
&lt;br /&gt;
===Parallel computation===&lt;br /&gt;
&lt;br /&gt;
To run &amp;lt;tt&amp;gt;vasp&amp;lt;/tt&amp;gt; in parallel, you need to submit [[media:vasp.pbs.txt | vasp.pbs]] as&lt;br /&gt;
&lt;br /&gt;
 qsub vasp.pbs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need the following two files to do this calculation in parallel on SU-AHPCRC: &lt;br /&gt;
[[media:auto.B.par.Au.txt | auto.B.par]] and&lt;br /&gt;
[[media:B.pbs.Au.txt | B.pbs]].&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
	<entry>
		<id>http://micro.stanford.edu/mediawiki/index.php?title=VASP_Manuals&amp;diff=6147</id>
		<title>VASP Manuals</title>
		<link rel="alternate" type="text/html" href="http://micro.stanford.edu/mediawiki/index.php?title=VASP_Manuals&amp;diff=6147"/>
		<updated>2015-08-24T01:02:33Z</updated>

		<summary type="html">&lt;p&gt;Caiwei: added new page for VASP elastic constants of Au&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;H3&amp;gt;Manuals&amp;lt;/H3&amp;gt;&lt;br /&gt;
&amp;lt;UL&amp;gt;&lt;br /&gt;
&amp;lt;LI&amp;gt;[[How to compile VASP]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[VASP Computing Bulk Modulus of Au]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[VASP Computing Elastic Constants of Au]]&lt;br /&gt;
&amp;lt;LI&amp;gt;[[VASP Computing Ideal Shear Strength of Au]] &lt;br /&gt;
&amp;lt;/UL&amp;gt;&lt;/div&gt;</summary>
		<author><name>Caiwei</name></author>
	</entry>
</feed>