Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / mdlib / vcm.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5  * Copyright (c) 2001-2004, The GROMACS development team.
6  * Copyright (c) 2013,2014,2015,2016,2017,2018,2019, by the GROMACS development team, led by
7  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8  * and including many others, as listed in the AUTHORS file in the
9  * top-level source directory and at http://www.gromacs.org.
10  *
11  * GROMACS is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public License
13  * as published by the Free Software Foundation; either version 2.1
14  * of the License, or (at your option) any later version.
15  *
16  * GROMACS is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with GROMACS; if not, see
23  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
25  *
26  * If you want to redistribute modifications to GROMACS, please
27  * consider that scientific software is very special. Version
28  * control is crucial - bugs must be traceable. We will be happy to
29  * consider code for inclusion in the official distribution, but
30  * derived work must not be called official GROMACS. Details are found
31  * in the README & COPYING files - if they are missing, get the
32  * official version at http://www.gromacs.org.
33  *
34  * To help us fund GROMACS development, we humbly ask that you cite
35  * the research papers on the package. Check out http://www.gromacs.org.
36  */
37 #ifndef GMX_MDLIB_VCM_H
38 #define GMX_MDLIB_VCM_H
39
40 #include <stdio.h>
41
42 #include <vector>
43
44 #include "gromacs/math/vectypes.h"
45 #include "gromacs/mdtypes/mdatom.h"
46 #include "gromacs/utility/basedefinitions.h"
47 #include "gromacs/utility/real.h"
48
49 struct SimulationGroups;
50 struct t_inputrec;
51 struct t_mdatoms;
52
53 struct t_vcm_thread
54 {
55     //! Linear momentum
56     rvec p = { 0 };
57     //! Center of mass
58     rvec x = { 0 };
59     //! Angular momentum
60     rvec j = { 0 };
61     //! Moment of inertia
62     tensor i = { { 0 } };
63     //! Mass
64     real mass = 0;
65 };
66
67 struct t_vcm
68 {
69     //! Number of groups
70     int nr = 0;
71     //! Size of group arrays
72     int size = 0;
73     //! Stride for thread data
74     int stride = 0;
75     //! One of the enums above
76     int mode = 0;
77     //! The number of dimensions for corr.
78     int ndim = 0;
79     //! The time step for COMM removal
80     real timeStep = 0;
81     //! Number of degrees of freedom
82     std::vector<real> group_ndf;
83     //! Mass per group
84     std::vector<real> group_mass;
85     //! Linear momentum per group
86     std::vector<gmx::RVec> group_p;
87     //! Linear velocity per group
88     std::vector<gmx::RVec> group_v;
89     //! Center of mass per group
90     std::vector<gmx::RVec> group_x;
91     //! Angular momentum per group
92     std::vector<gmx::RVec> group_j;
93     //! Angular velocity (omega)
94     std::vector<gmx::RVec> group_w;
95     //! Moment of inertia per group
96     tensor* group_i = nullptr;
97     //! These two are copies to pointers in
98     std::vector<char*> group_name;
99     //! Tells whether dimensions are frozen per freeze group
100     ivec* nFreeze = nullptr;
101     //! Temporary data per thread and group
102     std::vector<t_vcm_thread> thread_vcm;
103
104     //! Tell whether the integrator conserves momentum
105     bool integratorConservesMomentum = false;
106
107     t_vcm(const SimulationGroups& groups, const t_inputrec& ir);
108     ~t_vcm();
109 };
110
111 /* print COM removal info to log */
112 void reportComRemovalInfo(FILE* fp, const t_vcm& vcm);
113
114
115 /* Do a per group center of mass things */
116 void calc_vcm_grp(const t_mdatoms& md, const rvec x[], const rvec v[], t_vcm* vcm);
117
118 /* Set the COM velocity to zero and potentially correct the COM position.
119  *
120  * Processes the kinetic energy reduced over MPI before removing COM motion.
121  * With mode linear, nullptr can be passed for x.
122  * With acceleration correction nullptr should be passed for x at initialization
123  * and a pointer to the coordinates at normal MD steps.
124  * When fplog != nullptr, a warning is printed to fplog with high COM velocity.
125  */
126 void process_and_stopcm_grp(FILE* fplog, t_vcm* vcm, const t_mdatoms& mdatoms, rvec x[], rvec v[]);
127
128 #endif