Add grompp check for usage of "define" field in mdp
[gromacs.git] / src / programs / mdrun / tests / swapcoords.cpp
blob40390a0a04a71c9450548b14ca2613b5b8e16bdc
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2013,2014,2015,2016,2018,2019, 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 utilities for "Computational Electrophysiology" setups.
40 * \author Carsten Kutzner <ckutzne@gwdg.de>
41 * \ingroup module_mdrun_integration_tests
43 #include "gmxpre.h"
45 #include "moduletest.h"
47 namespace gmx
49 namespace test
52 class SwapTestFixture : public MdrunTestFixture
54 protected:
55 SwapTestFixture();
56 ~SwapTestFixture() override;
60 SwapTestFixture::SwapTestFixture()
64 SwapTestFixture::~SwapTestFixture()
70 //! Test fixture for mdrun with "Computational Electrophysiology" settings,
71 // i.e. double membrane sandwich with ion/water exchange protocol
72 typedef gmx::test::SwapTestFixture CompelTest;
74 /* This test ensures that the compel protocol can be run, that all of
75 * the swapcoords parameters from the .mdp file are understood, and that
76 * the swap state variables can be written to and read from checkpoint. */
77 TEST_F(CompelTest, SwapCanRun)
79 runner_.useTopGroAndNdxFromDatabase("OctaneSandwich");
80 const std::string mdpContents = R"(
81 dt = 0.005
82 nsteps = 2
83 tcoupl = Berendsen
84 tc-grps = System
85 tau-t = 0.5
86 ref-t = 300
87 constraints = all-bonds
88 cutoff-scheme = Verlet
89 swapcoords = Z
90 swap_frequency = 1
91 split_group0 = Ch0
92 split_group1 = Ch1
93 massw_split0 = yes
94 massw_split1 = no
95 solvent_group = SOL
96 cyl0_r = 1
97 cyl0_up = 0.5
98 cyl0_down = 0.5
99 cyl1_r = 1
100 cyl1_up = 0.5
101 cyl1_down = 0.5
102 coupl_steps = 5
103 iontypes = 2
104 iontype0-name = NA+
105 iontype0-in-A = 8
106 iontype0-in-B = 11
107 iontype1-name = CL-
108 iontype1-in-A = -1
109 iontype1-in-B = -1
110 threshold = 1
113 runner_.useStringAsMdpFile(mdpContents);
115 EXPECT_EQ(0, runner_.callGrompp());
117 runner_.cptFileName_ = fileManager_.getTemporaryFilePath(".cpt");
118 runner_.groOutputFileName_ = fileManager_.getTemporaryFilePath(".gro");
119 runner_.swapFileName_ = fileManager_.getTemporaryFilePath("swap.xvg");
121 ::gmx::test::CommandLine swapCaller;
122 swapCaller.addOption("-c", runner_.groOutputFileName_);
123 swapCaller.addOption("-swap", runner_.swapFileName_);
125 // Do an initial mdrun that writes a checkpoint file
126 ::gmx::test::CommandLine firstCaller(swapCaller);
127 firstCaller.addOption("-cpo", runner_.cptFileName_);
128 ASSERT_EQ(0, runner_.callMdrun(firstCaller));
129 // Continue mdrun from that checkpoint file
130 ::gmx::test::CommandLine secondCaller(swapCaller);
131 secondCaller.addOption("-cpi", runner_.cptFileName_);
132 runner_.nsteps_ = 2;
133 ASSERT_EQ(0, runner_.callMdrun(secondCaller));
138 /*! \todo Add other tests for the compel module, e.g.
140 * - a test that checks that actually ion/water swaps have been done, by
141 * calling gmxcheck on the swap output file and a reference file
145 } // namespace test
146 } // namespace gmx