Refactor md_enums
[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,2020,2021, 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 = TemperatureCoupling::No;
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 = TemperatureCoupling::Yes;
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      = IntegrationAlgorithm::MD;
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_.cosacc.cos_accel = 0.0;
171
172     kineticEnergyData_.nthreads = 1;
173     snew(kineticEnergyData_.ekin_work_alloc, kineticEnergyData_.nthreads);
174     snew(kineticEnergyData_.ekin_work, kineticEnergyData_.nthreads);
175     snew(kineticEnergyData_.dekindl_work, kineticEnergyData_.nthreads);
176
177     mdAtoms_.homenr                   = numAtoms_;
178     mdAtoms_.haveVsites               = false;
179     mdAtoms_.havePartiallyFrozenAtoms = false;
180     mdAtoms_.cFREEZE                  = nullptr;
181
182     update_ = std::make_unique<Update>(inputRecord_, nullptr);
183     update_->setNumAtoms(numAtoms);
184
185     doPressureCouple_ = (nstpcouple != 0);
186
187     if (doPressureCouple_)
188     {
189         inputRecord_.epc        = PressureCoupling::ParrinelloRahman;
190         inputRecord_.nstpcouple = nstpcouple;
191         dtPressureCouple_       = inputRecord_.nstpcouple * inputRecord_.delta_t;
192
193         velocityScalingMatrix_[XX][XX] = 1.2;
194         velocityScalingMatrix_[XX][YY] = 0.0;
195         velocityScalingMatrix_[XX][ZZ] = 0.0;
196
197         velocityScalingMatrix_[YY][XX] = 0.0;
198         velocityScalingMatrix_[YY][YY] = 0.8;
199         velocityScalingMatrix_[YY][ZZ] = 0.0;
200
201         velocityScalingMatrix_[ZZ][XX] = 0.0;
202         velocityScalingMatrix_[ZZ][YY] = 0.0;
203         velocityScalingMatrix_[ZZ][ZZ] = 0.9;
204     }
205     else
206     {
207         inputRecord_.epc               = PressureCoupling::No;
208         velocityScalingMatrix_[XX][XX] = 1.0;
209         velocityScalingMatrix_[XX][YY] = 0.0;
210         velocityScalingMatrix_[XX][ZZ] = 0.0;
211
212         velocityScalingMatrix_[YY][XX] = 0.0;
213         velocityScalingMatrix_[YY][YY] = 1.0;
214         velocityScalingMatrix_[YY][ZZ] = 0.0;
215
216         velocityScalingMatrix_[ZZ][XX] = 0.0;
217         velocityScalingMatrix_[ZZ][YY] = 0.0;
218         velocityScalingMatrix_[ZZ][ZZ] = 1.0;
219     }
220 }
221
222 LeapFrogTestData::~LeapFrogTestData()
223 {
224     sfree(mdAtoms_.cTC);
225 }
226
227 } // namespace test
228 } // namespace gmx