2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2016, by the GROMACS development team, led by
5 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6 * and including many others, as listed in the AUTHORS file in the
7 * top-level source directory and at http://www.gromacs.org.
9 * GROMACS is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public License
11 * as published by the Free Software Foundation; either version 2.1
12 * of the License, or (at your option) any later version.
14 * GROMACS is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with GROMACS; if not, see
21 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 * If you want to redistribute modifications to GROMACS, please
25 * consider that scientific software is very special. Version
26 * control is crucial - bugs must be traceable. We will be happy to
27 * consider code for inclusion in the official distribution, but
28 * derived work must not be called official GROMACS. Details are found
29 * in the README & COPYING files - if they are missing, get the
30 * official version at http://www.gromacs.org.
32 * To help us fund GROMACS development, we humbly ask that you cite
33 * the research papers on the package. Check out http://www.gromacs.org.
37 * Implements classes in mdruncomparisonfixture.h.
39 * \author Mark Abraham <mark.j.abraham@gmail.com>
40 * \ingroup module_mdrun_integration_tests
44 #include "mdruncomparisonfixture.h"
51 #include "gromacs/utility/stringutil.h"
53 #include "testutils/testasserts.h"
60 MdrunComparisonFixture::~MdrunComparisonFixture()
68 typedef std::map
<std::string
, MdrunComparisonFixture::MdpFieldValues
> MdpFileValues
;
70 //! Database of .mdp strings that supports MdrunComparisonFixture::prepareSimulation()
71 MdpFileValues mdpFileValueDatabase_g
73 // Simple system with 12 argon atoms, fairly widely separated
79 "compressibility", "5e-10"
85 // Simple system with 5 water molecules, fairly widely separated
88 "compressibility", "5e-10"
94 // Simple system with 5832 argon atoms, suitable for normal pressure coupling
100 // Simple system with 216 water molecules, condensed phase
104 // Capped alanine peptide in vacuo with virtual sites
106 "alanine_vsite_vacuo", { {
107 "constraints", "all-bonds"
110 "compressibility", "5e-10"
116 // Capped alanine peptide in aqueous condensed phase, with virtual sites
118 "alanine_vsite_solvated", { {
119 "constraints", "all-bonds"
122 // Nonanol molecule in vacuo, topology suitable for FEP testing
128 "compressibility", "5e-10"
134 "constraints", "h-bonds"
138 "free-energy = yes\n"
142 "init-lambda-state = 3\n"
143 "fep_lambdas = 0.00 0.50 1.00 1.00 1.00\n"
144 "vdw_lambdas = 0.00 0.00 0.00 0.50 1.00\n"
145 "couple-moltype = nonanol\n"
146 "couple-lambda0 = vdw-q\n"
147 "couple-lambda1 = none\n"
148 "couple-intramol = yes\n"
155 MdrunComparisonFixture::MdpFieldValues
MdrunComparisonFixture::prepareMdpFieldValues(const char *simulationName
)
157 /* Insert suitable .mdp defaults, so that the database set up
158 * above does not need to specify redundant values. This works
159 * because std::map.insert() does not over-write elements that
162 * TODO ideally some of these default values should be the same as
163 * grompp uses, and sourced from the same place, but that code is
164 * a bit of a jungle. */
166 typedef MdpFieldValues::value_type MdpField
;
168 auto &mdpFieldValues
= mdpFileValueDatabase_g
.at(simulationName
);
169 mdpFieldValues
.insert(MdpField("nsteps", "16"));
170 mdpFieldValues
.insert(MdpField("ref-t", "298"));
171 mdpFieldValues
.insert(MdpField("tau-p", "1"));
172 mdpFieldValues
.insert(MdpField("compressibility", "5e-5"));
173 mdpFieldValues
.insert(MdpField("constraints", "none"));
174 mdpFieldValues
.insert(MdpField("other", ""));
176 return mdpFieldValues
;
179 void MdrunComparisonFixture::prepareMdpFile(const MdpFieldValues
&mdpFieldValues
,
180 const char *integrator
,
184 /* Set up an .mdp file that permits a highly reproducible
185 * simulation. The format string needs to be configured with
186 * values for various .mdp fields to suit the kind of system
187 * used and testing needed. It also
188 * - writes frames from different kinds of steps: starting, ending, intermediate NS, intermediate non-NS
189 * - has other steps between frame-writing steps
190 * - has enough buffer that e.g. a rerun will compute the same potential energy even though it does NS every frame
191 * - has very slow pressure coupling and weak compressibility (since otherwise the box will shrink too fast)
192 * - can have arbitrary chunks of .mdp content appended to it (but it is up to grompp how it deals with duplicate fields)
193 * - sets random seeds to known values
194 * - uses cutoffs that fit inside boxes even after GPU mdrun scales rlist
196 * Note that forces computed in the absence of energy computations
197 * generally follow a different code path from those computed with
198 * energies. However a rerun always computes energies, so we don't
199 * currently have a good way to compare forces at steps where
200 * energies were not computed with those from rerun on the same
203 runner_
.useStringAsMdpFile(formatString("rcoulomb = 0.7\n"
207 "verlet-buffer-tolerance = 0.000001\n"
221 "pcoupltype = isotropic\n"
224 "compressibility = %s\n"
226 "constraint-algorithm = lincs\n"
230 mdpFieldValues
.at("nsteps").c_str(),
232 mdpFieldValues
.at("ref-t").c_str(),
234 mdpFieldValues
.at("tau-p").c_str(),
235 mdpFieldValues
.at("compressibility").c_str(),
236 mdpFieldValues
.at("constraints").c_str(),
237 mdpFieldValues
.at("other").c_str()));
240 void MdrunComparisonFixture::runTest(const char *simulationName
,
241 const char *integrator
,
244 FloatingPointTolerance tolerance
)
247 caller
.append("grompp");
248 runTest(caller
, simulationName
, integrator
, tcoupl
, pcoupl
, tolerance
);