Fix random typos
[alexxy/gromacs.git] / src / gromacs / mdlib / forcerec.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 The GROMACS development team.
7  * Copyright (c) 2018,2019,2020,2021, by the GROMACS development team, led by
8  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
9  * and including many others, as listed in the AUTHORS file in the
10  * top-level source directory and at http://www.gromacs.org.
11  *
12  * GROMACS is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU Lesser General Public License
14  * as published by the Free Software Foundation; either version 2.1
15  * of the License, or (at your option) any later version.
16  *
17  * GROMACS is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20  * Lesser General Public License for more details.
21  *
22  * You should have received a copy of the GNU Lesser General Public
23  * License along with GROMACS; if not, see
24  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
26  *
27  * If you want to redistribute modifications to GROMACS, please
28  * consider that scientific software is very special. Version
29  * control is crucial - bugs must be traceable. We will be happy to
30  * consider code for inclusion in the official distribution, but
31  * derived work must not be called official GROMACS. Details are found
32  * in the README & COPYING files - if they are missing, get the
33  * official version at http://www.gromacs.org.
34  *
35  * To help us fund GROMACS development, we humbly ask that you cite
36  * the research papers on the package. Check out http://www.gromacs.org.
37  */
38 #ifndef GMX_MDLIB_FORCEREC_H
39 #define GMX_MDLIB_FORCEREC_H
40
41 #include "gromacs/math/vec.h"
42 #include "gromacs/timing/wallcycle.h"
43 #include "gromacs/utility/arrayref.h"
44
45 struct gmx_hw_info_t;
46 struct t_commrec;
47 struct t_forcerec;
48 struct t_filenm;
49 struct t_inputrec;
50 struct gmx_localtop_t;
51 struct gmx_mtop_t;
52 struct gmx_wallcycle;
53 struct interaction_const_t;
54 union t_iparams;
55 enum class LongRangeVdW : int;
56
57 namespace gmx
58 {
59 class MDLogger;
60 class PhysicalNodeCommunicator;
61 class SimulationWorkload;
62 } // namespace gmx
63
64 /*! \brief Create nonbonded parameter lists
65  *
66  * \param[in] numAtomTypes           The number of atom types
67  * \param[in] iparams                The LJ parameters
68  * \param[in] useBuckinghamPotential Use Buckingham potential
69  */
70 std::vector<real> makeNonBondedParameterLists(int                            numAtomTypes,
71                                               gmx::ArrayRef<const t_iparams> iparams,
72                                               bool useBuckinghamPotential);
73
74 /*! \brief Calculate c6 parameters for grid correction
75  *
76  * \param[in] numAtomTypes           The number of atom types
77  * \param[in] iparams                The LJ parameters
78  * \param[in] ljpme_combination_rule How long range LJ is treated
79  */
80 std::vector<real> makeLJPmeC6GridCorrectionParameters(int                            numAtomTypes,
81                                                       gmx::ArrayRef<const t_iparams> iparams,
82                                                       LongRangeVdW ljpme_combination_rule);
83
84 /*! \brief Set the number of charge groups and atoms.
85  *
86  * The force calculation needs information on which atoms it
87  * should do work.
88  * \param[inout] fr                  The forcerec
89  * \param[in]    natoms_force        Number of atoms to compute force on
90  * \param[in]    natoms_force_constr Number of atoms involved in constraints
91  * \param[in]    natoms_f_novirsum   Number of atoms for which
92  *                                   force is to be compute but no virial
93  */
94 void forcerec_set_ranges(t_forcerec* fr, int natoms_force, int natoms_force_constr, int natoms_f_novirsum);
95
96 /*! \brief Initiate table constants
97  *
98  * Initializes the tables in the interaction constant data structure.
99  * \param[in] fp                     File for debugging output
100  * \param[in] ic                     Structure holding the table constant
101  * \param[in] rlist                  Length of the neighbour list
102  * \param[in] tableExtensionLength   Length by which to extend the tables. Taken from the input record.
103  */
104 void init_interaction_const_tables(FILE* fp, interaction_const_t* ic, real rlist, real tableExtensionLength);
105
106 /*! \brief Initialize forcerec structure.
107  *
108  * \param[in]  fplog              File for printing
109  * \param[in]  mdlog              File for printing
110  * \param[out] forcerec                 The forcerec
111  * \param[in]  simulationWork           Simulation workload flags
112  * \param[in]  inputrec                 Inputrec structure
113  * \param[in]  mtop               Molecular topology
114  * \param[in]  commrec                 Communication structures
115  * \param[in]  box                Simulation box
116  * \param[in]  tabfn              Table potential file for non-bonded interactions
117  * \param[in]  tabpfn             Table potential file for pair interactions
118  * \param[in]  tabbfnm            Table potential files for bonded interactions
119  * \param[in]  print_force        Print forces for atoms with force >= print_force
120  */
121 void init_forcerec(FILE*                            fplog,
122                    const gmx::MDLogger&             mdlog,
123                    const gmx::SimulationWorkload&   simulationWork,
124                    t_forcerec*                      forcerec,
125                    const t_inputrec&                inputrec,
126                    const gmx_mtop_t&                mtop,
127                    const t_commrec*                 commrec,
128                    matrix                           box,
129                    const char*                      tabfn,
130                    const char*                      tabpfn,
131                    gmx::ArrayRef<const std::string> tabbfnm,
132                    real                             print_force);
133
134 #endif