Add nblib backend: Part 1 of 2
[alexxy/gromacs.git] / api / nblib / util / user.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2020, 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  * Implements nblib utility functions
38  *
39  * \author Victor Holanda <victor.holanda@cscs.ch>
40  * \author Joe Jordan <ejjordan@kth.se>
41  * \author Prashanth Kanduri <kanduri@cscs.ch>
42  * \author Sebastian Keller <keller@cscs.ch>
43  * \author Artem Zhmurov <zhmurov@gmail.com>
44  */
45
46 #include "nblib/util/user.h"
47 #include "gromacs/random/tabulatednormaldistribution.h"
48 #include "gromacs/random/threefry.h"
49 #include "gromacs/utility/fatalerror.h"
50
51 namespace nblib
52 {
53
54 namespace detail
55 {
56
57 std::string next_token(std::string& s, const std::string& delimiter)
58 {
59     std::string token = s.substr(0, s.find(delimiter));
60
61     std::size_t next = s.find(delimiter);
62     if (next == std::string::npos)
63         s.clear();
64     else
65         s.erase(0, next + delimiter.length());
66
67     return token;
68 }
69
70 } // namespace detail
71
72 //! Generates an array of particle velocities based on the Maxwell-Boltzmann distribution
73 //! using temperature, masses and a random number generator
74 static std::vector<Vec3> low_mspeed(real tempi, std::vector<real> const& masses, gmx::ThreeFry2x64<>* rng)
75 {
76     int                                    nrdf;
77     real                                   boltz;
78     real                                   ekin, temp;
79     gmx::TabulatedNormalDistribution<real> normalDist;
80
81     std::vector<Vec3> velocities(masses.size());
82
83     boltz = BOLTZ * tempi;
84     ekin  = 0.0;
85     nrdf  = 0;
86     for (size_t i = 0; i < masses.size(); i++)
87     {
88         real mass = masses[i];
89         if (mass > 0)
90         {
91             rng->restart(i, 0);
92             real sd = std::sqrt(boltz / mass);
93             for (int m = 0; (m < dimSize); m++)
94             {
95                 velocities[i][m] = sd * normalDist(*rng);
96                 ekin += 0.5 * mass * velocities[i][m] * velocities[i][m];
97             }
98             nrdf += dimSize;
99         }
100     }
101     temp = (2.0 * ekin) / (nrdf * BOLTZ);
102     if (temp > 0)
103     {
104         real scal = std::sqrt(tempi / temp);
105         for (auto& vel : velocities)
106         {
107             for (int m = 0; (m < dimSize); m++)
108             {
109                 vel[m] *= scal;
110             }
111         }
112     }
113     fprintf(stderr, "Velocities were taken from a Maxwell distribution at %g K\n", tempi);
114     if (debug)
115     {
116         fprintf(debug,
117                 "Velocities were taken from a Maxwell distribution\n"
118                 "Initial generated temperature: %12.5e (scaled to: %12.5e)\n",
119                 temp, tempi);
120     }
121
122     return velocities;
123 }
124
125 //! Generate velocities from a Maxwell Boltzmann distribution, masses should be the
126 //! same as the ones specified for the Topology object
127 std::vector<Vec3> generateVelocity(real tempi, unsigned int seed, std::vector<real> const& masses)
128 {
129
130     if (seed == 0)
131     {
132         seed = static_cast<int>(gmx::makeRandomSeed());
133         fprintf(stderr, "Using random seed %u for generating velocities\n", seed);
134     }
135     gmx::ThreeFry2x64<> rng(seed, gmx::RandomDomain::MaxwellVelocities);
136
137     return low_mspeed(tempi, masses, &rng);
138 }
139
140 //! Check within the container of gmx::RVecs for a NaN or inf
141 bool checkNumericValues(const std::vector<Vec3>& values)
142 {
143     for (auto val : values)
144     {
145         for (int m = 0; (m < dimSize); m++)
146         {
147             if (std::isnan(val[m]) or std::isinf(val[m]))
148             {
149                 return false;
150             }
151         }
152     }
153     return true;
154 }
155
156 } // namespace nblib