d721db2005baf8b8bb4856a30b79d4f0cf73750f
[alexxy/gromacs.git] / src / gromacs / applied-forces / tests / electricfield.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2015,2016,2017,2018, 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.
8  *
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.
13  *
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.
18  *
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.
23  *
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.
31  *
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.
34  */
35 /*! \internal \file
36  * \brief
37  * Tests for functionality of the "angle" trajectory analysis module.
38  *
39  * \author David van der Spoel <david.vanderspoel@icm.uu.se>
40  * \ingroup module_applied_forces
41  */
42 #include "gmxpre.h"
43
44 #include "gromacs/applied-forces/electricfield.h"
45
46 #include <gtest/gtest.h>
47
48 #include "gromacs/gmxlib/network.h"
49 #include "gromacs/math/vec.h"
50 #include "gromacs/mdlib/forcerec.h"
51 #include "gromacs/mdtypes/forceoutput.h"
52 #include "gromacs/mdtypes/iforceprovider.h"
53 #include "gromacs/mdtypes/imdmodule.h"
54 #include "gromacs/mdtypes/imdpoptionprovider.h"
55 #include "gromacs/mdtypes/inputrec.h"
56 #include "gromacs/mdtypes/mdatom.h"
57 #include "gromacs/options/options.h"
58 #include "gromacs/options/treesupport.h"
59 #include "gromacs/utility/arrayref.h"
60 #include "gromacs/utility/keyvaluetreebuilder.h"
61 #include "gromacs/utility/keyvaluetreetransform.h"
62 #include "gromacs/utility/real.h"
63 #include "gromacs/utility/smalloc.h"
64 #include "gromacs/utility/stringcompare.h"
65 #include "gromacs/utility/stringutil.h"
66
67 #include "testutils/testasserts.h"
68
69 namespace
70 {
71
72 /********************************************************************
73  * ElectricFieldTest
74  */
75
76 class ElectricFieldTest : public ::testing::Test
77 {
78     public:
79         void test(int  dim,
80                   real E0,
81                   real omega,
82                   real t0,
83                   real sigma,
84                   real expectedValue)
85         {
86             gmx::test::FloatingPointTolerance tolerance(
87                     gmx::test::relativeToleranceAsFloatingPoint(1.0, 0.005));
88             auto                              module(gmx::createElectricFieldModule());
89
90             // Prepare MDP inputs
91             const char *dimXYZ[3] = { "x", "y", "z" };
92             GMX_RELEASE_ASSERT(dim >= 0 && dim < DIM, "Dimension should be 0, 1 or 2");
93
94             gmx::KeyValueTreeBuilder     mdpValues;
95             mdpValues.rootObject().addValue(gmx::formatString("electric-field-%s", dimXYZ[dim]),
96                                             gmx::formatString("%g %g %g %g", E0, omega, t0, sigma));
97
98             gmx::KeyValueTreeTransformer transform;
99             transform.rules()->addRule()
100                 .keyMatchType("/", gmx::StringCompareType::CaseAndDashInsensitive);
101             module->mdpOptionProvider()->initMdpTransform(transform.rules());
102             auto         result = transform.transform(mdpValues.build(), nullptr);
103             gmx::Options moduleOptions;
104             module->mdpOptionProvider()->initMdpOptions(&moduleOptions);
105             gmx::assignOptionsFromKeyValueTree(&moduleOptions, result.object(), nullptr);
106
107             ForceProviders forceProviders;
108             module->initForceProviders(&forceProviders);
109
110             t_mdatoms            md;
111             PaddedRVecVector     f = { { 0, 0, 0 } };
112             gmx::ForceWithVirial forceWithVirial(f, true);
113             md.homenr = 1;
114             snew(md.chargeA, md.homenr);
115             md.chargeA[0] = 1;
116
117             t_commrec                     *cr       = init_commrec();
118             matrix                         boxDummy = { {0, 0, 0}, {0, 0, 0}, {0, 0, 0} };
119             gmx_enerdata_t                 enerdDummy;
120
121             gmx::ForceProviderInput        forceProviderInput(gmx::EmptyArrayRef {}, md, 0.0, boxDummy, *cr);
122             gmx::ForceProviderOutput       forceProviderOutput(&forceWithVirial, &enerdDummy);
123             forceProviders.calculateForces(forceProviderInput, &forceProviderOutput);
124             done_commrec(cr);
125
126             EXPECT_REAL_EQ_TOL(f[0][dim], expectedValue, tolerance);
127             sfree(md.chargeA);
128         }
129 };
130
131 TEST_F(ElectricFieldTest, Static)
132 {
133     test(0, 1, 0, 0, 0, 96.4853363);
134 }
135
136 TEST_F(ElectricFieldTest, Oscillating)
137 {
138     test(0, 1, 5, 0.2, 0, 96.4853363);
139 }
140
141 TEST_F(ElectricFieldTest, Pulsed)
142 {
143     test(0, 1, 5, 0.5, 1, -68.215782);
144 }
145
146 } // namespace