<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns:mv="http://macVmlSchemaUri" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="Title" content="">
<meta name="Keywords" content="">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<!--[if !mso]><style>v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style><![endif]--><style><!--
/* Font Definitions */
@font-face
        {font-family:"Courier New";
        panose-1:2 7 3 9 2 2 5 2 4 4;}
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:PMingLiU;
        panose-1:2 2 5 0 0 0 0 0 0 0;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p
        {mso-style-priority:99;
        mso-margin-top-alt:auto;
        margin-right:0in;
        mso-margin-bottom-alt:auto;
        margin-left:0in;
        font-size:12.0pt;
        font-family:"Times New Roman";}
pre
        {mso-style-priority:99;
        mso-style-link:"HTML Preformatted Char";
        margin:0in;
        margin-bottom:.0001pt;
        font-size:10.0pt;
        font-family:"Courier New";}
span.HTMLPreformattedChar
        {mso-style-name:"HTML Preformatted Char";
        mso-style-priority:99;
        mso-style-link:"HTML Preformatted";
        font-family:Courier;}
span.EmailStyle20
        {mso-style-type:personal-reply;
        font-family:Calibri;
        color:windowtext;}
span.msoIns
        {mso-style-type:export-only;
        mso-style-name:"";
        text-decoration:underline;
        color:teal;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
/* List Definitions */
@list l0
        {mso-list-id:878012673;
        mso-list-template-ids:915683688;}
ol
        {margin-bottom:0in;}
ul
        {margin-bottom:0in;}
--></style>
</head>
<body bgcolor="white" lang="EN-US" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri">Generally, velocity verlet is performed the following way (from wikipedia https://en.wikipedia.org/wiki/Verlet_integration)<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri"><o:p>&nbsp;</o:p></span></p>
<ol style="margin-top:0in" start="1" type="1">
<li class="MsoNormal" style="color:black;mso-list:l0 level1 lfo1"><span style="font-size:11.0pt;font-family:Calibri;color:windowtext">Calculate</span><span style="font-size:11.0pt;font-family:Calibri"> v(t&#43;dt/2) = v(t) &#43; dt/2 a(t)<o:p></o:p></span></li><li class="MsoNormal" style="color:black;mso-list:l0 level1 lfo1"><span style="font-size:11.0pt;font-family:Calibri;color:windowtext">Calculate x(t&#43;dt) = x(t) &#43; dt*v(t&#43;dt/2)</span><span style="font-size:11.0pt;font-family:Calibri"><o:p></o:p></span></li><li class="MsoNormal" style="color:black;mso-list:l0 level1 lfo1"><span style="font-size:11.0pt;font-family:Calibri;color:windowtext">Calculate a(t&#43;dt) from x(t&#43;dt)</span><span style="font-size:11.0pt;font-family:Calibri"><o:p></o:p></span></li><li class="MsoNormal" style="color:black;mso-list:l0 level1 lfo1"><span style="font-size:11.0pt;font-family:Calibri;color:windowtext">Calculate v(t&#43;dt) = v(t&#43;dt/2) &#43; dt/2 a(t&#43;dt)</span><span style="font-size:11.0pt;font-family:Calibri"><o:p></o:p></span></li></ol>
<div>
<div>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri;color:black"><o:p>&nbsp;</o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri;color:black">After the first step, it’s only one force call per step because you can reuse the force in step 4 in the next step 1.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri;color:black"><o:p>&nbsp;</o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri;color:black">The logic is not always clear in the gromacs code, since the bookkeeping needs to be rather complicated to do both leapfrog and velocity.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri;color:black"><o:p>&nbsp;</o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri;color:black">Best,<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri;color:black">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri;color:black">Michael Shirts<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri;color:black">Associate Professor<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri;color:black"><a href="mailto:michael.shirts@colorado.edu">michael.shirts@colorado.edu</a><o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri;color:black"><a href="http://www.colorado.edu/lab/shirtsgroup/"><span style="text-decoration:none">http://www.colorado.edu/lab/shirtsgroup/</span></a><o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri;color:black">Phone: (303) 735-7860<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri;color:black">Office: JSCBB C123<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri;color:black">Department of Chemical and Biological Engineering<o:p></o:p></span></p>
</div>
</div>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri;color:black">University of Colorado Boulder</span><span style="font-size:11.0pt;font-family:Calibri"><o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:Calibri"><o:p>&nbsp;</o:p></span></p>
<div style="border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in">
<p class="MsoNormal"><b><span style="font-family:Calibri;color:black">From: </span>
</b><span style="font-family:Calibri;color:black">&lt;gromacs.org_gmx-developers-bounces@maillist.sys.kth.se&gt; on behalf of Elena della Valle &lt;elena.dv46@yahoo.it&gt;<br>
<b>Reply-To: </b>&quot;gmx-developers@gromacs.org&quot; &lt;gmx-developers@gromacs.org&gt;<br>
<b>Date: </b>Wednesday, March 1, 2017 at 12:19 PM<br>
<b>To: </b>&quot;gromacs.org_gmx-developers@maillist.sys.kth.se&quot; &lt;gromacs.org_gmx-developers@maillist.sys.kth.se&gt;<br>
<b>Subject: </b>Re: [gmx-developers] Verlet Algorithm<o:p></o:p></span></p>
</div>
<div>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
</div>
<p class="MsoNormal"><br>
<br>
<o:p></o:p></p>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<p>Hi, sorry if I bother you again with the velocity verlet algorithm, but I have another question, in the Gromacs Manual for the Velocity verlet algorithm for the position is written that&nbsp; r (t &#43; deltaT) is equal to:<img border="0" width="297" height="51" id="_x0000_i1025" src="cid:image001.png@01D292CF.4A8C25F0"><o:p></o:p></p>
<p>But if I look in the gromacs code, in the update.cpp file I see that the position for the verlet algorithm the update of the positions is due as:<o:p></o:p></p>
<p><o:p>&nbsp;</o:p></p>
<p class="MsoNormal" style="margin-bottom:12.0pt"><img border="0" width="413" height="16" id="_x0000_i1026" src="cid:image002.png@01D292CF.4A8C25F0"><br>
and I don't see the therm of the Force multiplied for deltaT^2/2*m, is because in the code the therm v[n] is interpreted as v(t &#43; delta)?<br>
thanks in advance<br>
Best Regards <br>
Elena della Valle<br>
<br>
<br>
<o:p></o:p></p>
<div>
<p class="MsoNormal">Il 06/10/2016 12:03, Berk Hess ha scritto:<o:p></o:p></p>
</div>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<div>
<p class="MsoNormal">do_update_vv_vel() is called twice during each step at different points. Thus the updates for F(t) and F(t&#43;dt) are done separately.<br>
<br>
Berk<br>
<br>
On 2016-10-06 11:53, Elena della Valle wrote:<o:p></o:p></p>
</div>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<p>The question is that on the gromacs manual I read that the verlet algorithm for the velocity corresponds to
<img border="0" width="268" height="36" id="_x0000_i1027" src="cid:image003.png@01D292CF.4A8C25F0">, now in the gromacs code in the verlet part I don't find the corresponds for the term [1/2*(∆t/m)* F(t &#43; ∆t)], is not implemented?<o:p></o:p></p>
<p>Sorry if I'm not so clear <o:p></o:p></p>
<p>Thanks <o:p></o:p></p>
<p>Elena della Valle<o:p></o:p></p>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
<div>
<p class="MsoNormal">Il 06/10/2016 11:39, Berk Hess ha scritto:<o:p></o:p></p>
</div>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<p class="MsoNormal">I don't understand our question. <br>
accel[ga] is a fixed acceleration per atom for non-equilibrium dynamics. This will be 0, unless you are doing non-equilibrium dynamics. You can ignore or remove this term, since you will not need it.
<br>
<br>
Cheers, <br>
<br>
Berk <br>
<br>
On 2016-10-06 11:25, Elena della Valle wrote: <br>
<br>
<o:p></o:p></p>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<p class="MsoNormal"><br>
Okey but in the update.c file line 300, in the following equation : v[n][d]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = mv1*(mv1*v[n][d] &#43; 0.5*(w_dt*mv2*f[n][d]))&#43;0.5*accel[ga][d]*dt;
<br>
&nbsp;with the term &quot;0.5*accel[ga][d]*dt&quot; it corresponds to the term &quot;[1/2*(∆t/m)* F(t &#43; ∆t)] &quot; in the verlet algorithm ?
<span style="font-family:PMingLiU"><br>
</span>Thanks in advance for helping me <span style="font-family:PMingLiU"><br>
</span>Best Regards <span style="font-family:PMingLiU"><br>
</span>Elena della Valle <span style="font-family:PMingLiU"><br>
<br>
</span>Il 06/10/2016 09:30, Berk Hess ha scritto: <br>
<br>
<o:p></o:p></p>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<p class="MsoNormal">Hi, <br>
<br>
I guess you mean ga = cACC[n]. <br>
cACC[n] contains the acceleration group index for atom n. This is for non-equilibrium dynamics where groups of atom are accelerated.
<br>
(apologies for the cryptic notation without documentation) <br>
<br>
Cheers, <br>
<br>
Berk <br>
<br>
On 2016-10-06 07:44, Elena Della valle wrote: <br>
<br>
<o:p></o:p></p>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<p class="MsoNormal">Hi, I have just a last question what gromacs means exactly with the term: cACC[ga]?
<br>
Thanks in advance <br>
Best Regards <br>
Elena della Valle <br>
<br>
<br>
<br>
<br>
<o:p></o:p></p>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<p class="MsoNormal">Il giorno 04 ott 2016, alle ore 17:58, Berk Hess <a href="mailto:hess@kth.se">
&lt;hess@kth.se&gt;</a> ha scritto: <br>
<br>
<br>
<o:p></o:p></p>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<p class="MsoNormal">On 10/04/2016 05:36 PM, David van der Spoel wrote: <br>
<br>
<o:p></o:p></p>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<p class="MsoNormal">On 04/10/16 17:00, Elena Della valle wrote: <br>
I used the gromacs 4.6.5 <br>
Best regards <br>
Elena della Valle <o:p></o:p></p>
</blockquote>
<p class="MsoNormal">Crudely put we do not support that version anymore, so if you would like to have this considered for inclusion in gromacs you would have to implement it in the master branch and upload it to gerrit. Whether it is correct you should test
 your self using some known cases and carefully constructed inputs. <o:p></o:p></p>
</blockquote>
<p class="MsoNormal">In addition, even when you are not interested in contributing the code, all developer work with the most recent versions, so it's easier for us to help you with the master version, especially for code that has changed a lot over the past
 years like the Velocity Verlet integrator. (And I think anyone should prefer the latest version for development, so one doesn't end up with functionality that only works in 5 year old code.)
<br>
<br>
Cheers, <br>
<br>
Berk <br>
<br>
<o:p></o:p></p>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<p class="MsoNormal">Maybe you can also answer the question when a magnetic effect would be important?
<br>
<br>
<o:p></o:p></p>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<p class="MsoNormal"><br>
<br>
<o:p></o:p></p>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<p class="MsoNormal" style="margin-bottom:12.0pt">Il giorno 04 ott 2016, alle ore 16:49, David van der Spoel
<a href="mailto:spoel@xray.bmc.uu.se">&lt;spoel@xray.bmc.uu.se&gt;</a> ha scritto: <br>
<br>
On 04/10/16 15:15, Elena della Valle wrote: <br>
<br>
Hi to all, <br>
<br>
I'm Elena della Valle, a Ph.D. student coming from la Sapienza <br>
University of Rome. <br>
<br>
I'm writing because I have some questions about some modifications that <br>
I have done to the update of velocities and positions in the verlet <br>
algorithm. My aim is to implement the magnetic field in gromacs by <br>
introducing the therm of the larmor frequency to the velocities and <br>
positions. By literature I read that this has been done by the update of <br>
the verlet velocities and positions with the frequency larmor therm. <br>
These are&nbsp; the equations in order to be more clear on what i wanted to do: <br>
<br>
I did this by modifying in the update.c file in gromacs the <br>
update_do_vv_vel and update_do_vv_pos ad follows: <br>
<br>
if ((ptype[n] != eptVSite) &amp;&amp; (ptype[n] != eptShell) &amp;&amp; !nFreeze[gf][d]) <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; v[n][0] = mv1*(mv1*v[n][0] &#43; <br>
0.5*(w_dt*mv2*f[n][0]))&#43;0.5*accel[ga][0]*dt &#43; <br>
w_dt*charge[n]*campoB*v[n][1]*mv1*mv1 &#43; <br>
0.25*dt*invmass[n]*charge[n]*campoB*((w_dt*mv2*mv1*f[n][1]) &#43; <br>
accel[ga][1]*dt -2*w_dt*charge[n]*campoB*mv1*mv1*v[n][0]); <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; v[n][1] = mv1*(mv1*v[n][1] &#43; <br>
0.5*(w_dt*mv2*f[n][1]))&#43;0.5*accel[ga][1]*dt &#43; <br>
w_dt*charge[n]*campoB*v[n][0]*mv1*mv1 - <br>
0.25*dt*invmass[n]*charge[n]*campoB*((w_dt*mv2*mv1*f[n][0]) &#43; <br>
accel[ga][0]*dt &#43;2*w_dt*charge[n]*campoB*mv1*mv1*v[n][1]); <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; v[n][2] = mv1*(mv1*v[n][2] &#43; <br>
0.5*(w_dt*mv2*f[n][2]))&#43;0.5*accel[ga][2]*dt; <br>
<br>
<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //printf(&quot;frame %lf \n&quot;, mv1); <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // printf(&quot;frame %d: %lf\t%lf%lf\n&quot;, n, v[n][0], v[n][1], <br>
v[n][2]); <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } <br>
<br>
in the do_update_vv_pos: <br>
<br>
if ((ptype[n] != eptVSite) &amp;&amp; (ptype[n] != eptShell) &amp;&amp; !nFreeze[gf][d]) <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xprime[n][0]&nbsp;&nbsp; = mr1*(mr1*x[n][0]&#43;mr2*dt*v[n][0]) &#43; <br>
mr1*0.5*dt*(w_dt*mr2*f[n][0] &#43; w_dt*charge[n]*campoB*v[n][1]*mr1); <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xprime[n][1]&nbsp;&nbsp; = mr1*(mr1*x[n][1]&#43;mr2*dt*v[n][1]) &#43; <br>
mr1*0.5*dt*(w_dt*mr2*f[n][1] - w_dt*charge[n]*campoB*v[n][0]*mr1); <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xprime[n][2]&nbsp;&nbsp; = mr1*(mr1*x[n][2]&#43;mr2*dt*v[n][2]) &#43; <br>
mr1*0.5*dt*(w_dt*mr2*f[n][2]); <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } <br>
<br>
<br>
After that in the grompp file I modified the integrator in md-vv and I <br>
run the simulation and it seems to use the position and velocities <br>
modifications. <br>
<br>
I want know if you think that this way is correct, if I implemented in <br>
the right way <br>
<br>
And Also I would like to know if in the grompp file I have to modify <br>
other parameters (I use a beredensed coupling) <br>
<br>
Thanks in advance <br>
Sorry for bothering you <br>
Best Regards <br>
Elena della Valle <br>
<br>
--&nbsp;<br>
Elena della Valle <br>
Ph.D. Student in Electronic Engineering <br>
<br>
Department of Information Engineering, Electronics and Telecommunications <br>
Sapienza, University of Rome <br>
via Eudossiana, 18 00184 Rome <br>
<br>
<br>
<o:p></o:p></p>
</blockquote>
<p class="MsoNormal">Just a quick question: which version did you use? All development should be in the master version and this looks like uses something older.
<br>
<br>
<br>
<br>
--&nbsp;<br>
David van der Spoel, Ph.D., Professor of Biology <br>
Dept. of Cell &amp; Molec. Biol., Uppsala University. <br>
Box 596, 75124 Uppsala, Sweden. Phone: &#43;46184714205. <br>
<a href="mailto:spoel@xray.bmc.uu.se">spoel@xray.bmc.uu.se</a>&nbsp;&nbsp;&nbsp; <a href="http://folding.bmc.uu.se">
http://folding.bmc.uu.se</a> <br>
--&nbsp;<br>
Gromacs Developers mailing list <br>
<br>
* Please search the archive at <a href="http://www.gromacs.org/Support/Mailing_Lists/GMX-developers_List">
http://www.gromacs.org/Support/Mailing_Lists/GMX-developers_List</a> before posting!
<br>
<br>
* Can't post? Read <a href="http://www.gromacs.org/Support/Mailing_Lists">http://www.gromacs.org/Support/Mailing_Lists</a>
<br>
<br>
* For (un)subscribe requests visit <br>
<a href="https://maillist.sys.kth.se/mailman/listinfo/gromacs.org_gmx-developers">https://maillist.sys.kth.se/mailman/listinfo/gromacs.org_gmx-developers</a> or send a mail to
<a href="mailto:gmx-developers-request@gromacs.org">gmx-developers-request@gromacs.org</a>.
<o:p></o:p></p>
</blockquote>
</blockquote>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
</blockquote>
<p class="MsoNormal">--&nbsp;<br>
Gromacs Developers mailing list <br>
<br>
* Please search the archive at <a href="http://www.gromacs.org/Support/Mailing_Lists/GMX-developers_List">
http://www.gromacs.org/Support/Mailing_Lists/GMX-developers_List</a> before posting!
<br>
<br>
* Can't post? Read <a href="http://www.gromacs.org/Support/Mailing_Lists">http://www.gromacs.org/Support/Mailing_Lists</a>
<br>
<br>
* For (un)subscribe requests visit <br>
<a href="https://maillist.sys.kth.se/mailman/listinfo/gromacs.org_gmx-developers">https://maillist.sys.kth.se/mailman/listinfo/gromacs.org_gmx-developers</a> or send a mail to
<a href="mailto:gmx-developers-request@gromacs.org">gmx-developers-request@gromacs.org</a>.
<o:p></o:p></p>
</blockquote>
</blockquote>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
</blockquote>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
</blockquote>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
</blockquote>
<p class="MsoNormal"><br>
<br>
<o:p></o:p></p>
<pre>-- <o:p></o:p></pre>
<pre>Elena della Valle<o:p></o:p></pre>
<pre>Ph.D. Student in Electronic Engineering<o:p></o:p></pre>
<pre><o:p>&nbsp;</o:p></pre>
<pre>Department of Information Engineering, Electronics and Telecommunications<o:p></o:p></pre>
<pre>Sapienza, University of Rome<o:p></o:p></pre>
<pre>via Eudossiana, 18 00184 Rome<o:p></o:p></pre>
<p class="MsoNormal"><br>
<br>
<o:p></o:p></p>
</blockquote>
<p class="MsoNormal"><br>
<br>
<br>
<o:p></o:p></p>
</blockquote>
<p class="MsoNormal"><br>
<br>
<o:p></o:p></p>
<pre>-- <o:p></o:p></pre>
<pre>Elena della Valle<o:p></o:p></pre>
<pre>Ph.D. Student in Electronic Engineering<o:p></o:p></pre>
<pre><o:p>&nbsp;</o:p></pre>
<pre>Department of Information Engineering, Electronics and Telecommunications<o:p></o:p></pre>
<pre>Sapienza, University of Rome<o:p></o:p></pre>
<pre>via Eudossiana, 18 00184 Rome<o:p></o:p></pre>
</blockquote>
<p class="MsoNormal"><br>
<br>
<o:p></o:p></p>
<pre>-- <o:p></o:p></pre>
<pre>Elena della Valle<o:p></o:p></pre>
<pre>Ph.D. Student in Electronic Engineering<o:p></o:p></pre>
<pre><o:p>&nbsp;</o:p></pre>
<pre>Department of Information Engineering, Electronics and Telecommunications<o:p></o:p></pre>
<pre>Sapienza, University of Rome<o:p></o:p></pre>
<pre>via Eudossiana, 18 00184 Rome<o:p></o:p></pre>
</div>
</body>
</html>