Remove some pieces from forcerec.h
[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/enerdata.h"
52 #include "gromacs/mdtypes/forceoutput.h"
53 #include "gromacs/mdtypes/iforceprovider.h"
54 #include "gromacs/mdtypes/imdmodule.h"
55 #include "gromacs/mdtypes/imdpoptionprovider.h"
56 #include "gromacs/mdtypes/inputrec.h"
57 #include "gromacs/mdtypes/mdatom.h"
58 #include "gromacs/options/options.h"
59 #include "gromacs/options/treesupport.h"
60 #include "gromacs/utility/arrayref.h"
61 #include "gromacs/utility/keyvaluetreebuilder.h"
62 #include "gromacs/utility/keyvaluetreetransform.h"
63 #include "gromacs/utility/real.h"
64 #include "gromacs/utility/smalloc.h"
65 #include "gromacs/utility/stringcompare.h"
66 #include "gromacs/utility/stringutil.h"
67
68 #include "testutils/testasserts.h"
69
70 namespace
71 {
72
73 /********************************************************************
74  * ElectricFieldTest
75  */
76
77 class ElectricFieldTest : public ::testing::Test
78 {
79     public:
80         void test(int  dim,
81                   real E0,
82                   real omega,
83                   real t0,
84                   real sigma,
85                   real expectedValue)
86         {
87             gmx::test::FloatingPointTolerance tolerance(
88                     gmx::test::relativeToleranceAsFloatingPoint(1.0, 0.005));
89             auto                              module(gmx::createElectricFieldModule());
90
91             // Prepare MDP inputs
92             const char *dimXYZ[3] = { "x", "y", "z" };
93             GMX_RELEASE_ASSERT(dim >= 0 && dim < DIM, "Dimension should be 0, 1 or 2");
94
95             gmx::KeyValueTreeBuilder     mdpValues;
96             mdpValues.rootObject().addValue(gmx::formatString("electric-field-%s", dimXYZ[dim]),
97                                             gmx::formatString("%g %g %g %g", E0, omega, t0, sigma));
98
99             gmx::KeyValueTreeTransformer transform;
100             transform.rules()->addRule()
101                 .keyMatchType("/", gmx::StringCompareType::CaseAndDashInsensitive);
102             module->mdpOptionProvider()->initMdpTransform(transform.rules());
103             auto         result = transform.transform(mdpValues.build(), nullptr);
104             gmx::Options moduleOptions;
105             module->mdpOptionProvider()->initMdpOptions(&moduleOptions);
106             gmx::assignOptionsFromKeyValueTree(&moduleOptions, result.object(), nullptr);
107
108             ForceProviders forceProviders;
109             module->initForceProviders(&forceProviders);
110
111             t_mdatoms            md;
112             PaddedRVecVector     f = { { 0, 0, 0 } };
113             gmx::ForceWithVirial forceWithVirial(f, true);
114             md.homenr = 1;
115             snew(md.chargeA, md.homenr);
116             md.chargeA[0] = 1;
117
118             t_commrec                     *cr       = init_commrec();
119             matrix                         boxDummy = { {0, 0, 0}, {0, 0, 0}, {0, 0, 0} };
120             gmx_enerdata_t                 enerdDummy;
121
122             gmx::ForceProviderInput        forceProviderInput(gmx::EmptyArrayRef {}, md, 0.0, boxDummy, *cr);
123             gmx::ForceProviderOutput       forceProviderOutput(&forceWithVirial, &enerdDummy);
124             forceProviders.calculateForces(forceProviderInput, &forceProviderOutput);
125             done_commrec(cr);
126
127             EXPECT_REAL_EQ_TOL(f[0][dim], expectedValue, tolerance);
128             sfree(md.chargeA);
129         }
130 };
131
132 TEST_F(ElectricFieldTest, Static)
133 {
134     test(0, 1, 0, 0, 0, 96.4853363);
135 }
136
137 TEST_F(ElectricFieldTest, Oscillating)
138 {
139     test(0, 1, 5, 0.2, 0, 96.4853363);
140 }
141
142 TEST_F(ElectricFieldTest, Pulsed)
143 {
144     test(0, 1, 5, 0.5, 1, -68.215782);
145 }
146
147 } // namespace