Update instructions in containers.rst
[gromacs.git] / src / programs / mdrun / tests / swapcoords.cpp
blob7e108b027dbaac5d1319778ef270064626e63f14
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2013,2014,2015,2016,2018 by the GROMACS development team.
5 * Copyright (c) 2019,2020, by the GROMACS development team, led by
6 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
7 * and including many others, as listed in the AUTHORS file in the
8 * top-level source directory and at http://www.gromacs.org.
10 * GROMACS is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public License
12 * as published by the Free Software Foundation; either version 2.1
13 * of the License, or (at your option) any later version.
15 * GROMACS is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with GROMACS; if not, see
22 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
23 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 * If you want to redistribute modifications to GROMACS, please
26 * consider that scientific software is very special. Version
27 * control is crucial - bugs must be traceable. We will be happy to
28 * consider code for inclusion in the official distribution, but
29 * derived work must not be called official GROMACS. Details are found
30 * in the README & COPYING files - if they are missing, get the
31 * official version at http://www.gromacs.org.
33 * To help us fund GROMACS development, we humbly ask that you cite
34 * the research papers on the package. Check out http://www.gromacs.org.
37 /*! \internal \file
38 * \brief
39 * Tests utilities for "Computational Electrophysiology" setups.
41 * \author Carsten Kutzner <ckutzne@gwdg.de>
42 * \ingroup module_mdrun_integration_tests
44 #include "gmxpre.h"
46 #include "moduletest.h"
48 namespace gmx
50 namespace test
53 class SwapTestFixture : public MdrunTestFixture
55 protected:
56 SwapTestFixture();
57 ~SwapTestFixture() override;
61 SwapTestFixture::SwapTestFixture() {}
63 SwapTestFixture::~SwapTestFixture() {}
66 //! Test fixture for mdrun with "Computational Electrophysiology" settings,
67 // i.e. double membrane sandwich with ion/water exchange protocol
68 typedef gmx::test::SwapTestFixture CompelTest;
70 /* This test ensures that the compel protocol can be run, that all of
71 * the swapcoords parameters from the .mdp file are understood, and that
72 * the swap state variables can be written to and read from checkpoint. */
73 TEST_F(CompelTest, SwapCanRun)
75 runner_.useTopGroAndNdxFromDatabase("OctaneSandwich");
76 const std::string mdpContents = R"(
77 dt = 0.005
78 nsteps = 2
79 tcoupl = Berendsen
80 tc-grps = System
81 tau-t = 0.5
82 ref-t = 300
83 constraints = all-bonds
84 cutoff-scheme = Verlet
85 swapcoords = Z
86 swap_frequency = 1
87 split_group0 = Ch0
88 split_group1 = Ch1
89 massw_split0 = yes
90 massw_split1 = no
91 solvent_group = SOL
92 cyl0_r = 1
93 cyl0_up = 0.5
94 cyl0_down = 0.5
95 cyl1_r = 1
96 cyl1_up = 0.5
97 cyl1_down = 0.5
98 coupl_steps = 5
99 iontypes = 2
100 iontype0-name = NA+
101 iontype0-in-A = 8
102 iontype0-in-B = 11
103 iontype1-name = CL-
104 iontype1-in-A = -1
105 iontype1-in-B = -1
106 threshold = 1
109 runner_.useStringAsMdpFile(mdpContents);
111 EXPECT_EQ(0, runner_.callGrompp());
113 runner_.cptFileName_ = fileManager_.getTemporaryFilePath(".cpt");
114 runner_.groOutputFileName_ = fileManager_.getTemporaryFilePath(".gro");
115 runner_.swapFileName_ = fileManager_.getTemporaryFilePath("swap.xvg");
117 ::gmx::test::CommandLine swapCaller;
118 swapCaller.addOption("-c", runner_.groOutputFileName_);
119 swapCaller.addOption("-swap", runner_.swapFileName_);
121 // Do an initial mdrun that writes a checkpoint file
122 ::gmx::test::CommandLine firstCaller(swapCaller);
123 firstCaller.addOption("-cpo", runner_.cptFileName_);
124 ASSERT_EQ(0, runner_.callMdrun(firstCaller));
125 // Continue mdrun from that checkpoint file
126 ::gmx::test::CommandLine secondCaller(swapCaller);
127 secondCaller.addOption("-cpi", runner_.cptFileName_);
128 runner_.nsteps_ = 2;
129 ASSERT_EQ(0, runner_.callMdrun(secondCaller));
133 /*! \todo Add other tests for the compel module, e.g.
135 * - a test that checks that actually ion/water swaps have been done, by
136 * calling gmxcheck on the swap output file and a reference file
140 } // namespace test
141 } // namespace gmx