Add a fourth coordinate to virial tests
[alexxy/gromacs.git] / src / gromacs / mdlib / tests / calcvir.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 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 Tests for virial calculation.
37  *
38  * \author Joe Jordan <ejjordan@kth.se>
39  */
40 #include "gmxpre.h"
41
42 #include "gromacs/mdlib/calcvir.h"
43
44 #include <gtest/gtest.h>
45
46 #include "testutils/refdata.h"
47 #include "testutils/testasserts.h"
48
49 namespace gmx
50 {
51 namespace test
52 {
53 namespace
54 {
55
56
57 class CalcvirTest : public ::testing::Test
58 {
59 public:
60     TestReferenceData      refData_;
61     TestReferenceChecker   checker_;
62     std::vector<gmx::RVec> coordinates_;
63     std::vector<gmx::RVec> forces_;
64     int                    numVirialAtoms_;
65     tensor                 virial_{ { 0 } };
66     FloatingPointTolerance tolerances =
67             FloatingPointTolerance(1e-16, 1.0e-16, 1e-16, 1.0e-7, 1000, 100, false);
68
69     CalcvirTest() :
70         checker_(refData_.rootChecker()),
71         coordinates_{ { 1, 2, 3 },
72                       {
73                               4,
74                               5,
75                               6,
76                       },
77                       { 7, 8, 9 },
78                       { 1, 5, 9 } },
79         forces_{ { 0.9, 0.1, 0.3 }, { 0.4, 0.7, 0.2 }, { 0.5, 1, 0.6 }, { 0.9, 0.7, 0.6 } },
80         numVirialAtoms_(coordinates_.size())
81     {
82         checker_.setDefaultTolerance(tolerances);
83     }
84
85 private:
86 };
87
88 TEST_F(CalcvirTest, CanCalculateVirialAllAtomsInBox)
89 {
90     calc_vir(numVirialAtoms_, as_rvec_array(coordinates_.data()), as_rvec_array(forces_.data()), virial_, false, nullptr);
91
92     checker_.checkVector(virial_[0], "Virial x");
93     checker_.checkVector(virial_[1], "Virial y");
94     checker_.checkVector(virial_[2], "Virial z");
95 }
96
97 TEST_F(CalcvirTest, CanCalculateVirialAllAtomsInBoxScrew)
98 {
99
100     const matrix box = { { 10, 0, 0 }, { 0, 12, 0 }, { 0, 0, 14 } };
101     calc_vir(numVirialAtoms_, as_rvec_array(coordinates_.data()), as_rvec_array(forces_.data()), virial_, true, box);
102
103     checker_.checkVector(virial_[0], "Virial x");
104     checker_.checkVector(virial_[1], "Virial y");
105     checker_.checkVector(virial_[2], "Virial z");
106 }
107
108 TEST_F(CalcvirTest, CanCalculateVirialAtomsOutOfBoxScrewX)
109 {
110
111     const matrix box = { { 5, 0, 0 }, { 0, 10, 0 }, { 0, 0, 12 } };
112     calc_vir(numVirialAtoms_, as_rvec_array(coordinates_.data()), as_rvec_array(forces_.data()), virial_, true, box);
113
114     checker_.checkVector(virial_[0], "Virial x");
115     checker_.checkVector(virial_[1], "Virial y");
116     checker_.checkVector(virial_[2], "Virial z");
117 }
118
119 TEST_F(CalcvirTest, CanCalculateVirialAtomsOutOfBoxScrewY)
120 {
121
122     const matrix box = { { 10, 0, 0 }, { 0, 5, 0 }, { 0, 0, 12 } };
123     calc_vir(numVirialAtoms_, as_rvec_array(coordinates_.data()), as_rvec_array(forces_.data()), virial_, true, box);
124
125     checker_.checkVector(virial_[0], "Virial x");
126     checker_.checkVector(virial_[1], "Virial y");
127     checker_.checkVector(virial_[2], "Virial z");
128 }
129
130 TEST_F(CalcvirTest, CanCalculateVirialAtomsOutOfBoxScrewZ)
131 {
132
133     const matrix box = { { 10, 0, 0 }, { 0, 12, 0 }, { 0, 0, 5 } };
134     calc_vir(numVirialAtoms_, as_rvec_array(coordinates_.data()), as_rvec_array(forces_.data()), virial_, true, box);
135
136     checker_.checkVector(virial_[0], "Virial x");
137     checker_.checkVector(virial_[1], "Virial y");
138     checker_.checkVector(virial_[2], "Virial z");
139 }
140
141 TEST_F(CalcvirTest, CanCalculateVirialAtomsOutOfBoxScrewXYZ)
142 {
143
144     const matrix box = { { 4, 0, 0 }, { 0, 5, 0 }, { 0, 0, 6 } };
145     calc_vir(numVirialAtoms_, as_rvec_array(coordinates_.data()), as_rvec_array(forces_.data()), virial_, true, box);
146
147     checker_.checkVector(virial_[0], "Virial x");
148     checker_.checkVector(virial_[1], "Virial y");
149     checker_.checkVector(virial_[2], "Virial z");
150 }
151
152 } // namespace
153 } // namespace test
154 } // namespace gmx