<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    On 31/01/2012 12:15 AM, mehmet k&#305;ytak wrote:
    <blockquote cite="mid:SNT142-W256677423CC999DF3A43E5EF8D0@phx.gbl"
      type="cite">
      <style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
      <div dir="ltr">
        <br>
        hi! Mark<br>
        warning this..<br>
        WARNING 1 [file ../MDP/EM/em_steep_0.mdp]:<br>
        &nbsp; You are using full electrostatics treatment PME for a system
        without<br>
        &nbsp; charges.<br>
        &nbsp; This costs a lot of performance for just processing zeros,
        consider using<br>
        &nbsp; Cut-off instead.<br>
      </div>
    </blockquote>
    <br>
    So for a quick EM, you don't care about performance, so using PME
    with no charges can be acceptable. However, changing your EM .mdp to
    cut-off avoids the warning entirely, and there is no change in the
    result of the computation.<br>
    <br>
    <blockquote cite="mid:SNT142-W256677423CC999DF3A43E5EF8D0@phx.gbl"
      type="cite">
      <div dir="ltr"><br>
        <br>
        Largest charge group radii for Van der Waals: 0.164, 0.113 nm<br>
        <br>
        NOTE 2 [file ../MDP/EM/em_steep_0.mdp]:<br>
        &nbsp; The sum of the two largest charge group radii (0.276360) is
        larger than<br>
        &nbsp; rlist (1.000000) - rvdw (0.900000)<br>
        <br>
        &#305; think&nbsp;&nbsp; no important warning ..isn't it ?.. <br>
        thanks..........<br>
      </div>
    </blockquote>
    <br>
    Having two or more large charge groups can mean your model of VDW
    interactions is inaccurate, because you can be failing to compute
    interactions that are closer than rvdw. You should use smaller
    charge groups (which is probably the right approach for your force
    field once you are no longer doing EM and/or are using charges).<br>
    <br>
    If there's no third warning, then you should definitely not use
    -maxwarn 3, because sometime later when you adapt this script
    inappropriately and create a new warning while perhaps removing an
    existing one, then you are silently avoiding making a decision about
    whether the new warning matters. This is why fixing the cause of
    warnings and not the symptoms is wise.<br>
    <br>
    Mark<br>
    <br>
    <blockquote cite="mid:SNT142-W256677423CC999DF3A43E5EF8D0@phx.gbl"
      type="cite">
      <div dir="ltr"><br>
        <br>
        <div>
          <hr id="stopSpelling"><br>
          <br>
          <br>
          <br>
          <br>
          <br>
          <br>
          <br>
          <br>
          <br>
          Date: Mon, 30 Jan 2012 22:25:48 +1100<br>
          <br>
          From: <a class="moz-txt-link-abbreviated" href="mailto:Mark.Abraham@anu.edu.au">Mark.Abraham@anu.edu.au</a><br>
          To: <a class="moz-txt-link-abbreviated" href="mailto:gmx-users@gromacs.org">gmx-users@gromacs.org</a><br>
          Subject: Re: [gmx-users] simulation killed<br>
          <br>
          <meta http-equiv="Content-Type" content="text/html;
            charset=ISO-8859-1">
          <meta name="Generator" content="Microsoft SafeHTML">
          On 30/01/2012 9:56 PM, murat &ouml;z&ccedil;elik wrote:
          <blockquote
            cite="mid:SNT142-W446B0FE7878501E9150BC9EF8D0@phx.gbl">
            <style>
.ExternalClass .ecxhmmessage P
{padding:0px;}
.ExternalClass body.ecxhmmessage
{font-size:10pt;font-family:Tahoma;}

</style>
            <div dir="ltr"> hi! lina my script this.... please tell me
              where is wrong.......thanks....<br>
            </div>
          </blockquote>
          <br>
          Probably your use of -maxwarn is erroneous, unless you can
          write down why it is valid.<br>
          <br>
          Mark<br>
          <br>
          <blockquote
            cite="mid:SNT142-W446B0FE7878501E9150BC9EF8D0@phx.gbl">
            <div dir="ltr"><br>
              <br>
              #!/bin/bash<br>
              <br>
              # Set some environment variables <br>
              FREE_ENERGY=/home/mkiytak/Free_Energy1<br>
              echo "Free energy home directory set to $FREE_ENERGY"<br>
              <br>
              MDP=$FREE_ENERGY/MDP<br>
              echo ".mdp files are stored in $MDP"<br>
              <br>
              LAMBDA=0<br>
              <br>
              # A new directory will be created for each value of lambda
              and<br>
              # at each step in the workflow for maximum organization.<br>
              <br>
              mkdir Lambda_$LAMBDA<br>
              cd Lambda_$LAMBDA<br>
              <br>
              #################################<br>
              # ENERGY MINIMIZATION 1: STEEP&nbsp; #<br>
              #################################<br>
              echo "Starting minimization for lambda = $LAMBDA..." <br>
              <br>
              mkdir EM_1 <br>
              cd EM_1<br>
              <br>
              # Iterative calls to grompp and mdrun to run the
              simulations<br>
              <br>
              grompp -f $MDP/EM/em_steep_$LAMBDA.mdp -c
              $FREE_ENERGY/HIS1/solv.gro -p $FREE_ENERGY/HIS1/topol.top
              -o min$LAMBDA.tpr -maxwarn 3<br>
              <br>
              mdrun -nt 8 -deffnm min$LAMBDA<br>
              <br>
              <br>
              ############################# ####<br>
              # ENERGY MINIMIZATION 2: L-BFGS #<br>
              #################################<br>
              <br>
              cd ../<br>
              mkdir EM_2<br>
              cd EM_2<br>
              <br>
              grompp -f $MDP/EM/em_l-bfgs_$LAMBDA.mdp -c
              ../EM_1/min$LAMBDA.gro -p $FREE_ENERGY/HIS1/topol.top -o
              min$LAMBDA.tpr -maxwarn 3<br>
              <br>
              # Run L-BFGS in serial (cannot be run in parallel)<br>
              <br>
              mdrun -nt 1 -deffnm min$LAMBDA<br>
              <br>
              echo "Minimization complete."<br>
              <br>
              <br>
              <br>
              #####################<br>
              # NVT EQUILIBRATION #<br>
              #####################<br>
              echo "Starting constant volume equilibration..."<br>
              <br>
              cd ../<br>
              mkdir NVT<br>
              cd NVT<br>
              <br>
              grompp -f $MDP/NVT/nvt_$LAMBDA.mdp -c
              ../EM_2/min$LAMBDA.gro -p $FREE_ENERGY/HIS1/topol.top -o
              nvt$LAMBDA.tpr -maxwarn 3<br>
              <br>
              mdrun -nt 8 -deffnm nvt$LAMBDA<br>
              <br>
              echo "Constant volume equilibration complete."<br>
              <br>
              <br>
              <br>
              #####################<br>
              # NPT EQUILIBRATION #<br>
              #####################<br>
              echo "Starting constant pressure equilibration..."<br>
              <br>
              cd ../<br>
              mkdir NPT<br>
              cd NPT<br>
              <br>
              grompp -f $MDP/NPT/npt_$ LAMBDA.mdp -c
              ../NVT/nvt$LAMBDA.gro -p $FREE_ENERGY/HIS1/topol.top -t
              ../NVT/nvt$LAMBDA.cpt -o npt$LAMBDA.tpr -maxwarn 3<br>
              <br>
              mdrun -nt 8 -deffnm npt$LAMBDA<br>
              <br>
              echo "Constant pressure equilibration complete."<br>
              <br>
              <br>
              #################<br>
              # PRODUCTION MD #<br>
              #################<br>
              echo "Starting production MD simulation..."<br>
              <br>
              cd ../<br>
              mkdir Production_MD<br>
              cd Production_MD<br>
              <br>
              grompp -f $MDP/Production_MD/md_$LAMBDA.mdp -c
              ../NPT/npt$LAMBDA.gro -p $FREE_ENERGY/HIS1/topol.top -t
              ../NPT/npt$LAMBDA.cpt -o md$LAMBDA.tpr -maxwarn 3<br>
              <br>
              mdrun -nt 8 -deffnm md$LAMBDA<br>
              <br>
              echo "Production MD complete."<br>
              <br>
              # End<br>
              echo "Ending. Job completed for lambda = $LAMBDA"<br>
              <br>
              <div>&gt; Date: Mon, 30 Jan 2012 13:54:18 +0800<br>
                &gt; Subject: Re: [gmx-users] simulation killed<br>
                &gt; From: <a moz-do-not-send="true"
                  class="ecxmoz-txt-link-abbreviated"
                  href="mailto:lina.lastname@gmail.com">lina.lastname@gmail.com</a><br>
                &gt; To: <a moz-do-not-send="true"
                  class="ecxmoz-txt-link-abbreviated"
                  href="mailto:gmx-users@gromacs.org">gmx-users@gromacs.org</a><br>
                &gt; <br>
                &gt; On Mon, Jan 30, 2012 at 1:18 AM, murat &ouml;z&ccedil;elik <a
                  moz-do-not-send="true"
                  class="ecxmoz-txt-link-rfc2396E"
                  href="mailto:mehmet63900@hotmail.com">&lt;mehmet63900@hotm
                  ail.com&gt;</a> wrote:<br>
                &gt; &gt; hi again.... capacity of my harddisk 600
                GB.... &#305; try again ..the program<br>
                &gt; &gt; gave me below message...<br>
                &gt; &gt;<br>
                &gt; &gt; Reading file md0.tpr, VERSION 4.5.4 (single
                precision)<br>
                &gt; &gt; Starting 8 threads<br>
                &gt; &gt;<br>
                &gt; &gt; NOTE: The load imbalance in PME FFT and solve
                is 1211%.<br>
                &gt; &gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; For optimal PME load balancing<br>
                &gt; &gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; PME grid_x (1152) and grid_y (1152)
                should be divisible by<br>
                &gt; &gt; #PME_nodes_x (8)<br>
                &gt; &gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; and PME grid_y (1152) and grid_z (1152)
                should be divisible by<br>
                &gt; &gt; #PME_nodes_y (1)<br>
                &gt; &gt;<br>
                &gt; &gt;<br>
                &gt; &gt; Making 1D domain decomposition 8 x 1 x 1<br>
                &gt; &gt; starting mdrun 'Protein in water'<br>
                &gt; <br>
                &gt; &gt; 2500000 steps,&nbsp;&nbsp; 5000.0 ps.<br>
                &gt; &gt; ./job_0.sh: line 95: 15777 Killed&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mdrun -nt 8 -deffnm<br>
                &gt; <br>
                &gt; What's inside your job_0.sh?<br>
                &gt; <br>
                &gt; something wrong your script.<br>
                &gt; <br>
                &gt; &gt; md$LAMBDA<br>
                &gt; &gt;<br>
                &gt; &gt; Production MD complete.<br>
                &gt; &gt; Ending. Job completed for lambda = 0<br>
                &gt; &gt; mkiytak@babil:~/JOB1$<br>
                &gt; &gt;<br>
                &gt; &gt;<br>
                &gt; &gt; How can I solve this problem....thanks for
                your help.....<br>
                &gt; &gt;<br>
                &gt; &gt;<br>
                &gt; &gt;<br>
                &gt; &gt;<br>
                &gt; &gt;<br>
                &gt; &gt;<br>
                &gt; &gt;<br>
                &gt; &gt;&gt; Date: Sun, 29 Jan 2012 10:43:53 -0600<br>
                &gt; &gt;&gt; From: <a moz-do-not-send="true"
                  class="ecxmoz-txt-link-abbreviated"
                  href="mailto:pcl@uab.edu">pcl@uab.edu</a><br>
                &gt; &gt;&gt; To: <a moz-do-not-send="true"
                  class="ecxmoz-txt-link-abbreviated"
                  href="mailto:gmx-users@gromacs.org">gmx-users@gromacs.org</a><br>
                &gt; &gt;&gt; Subject: Re: [gmx-users] simulation killed<br>
                &gt; &gt;<br>
                &gt; &gt;&gt;<br>
                &gt; &gt;&gt; something killed your job but it wasn't
                gromacs.<br>
                &gt; &gt;&gt; Your system has run time or memory
                requirements that your job exceeded.<br>
                &gt; &gt;&gt;<br>
                &gt; &gt;&gt; On 2012-01-29 06:40:29PM +0200, mehmet
                k&#305;ytak wrote:<br>
                &gt; &gt;&gt; &gt; hi! all<br>
                &gt; &gt;&gt; &gt;<br>
                &gt; &gt;&gt; &gt; &#305; have to a big problem..&#305; am doing
                free energy calculation for a ligand<br>
                &gt; &gt;&gt; &gt; (L<br>
                &gt; &gt;&gt; &gt; histidine ) when &#305; perform mdrun ..
                my simulation stop ... the program<br>
                &gt; &gt;&gt; &gt; gave<br>
                &gt; &gt;&gt; &gt; me this message..<br>
                &gt; &gt;&gt; &gt;<br>
                &gt; &gt;&gt; &gt; Reading file md0.tpr, VERSION 4.5.4
                (single precision)<br>
                &gt; &gt;&gt; &gt; Starting 8 threads<br>
                &gt; &gt;&gt; &gt; Making 1D domain decomposition 8 x 1
                x 1<br>
                &gt; &gt; &amp; gt; &gt; starting mdrun 'Protein in
                water'<br>
                &gt; &gt;<br>
                &gt; &gt;&gt; &gt; 2500000 steps, 5000.0 ps.<br>
                &gt; &gt;&gt; &gt; ./job_0.sh: line 95: 15457 Killed
                mdrun -nt 8 -deffnm<br>
                &gt; &gt;&gt; &gt; md$LAMBDA<br>
                &gt; &gt;&gt; &gt; Production MD complete.<br>
                &gt; &gt;&gt; &gt; Ending. Job completed for lambda = 0<br>
                &gt; &gt;&gt; &gt; mkiytak@babil:~/JOB1$<br>
                &gt; &gt;&gt; &gt;<br>
                &gt; &gt;&gt; &gt;<br>
                &gt; &gt;&gt; &gt; my mdp file..<br>
                &gt; &gt;&gt; &gt; ;<br>
                &gt; &gt;&gt; &gt; ; Run control<br>
                &gt; &gt;&gt; &gt; integrator = sd ; Langevin dynamics<br>
                &gt; &gt;&gt; &gt; tinit = 0<br>
                &gt; &gt;&gt; &gt; dt = 0.002<br>
                &gt; &gt;&gt; &gt; nsteps = 2500000 ; 5 ns<br>
                &gt; &gt;&gt; &gt; nstcomm = 100<br>
                &gt; &gt;&gt; &gt; ; Output control<br>
                &gt; &gt;&gt; &gt; nstxout = 500<br>
                &gt; &gt;&gt; &gt; nstvout = 500<br>
                &gt; &gt;&gt; &gt; nstfout = 0<br>
                &gt; &gt;&gt; &gt; nstlog = 500<br>
                &gt; &gt;&gt; &gt; nstenergy = 500<br>
                &gt; &gt;&gt; &gt; nstxtcout = 0<br>
                &gt; &gt;&gt; &gt; xtc-precision = 1000<br>
                &gt; &gt;&gt; &gt; ; Neighborsearching and short-range
                nonbonded interactions<br>
                &gt; &gt;&gt; &gt; nstlist = 10<br>
                &gt; &gt;&gt; &gt; ns_type = grid<br>
                &gt; &gt;&gt; &gt; pbc = xyz<br>
                &gt; &gt;&gt; &gt; rlist = 1.0<br>
                &gt; &gt;&gt; &gt; ; Electrostatics<br>
                &gt; &gt;&gt; &gt; coulombtype = PME<br>
                &gt; &gt;&gt; &gt; rcoulomb = 1.0<br>
                &gt; &gt;&gt; &gt; ; van der Waals<br>
                &gt; &gt;&gt; &gt; vdw-type = switch<br>
                &gt; &gt;&gt; &gt; rvdw-switch = 0.8<br>
                &gt; &gt;&gt; &gt; rvdw = 0.9<br>
                &gt; &gt;&gt; &gt; ; Apply long range dispersion
                corrections for Energy and Pressure<br>
                &gt; &gt;&gt; &gt; DispCorr = EnerPres<br>
                &gt; &gt;&gt; &gt; ; Spacing for the PME/PPPM FFT grid<br>
                &gt; &gt;&gt; &gt; fourierspacing = 0.12<br>
                &gt; &gt;&gt; &gt; ; EWALD/PME/PPPM parameters<br>
                &gt; &gt;&gt; &gt; pme_order = 6<br>
                &gt; &gt;&gt; &gt; ewald_rtol = 1e-06<br>
                &gt; &gt;&gt; &gt; epsilon_surface = 0<br>
                &gt; &gt;&gt; &gt; optimize_fft = no<br>
                &gt; &gt;&gt; &amp;g t; ; Temperature coupling<br>
                &gt; &gt;<br>
                &gt; &gt;&gt; &gt; ; tcoupl is implicitly handled by the
                sd integrator<br>
                &gt; &gt;&gt; &gt; tc_grps = system<br>
                &gt; &gt;&gt; &gt; tau_t = 1.0<br>
                &gt; &gt;&gt; &gt; ref_t = 300<br>
                &gt; &gt;&gt; &gt; ; Pressure coupling is on for NPT<br>
                &gt; &gt;&gt; &gt; Pcoupl = Parrinello-Rahman<br>
                &gt; &gt;&gt; &gt; tau_p = 0.5<br>
                &gt; &gt;&gt; &gt; compressibility = 4.5e-05<br>
                &gt; &gt;&gt; &gt; ref_p = 1.0<br>
                &gt; &gt;&gt; &gt; ; Free energy control st uff<br>
                &gt; &gt;&gt; &gt; free_energy = yes<br>
                &gt; &gt;&gt; &gt; init_lambda = 0.00<br>
                &gt; &gt;&gt; &gt; delta_lambda = 0<br>
                &gt; &gt;&gt; &gt; foreign_lambda = 0.05<br>
                &gt; &gt;&gt; &gt; sc-alpha = 0.5<br>
                &gt; &gt;&gt; &gt; sc-power = 1.0<br>
                &gt; &gt;&gt; &gt; sc-sigma = 0.3<br>
                &gt; &gt;&gt; &gt; couple-moltype = system<br>
                &gt; &gt;&gt; &gt; couple-lambda0 = vdw ; only van der
                Waals interactions<br>
                &gt; &gt;&gt; &gt; couple-lambda1 = non e ; turn off
                everything, in this case<br>
                &gt; &gt;<br>
                &gt; &gt;&gt; &gt; only vdW<br>
                &gt; &gt;&gt; &gt; couple-intramol = no<br>
                &gt; &gt;&gt; &gt; nstdhdl = 10<br>
                &gt; &gt;&gt; &gt; ; Do not generate velocities<br>
                &gt; &gt;&gt; &gt; gen_vel = no<br>
                &gt; &gt;&gt; &gt; ; options for bonds<br>
                &gt; &gt;&gt; &gt; constraints = h-bonds ; we only have
                C-H bonds here<br>
                &gt; &gt;&gt; &gt; ; Type of constraint algorithm<br>
                &gt; &gt;&gt; &gt; constraint-algorithm = lincs<br>
                &gt; &gt;&gt; &gt; ; Constrain the starting
                configuration<br>
                &gt; &gt;&gt; &gt; ; since we are continuing from NPT<br>
                &gt; &gt;&gt; &gt; continuation = yes<br>
                &gt; &gt;&gt; &gt; ; Highest order in the expansion of
                the constraint coupling matrix<br>
                &gt; &gt;&gt; &gt; lincs-order = 12<br>
                &gt; &gt;&gt; &gt;<br>
                &gt; &gt;&gt; &gt; PLEASE HELP ME... WHY THE PROGRAM
                STOP ( K&#304;LLED) SORRY FOR BAD ENGL&#304;SH..<br>
                &gt; &gt;&gt;<br>
                &gt; &gt;&gt; &gt; --<br>
                &gt; &gt;&gt; &gt; gmx-users mailing list <a
                  moz-do-not-send="true"
                  class="ecxmoz-txt-link-abbreviated"
                  href="mailto:gmx-users@gromacs.org">gmx-users@gromacs.org</a><br>
                &gt; &gt;&gt; &gt; <a moz-do-not-send="true"
                  class="ecxmoz-txt-link-freetext"
                  href="http://lists.gromacs.org/mailman/listinfo/gmx-users"
                  target="_blank">http://lists.gromacs.org/mailman/listinfo/gmx-users</a><br>
                &gt; &gt;&gt; &gt; Please search the archive at<br>
                &gt; &gt;&gt; &gt; <a moz-do-not-send="true"
                  class="ecxmoz-txt-link-freetext"
                  href="http://www.gromacs.org/Support/Mailing_Lists/Search"
                  target="_blank">http://www.gromacs.org/Support/Mailing_Lists/Search</a>
                before posting!<br>
                &gt; &gt;&gt; &gt; Please don't post (un)subscribe
                requests to the list. Use the<br>
                &gt; &gt;&gt; &gt; www interface or send it to <a
                  moz-do-not-send="true"
                  class="ecxmoz-txt-link-abbreviated"
                  href="mailto:gmx-users-request@gromacs.org">gmx-users-request@gromacs.org</a>.<br>
                &gt; &gt;&gt; &gt; Can't post? Read <a
                  moz-do-not-send="true"
                  class="ecxmoz-txt-link-freetext"
                  href="http://www.gromacs.org/Support/Mailing_Lists"
                  target="_blank">http://www.gromacs.org/Support/Mailing_Lists</a><br>
                &gt; &gt;&gt;<br>
                &gt; &gt;&gt;<br>
                &gt; &gt;&gt; --<br>
                &gt; &gt;&gt; ===================
                ===============================================<br>
                &gt; &gt;&gt; Peter C. Lai | University of
                Alabama-Birmingham<br>
                &gt; &gt;&gt; Programmer/Analyst | KAUL 752A<br>
                &gt; &gt;&gt; Genetics, Div. of Research | 705 South
                20th Street<br>
                &gt; &gt;&gt; <a moz-do-not-send="true"
                  class="ecxmoz-txt-link-abbreviated"
                  href="mailto:pcl@uab.edu">pcl@uab.edu</a> | Birmingham
                AL 35294-4461<br>
                &gt; &gt;&gt; (205) 690-0808 |<br>
                &gt; &gt;&gt;
                ==================================================================<br>
                &gt; &gt;&gt;<br>
                &gt; &gt;&gt; --<br>
                &gt; &gt;&gt; gmx-users mailing list <a
                  moz-do-not-send="true"
                  class="ecxmoz-txt-link-abbreviated"
                  href="mailto:gmx-users@gromacs.org">gmx-users@gromacs.org</a><br>
                &gt; &gt;&gt; <a moz-do-not-send="true"
                  class="ecxmoz-txt-link-freetext"
                  href="http://lists.gromacs.org/mailman/listinfo/gmx-users"
                  target="_blank">http://lists.gromacs.org/mailman/listinfo/gmx-users</a><br>
                &gt; &gt;&gt; Please search the archive at<br>
                &gt; &gt;&gt; <a moz-do-not-send="true"
                  class="ecxmoz-txt-link-freetext"
                  href="http://www.gromacs.org/Support/Mailing_Lists/Search"
                  target="_blank">http://www.gromacs.org/Support/Mailing_Lists/Search</a>
                before posting!<br>
                &gt; &gt;&gt; Please don't post (un)s ubscribe requests
                to the list. Use the<br>
                &gt; &gt;&gt; www interface or send it to <a
                  moz-do-not-send="true"
                  class="ecxmoz-txt-link-abbreviated"
                  href="mailto:gmx-users-request@gromacs.org">gmx-users-request@gromacs.org</a>.<br>
                &gt; &gt;&gt; Can't post? Read <a
                  moz-do-not-send="true"
                  class="ecxmoz-txt-link-freetext"
                  href="http://www.gromacs.org/Support/Mailing_Lists"
                  target="_blank">http://www.gromacs.org/Support/Mailing_Lists</a><br>
                &gt; &gt;<br>
                &gt; &gt; --<br>
                &gt; &gt; gmx-users mailing list &nbsp; &nbsp;<a
                  moz-do-not-send="true"
                  class="ecxmoz-txt-link-abbreviated"
                  href="mailto:gmx-users@gromacs.org">gmx-users@gromacs.org</a><br>
                &gt; &gt; <a moz-do-not-send="true"
                  class="ecxmoz-txt-link-freetext"
                  href="http://lists.gromacs.org/mailman/listinfo/gmx-users"
                  target="_blank">http://lists.gromacs.org/mailman/listinfo/gmx-users</a><br>
                &gt; &gt; Please search the archive at<br>
                &gt; &gt; <a moz-do-not-send="true"
                  class="ecxmoz-txt-link-freetext"
                  href="http://www.gromacs.org/Support/Mailing_Lists/Search"
                  target="_blank">http://www.gromacs.org/Support/Mailing_Lists/Search</a>
                before posting!<br>
                &gt; &gt; Please don't post (un)subscribe requests to
                the list. Use the<br>
                &gt; &gt; www interface or send it to <a
                  moz-do-not-send="true"
                  class="ecxmoz-txt-link-abbreviated"
                  href="mailto:gmx-users-request@gromacs.org">gmx-users-request@gromacs.org</a>.<br>
                &gt; &gt; Can't post? Read <a moz-do-not-send="true"
                  class="ecxmoz-txt-link-freetext"
                  href="http://www.gromacs.org/Support/Mailing_Lists"
                  target="_blank">http://www.gromacs.org/Support/Mailing_Lists</a><br>
                &gt; -- <br>
                &gt; gmx-users mailing list <a moz-do-not-send="true"
                  class="ecxmoz-txt-link-abbreviated"
                  href="mailto:gmx-users@gromacs.org">gmx-users@gromacs.org</a><br>
                &gt; <a moz-do-not-send="true"
                  class="ecxmoz-txt-link-freetext"
                  href="http://lists.gromacs.org/mailman/listinfo/gmx-users"
                  target="_blank">http://lists.gromacs.org/mailman/listinfo/gmx-users</a><br>
                &gt; Please search the archive at <a
                  moz-do-not-send="true"
                  class="ecxmoz-txt-link-freetext"
                  href="http://www.gromacs.org/Support/Mailing_Lists/Search"
                  target="_blank">http://www.gromacs.org/Support/Mailing_Lists/Search</a>
                before posting!<br>
                &gt; Please don't post (un)subscribe requests to the
                list. Use the <br>
                &gt; www interface or send it to <a
                  moz-do-not-send="true"
                  class="ecxmoz-txt-link-abbreviated"
                  href="mailto:gmx-users-request@gromacs.org">gmx-users-request@gromacs.org</a>.<br>
                &gt; Can't post? Read <a moz-do-not-send="true"
                  class="ecxmoz-txt-link-freetext"
                  href="http://www.gromacs.org/Support/Mailing_Lists"
                  target="_blank">http://www.gromacs.org/Support/Mailing_Lists</a><br>
              </div>
            </div>
            <br>
            <fieldset class="ecxmimeAttachmentHeader"></fieldset>
            <br>
          </blockquote>
          <br>
          <br>
          -- gmx-users mailing list <a class="moz-txt-link-abbreviated" href="mailto:gmx-users@gromacs.org">gmx-users@gromacs.org</a>
          <a class="moz-txt-link-freetext" href="http://lists.gromacs.org/mailman/listinfo/gmx-users">http://lists.gromacs.org/mailman/listinfo/gmx-users</a>
          Please search the archive at
          <a class="moz-txt-link-freetext" href="http://www.gromacs.org/Support/Mailing_Lists/Search">http://www.gromacs.org/Support/Mailing_Lists/Search</a> before
          posting!
          Please don't post (un)subscribe requests to the list. Use the
          www interface or send it to <a class="moz-txt-link-abbreviated" href="mailto:gmx-users-request@gromacs.org">gmx-users-request@gromacs.org</a>.
          Can't post? Read <a class="moz-txt-link-freetext" href="http://www.gromacs.org/Support/Mailing_Lists">http://www.gromacs.org/Support/Mailing_Lists</a></div>
      </div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
    </blockquote>
    <br>
  </body>
</html>