Cleaned up mdrunner_start_threads
[gromacs/AngularHB.git] / src / programs / mdrun / tests / trajectory_writing.cpp
blob09666e4d7eba3a4e74d802daa492bfa7ac5650c4
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2013,2014,2015,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.
36 /*! \internal \file
37 * \brief
38 * Tests for the .mdp nst*out functionality
40 * \author Mark Abraham <mark.j.abraham@gmail.com>
41 * \ingroup module_mdrun_integration_tests
43 #include "gmxpre.h"
45 #include "config.h"
47 #include <gtest/gtest.h>
49 #include "gromacs/options/filenameoption.h"
50 #include "gromacs/utility/stringutil.h"
52 #include "moduletest.h"
54 namespace
57 // TODO configure these tests so they test all formats for mdrun trajectory writing
58 #ifdef GMX_USE_TNG
60 //! Test fixture for mdrun trajectory writing
61 class TrajectoryWritingTest :
62 public gmx::test::MdrunTestFixture,
63 public ::testing::WithParamInterface<const char *>
65 public:
66 //! The file name of the MDP file
67 std::string theMdpFile;
69 //! Execute the trajectory writing test
70 void runTest()
72 runner_.useStringAsMdpFile(theMdpFile);
73 runner_.useTopGroAndNdxFromDatabase("spc-and-methanol");
74 EXPECT_EQ(0, runner_.callGrompp());
76 runner_.fullPrecisionTrajectoryFileName_ = fileManager_.getTemporaryFilePath("spc-and-methanol.tng");
77 runner_.reducedPrecisionTrajectoryFileName_ = fileManager_.getTemporaryFilePath("spc-and-methanol-reduced.tng");
78 ASSERT_EQ(0, runner_.callMdrun());
79 // TODO When there is a way to sense something like the
80 // output of gmx check, compare the result with that from
81 // writing .trr and .xtc and assert the behaviour is
82 // correct. Note that TNG will always write the box, even
83 // when constant - this will be a source of
84 // trajectory-file differences.
88 //! Helper typedef for naming test cases like sentences
89 typedef TrajectoryWritingTest Trajectories;
91 /* This test ensures mdrun can write various quantities at various
92 frequencies */
93 TEST_P(Trajectories, ThatDifferInNstxout)
95 theMdpFile = gmx::formatString("integrator = md\n"
96 "nsteps = 6\n"
97 "nstxout = %s\n"
98 "nstvout = 2\n"
99 "nstfout = 4\n"
100 "nstxout-compressed = 5\n"
101 "tcoupl = v-rescale\n"
102 "tc-grps = System\n"
103 "tau-t = 1\n"
104 "ref-t = 298\n"
105 "compressed-x-grps = Sol\n",
106 GetParam());
107 runTest();
110 //! Helper typedef for naming test cases like sentences
111 typedef TrajectoryWritingTest NptTrajectories;
113 /* This test ensures mdrun can write trajectories in TNG format from NPT ensembles. */
114 TEST_P(NptTrajectories, WithDifferentPcoupl)
116 theMdpFile = gmx::formatString("integrator = md\n"
117 "nsteps = 2\n"
118 "nstxout = 2\n"
119 "nstvout = 1\n"
120 "pcoupl = %s\n"
121 "tau-p = 1\n"
122 "ref-p = 1\n"
123 "compressibility = 4.5e-5\n"
124 "tcoupl = v-rescale\n"
125 "tc-grps = System\n"
126 "tau-t = 1\n"
127 "ref-t = 298\n",
128 GetParam());
129 runTest();
132 // TODO Consider spamming more of the parameter space when we don't
133 // have to write .mdp and .tpr files to do it.
134 INSTANTIATE_TEST_CASE_P(MdrunCanWrite,
135 Trajectories,
136 ::testing::Values("1", "2", "3"));
138 INSTANTIATE_TEST_CASE_P(MdrunCanWrite,
139 NptTrajectories,
140 ::testing::Values("no", "Berendsen", "Parrinello-Rahman"));
142 #endif
144 } // namespace