Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / mdlib / tests / leapfrogtestdata.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 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.
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 Defines the class to accumulate the data needed for the Leap-Frog integrator tests
37  *
38  * \author Artem Zhmurov <zhmurov@gmail.com>
39  * \ingroup module_mdlib
40  */
41 #include "gmxpre.h"
42
43 #include "leapfrogtestdata.h"
44
45 #include <assert.h>
46
47 #include <cmath>
48
49 #include <algorithm>
50 #include <unordered_map>
51 #include <vector>
52
53 #include <gtest/gtest.h>
54
55 #include "gromacs/gpu_utils/gpu_utils.h"
56 #include "gromacs/math/vec.h"
57 #include "gromacs/math/vectypes.h"
58 #include "gromacs/mdtypes/mdatom.h"
59 #include "gromacs/utility/smalloc.h"
60 #include "gromacs/utility/stringutil.h"
61
62 #include "testutils/refdata.h"
63 #include "testutils/testasserts.h"
64
65 namespace gmx
66 {
67 namespace test
68 {
69
70 LeapFrogTestData::LeapFrogTestData(int        numAtoms,
71                                    real       timestep,
72                                    const rvec v0,
73                                    const rvec f0,
74                                    int        numTCoupleGroups,
75                                    int        nstpcouple) :
76     numAtoms_(numAtoms),
77     timestep_(timestep),
78     x0_(numAtoms),
79     x_(numAtoms),
80     xPrime_(numAtoms),
81     v0_(numAtoms),
82     v_(numAtoms),
83     f_(numAtoms),
84     inverseMasses_(numAtoms),
85     inverseMassesPerDim_(numAtoms),
86     numTCoupleGroups_(numTCoupleGroups)
87 {
88     mdAtoms_.nr = numAtoms_;
89
90     for (int i = 0; i < numAtoms_; i++)
91     {
92         // Typical PBC box size is tens of nanometers
93         x_[i][XX] = (i % 21) * 1.0;
94         x_[i][YY] = 6.5 + (i % 13) * (-1.0);
95         x_[i][ZZ] = (i % 32) * (0.0);
96
97         for (int d = 0; d < DIM; d++)
98         {
99             xPrime_[i][d] = 0.0;
100             // Thermal velocity is ~1 nm/ps (|v0| = 1-2 nm/ps)
101             v_[i][d] = v0[d];
102             // TODO Check what value typical MD forces have (now ~ 1 kJ/mol/nm)
103             f_[i][d] = f0[d];
104
105             x0_[i][d] = x_[i][d];
106             v0_[i][d] = v_[i][d];
107         }
108         // Atom masses are ~1-100 g/mol
109         inverseMasses_[i] = 1.0 / (1.0 + i % 100);
110         for (int d = 0; d < DIM; d++)
111         {
112             inverseMassesPerDim_[i][d] = inverseMasses_[i];
113         }
114     }
115     mdAtoms_.invmass       = inverseMasses_.data();
116     mdAtoms_.invMassPerDim = as_rvec_array(inverseMassesPerDim_.data());
117
118     // Temperature coupling
119     snew(mdAtoms_.cTC, numAtoms_);
120
121     // To do temperature coupling at each step
122     inputRecord_.nsttcouple = 1;
123
124     if (numTCoupleGroups_ == 0)
125     {
126         inputRecord_.etc = etcNO;
127         for (int i = 0; i < numAtoms_; i++)
128         {
129             mdAtoms_.cTC[i] = 0;
130         }
131         kineticEnergyData_.ngtc = 1;
132         t_grp_tcstat temperatureCouplingGroupData;
133         temperatureCouplingGroupData.lambda = 1.0;
134         kineticEnergyData_.tcstat.emplace_back(temperatureCouplingGroupData);
135     }
136     else
137     {
138         inputRecord_.etc = etcYES;
139         for (int i = 0; i < numAtoms_; i++)
140         {
141             mdAtoms_.cTC[i] = i % numTCoupleGroups_;
142         }
143         kineticEnergyData_.ngtc = numTCoupleGroups_;
144         for (int i = 0; i < numTCoupleGroups; i++)
145         {
146             real         tCoupleLambda = 1.0 - (i + 1.0) / 10.0;
147             t_grp_tcstat temperatureCouplingGroupData;
148             temperatureCouplingGroupData.lambda = tCoupleLambda;
149             kineticEnergyData_.tcstat.emplace_back(temperatureCouplingGroupData);
150         }
151     }
152
153     inputRecord_.eI      = eiMD;
154     inputRecord_.delta_t = timestep_;
155
156     state_.flags = 0;
157
158     state_.box[XX][XX] = 10.0;
159     state_.box[XX][YY] = 0.0;
160     state_.box[XX][ZZ] = 0.0;
161
162     state_.box[YY][XX] = 0.0;
163     state_.box[YY][YY] = 10.0;
164     state_.box[YY][ZZ] = 0.0;
165
166     state_.box[ZZ][XX] = 0.0;
167     state_.box[ZZ][YY] = 0.0;
168     state_.box[ZZ][ZZ] = 10.0;
169
170     kineticEnergyData_.bNEMD            = false;
171     kineticEnergyData_.cosacc.cos_accel = 0.0;
172
173     kineticEnergyData_.nthreads = 1;
174     snew(kineticEnergyData_.ekin_work_alloc, kineticEnergyData_.nthreads);
175     snew(kineticEnergyData_.ekin_work, kineticEnergyData_.nthreads);
176     snew(kineticEnergyData_.dekindl_work, kineticEnergyData_.nthreads);
177
178     mdAtoms_.homenr                   = numAtoms_;
179     mdAtoms_.haveVsites               = false;
180     mdAtoms_.havePartiallyFrozenAtoms = false;
181     mdAtoms_.cFREEZE                  = nullptr;
182
183     update_ = std::make_unique<Update>(&inputRecord_, nullptr);
184     update_->setNumAtoms(numAtoms);
185
186     doPressureCouple_ = (nstpcouple != 0);
187
188     if (doPressureCouple_)
189     {
190         inputRecord_.epc        = epcPARRINELLORAHMAN;
191         inputRecord_.nstpcouple = nstpcouple;
192         dtPressureCouple_       = inputRecord_.nstpcouple * inputRecord_.delta_t;
193
194         velocityScalingMatrix_[XX][XX] = 1.2;
195         velocityScalingMatrix_[XX][YY] = 0.0;
196         velocityScalingMatrix_[XX][ZZ] = 0.0;
197
198         velocityScalingMatrix_[YY][XX] = 0.0;
199         velocityScalingMatrix_[YY][YY] = 0.8;
200         velocityScalingMatrix_[YY][ZZ] = 0.0;
201
202         velocityScalingMatrix_[ZZ][XX] = 0.0;
203         velocityScalingMatrix_[ZZ][YY] = 0.0;
204         velocityScalingMatrix_[ZZ][ZZ] = 0.9;
205     }
206     else
207     {
208         inputRecord_.epc               = epcNO;
209         velocityScalingMatrix_[XX][XX] = 1.0;
210         velocityScalingMatrix_[XX][YY] = 0.0;
211         velocityScalingMatrix_[XX][ZZ] = 0.0;
212
213         velocityScalingMatrix_[YY][XX] = 0.0;
214         velocityScalingMatrix_[YY][YY] = 1.0;
215         velocityScalingMatrix_[YY][ZZ] = 0.0;
216
217         velocityScalingMatrix_[ZZ][XX] = 0.0;
218         velocityScalingMatrix_[ZZ][YY] = 0.0;
219         velocityScalingMatrix_[ZZ][ZZ] = 1.0;
220     }
221 }
222
223 LeapFrogTestData::~LeapFrogTestData()
224 {
225     sfree(mdAtoms_.cTC);
226 }
227
228 } // namespace test
229 } // namespace gmx