Store wcycle pointer in nonbonded_verlet_t
[alexxy/gromacs.git] / src / gromacs / mdlib / forcerec.cpp
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 #include "gmxpre.h"
38
39 #include "forcerec.h"
40
41 #include "config.h"
42
43 #include <cassert>
44 #include <cmath>
45 #include <cstdlib>
46 #include <cstring>
47
48 #include <algorithm>
49 #include <memory>
50
51 #include "gromacs/commandline/filenm.h"
52 #include "gromacs/domdec/domdec.h"
53 #include "gromacs/domdec/domdec_struct.h"
54 #include "gromacs/ewald/ewald.h"
55 #include "gromacs/ewald/ewald_utils.h"
56 #include "gromacs/fileio/filetypes.h"
57 #include "gromacs/gmxlib/network.h"
58 #include "gromacs/gmxlib/nonbonded/nonbonded.h"
59 #include "gromacs/gpu_utils/gpu_utils.h"
60 #include "gromacs/hardware/hw_info.h"
61 #include "gromacs/listed_forces/gpubonded.h"
62 #include "gromacs/listed_forces/manage_threading.h"
63 #include "gromacs/listed_forces/pairs.h"
64 #include "gromacs/math/functions.h"
65 #include "gromacs/math/units.h"
66 #include "gromacs/math/utilities.h"
67 #include "gromacs/math/vec.h"
68 #include "gromacs/mdlib/dispersioncorrection.h"
69 #include "gromacs/mdlib/force.h"
70 #include "gromacs/mdlib/forcerec_threading.h"
71 #include "gromacs/mdlib/gmx_omp_nthreads.h"
72 #include "gromacs/mdlib/md_support.h"
73 #include "gromacs/mdlib/qmmm.h"
74 #include "gromacs/mdlib/rf_util.h"
75 #include "gromacs/mdlib/wall.h"
76 #include "gromacs/mdtypes/commrec.h"
77 #include "gromacs/mdtypes/fcdata.h"
78 #include "gromacs/mdtypes/group.h"
79 #include "gromacs/mdtypes/iforceprovider.h"
80 #include "gromacs/mdtypes/inputrec.h"
81 #include "gromacs/mdtypes/md_enums.h"
82 #include "gromacs/nbnxm/gpu_data_mgmt.h"
83 #include "gromacs/nbnxm/nbnxm.h"
84 #include "gromacs/nbnxm/nbnxm_geometry.h"
85 #include "gromacs/pbcutil/ishift.h"
86 #include "gromacs/pbcutil/pbc.h"
87 #include "gromacs/tables/forcetable.h"
88 #include "gromacs/topology/mtop_util.h"
89 #include "gromacs/trajectory/trajectoryframe.h"
90 #include "gromacs/utility/cstringutil.h"
91 #include "gromacs/utility/exceptions.h"
92 #include "gromacs/utility/fatalerror.h"
93 #include "gromacs/utility/gmxassert.h"
94 #include "gromacs/utility/logger.h"
95 #include "gromacs/utility/physicalnodecommunicator.h"
96 #include "gromacs/utility/pleasecite.h"
97 #include "gromacs/utility/smalloc.h"
98 #include "gromacs/utility/strconvert.h"
99
100 static real *mk_nbfp(const gmx_ffparams_t *idef, gmx_bool bBHAM)
101 {
102     real *nbfp;
103     int   i, j, k, atnr;
104
105     atnr = idef->atnr;
106     if (bBHAM)
107     {
108         snew(nbfp, 3*atnr*atnr);
109         for (i = k = 0; (i < atnr); i++)
110         {
111             for (j = 0; (j < atnr); j++, k++)
112             {
113                 BHAMA(nbfp, atnr, i, j) = idef->iparams[k].bham.a;
114                 BHAMB(nbfp, atnr, i, j) = idef->iparams[k].bham.b;
115                 /* nbfp now includes the 6.0 derivative prefactor */
116                 BHAMC(nbfp, atnr, i, j) = idef->iparams[k].bham.c*6.0;
117             }
118         }
119     }
120     else
121     {
122         snew(nbfp, 2*atnr*atnr);
123         for (i = k = 0; (i < atnr); i++)
124         {
125             for (j = 0; (j < atnr); j++, k++)
126             {
127                 /* nbfp now includes the 6.0/12.0 derivative prefactors */
128                 C6(nbfp, atnr, i, j)   = idef->iparams[k].lj.c6*6.0;
129                 C12(nbfp, atnr, i, j)  = idef->iparams[k].lj.c12*12.0;
130             }
131         }
132     }
133
134     return nbfp;
135 }
136
137 static real *make_ljpme_c6grid(const gmx_ffparams_t *idef, t_forcerec *fr)
138 {
139     int        i, j, k, atnr;
140     real       c6, c6i, c6j, c12i, c12j, epsi, epsj, sigmai, sigmaj;
141     real      *grid;
142
143     /* For LJ-PME simulations, we correct the energies with the reciprocal space
144      * inside of the cut-off. To do this the non-bonded kernels needs to have
145      * access to the C6-values used on the reciprocal grid in pme.c
146      */
147
148     atnr = idef->atnr;
149     snew(grid, 2*atnr*atnr);
150     for (i = k = 0; (i < atnr); i++)
151     {
152         for (j = 0; (j < atnr); j++, k++)
153         {
154             c6i  = idef->iparams[i*(atnr+1)].lj.c6;
155             c12i = idef->iparams[i*(atnr+1)].lj.c12;
156             c6j  = idef->iparams[j*(atnr+1)].lj.c6;
157             c12j = idef->iparams[j*(atnr+1)].lj.c12;
158             c6   = std::sqrt(c6i * c6j);
159             if (fr->ljpme_combination_rule == eljpmeLB
160                 && !gmx_numzero(c6) && !gmx_numzero(c12i) && !gmx_numzero(c12j))
161             {
162                 sigmai = gmx::sixthroot(c12i / c6i);
163                 sigmaj = gmx::sixthroot(c12j / c6j);
164                 epsi   = c6i * c6i / c12i;
165                 epsj   = c6j * c6j / c12j;
166                 c6     = std::sqrt(epsi * epsj) * gmx::power6(0.5*(sigmai+sigmaj));
167             }
168             /* Store the elements at the same relative positions as C6 in nbfp in order
169              * to simplify access in the kernels
170              */
171             grid[2*(atnr*i+j)] = c6*6.0;
172         }
173     }
174     return grid;
175 }
176
177 /* This routine sets fr->solvent_opt to the most common solvent in the
178  * system, e.g. esolSPC or esolTIP4P. It will also mark each charge group in
179  * the fr->solvent_type array with the correct type (or esolNO).
180  *
181  * Charge groups that fulfill the conditions but are not identical to the
182  * most common one will be marked as esolNO in the solvent_type array.
183  *
184  * TIP3p is identical to SPC for these purposes, so we call it
185  * SPC in the arrays (Apologies to Bill Jorgensen ;-)
186  *
187  * NOTE: QM particle should not
188  * become an optimized solvent. Not even if there is only one charge
189  * group in the Qm
190  */
191
192 typedef struct
193 {
194     int    model;
195     int    count;
196     int    vdwtype[4];
197     real   charge[4];
198 } solvent_parameters_t;
199
200 static void
201 check_solvent_cg(const gmx_moltype_t    *molt,
202                  int                     cg0,
203                  int                     nmol,
204                  const unsigned char    *qm_grpnr,
205                  const AtomGroupIndices *qm_grps,
206                  t_forcerec             *fr,
207                  int                    *n_solvent_parameters,
208                  solvent_parameters_t  **solvent_parameters_p,
209                  int                     cginfo,
210                  int                    *cg_sp)
211 {
212     t_atom               *atom;
213     int                   j, k;
214     int                   j0, j1, nj;
215     gmx_bool              perturbed;
216     gmx_bool              has_vdw[4];
217     gmx_bool              match;
218     real                  tmp_charge[4]  = { 0.0 }; /* init to zero to make gcc 7 happy */
219     int                   tmp_vdwtype[4] = { 0 };   /* init to zero to make gcc 7 happy */
220     int                   tjA;
221     gmx_bool              qm;
222     solvent_parameters_t *solvent_parameters;
223
224     /* We use a list with parameters for each solvent type.
225      * Every time we discover a new molecule that fulfills the basic
226      * conditions for a solvent we compare with the previous entries
227      * in these lists. If the parameters are the same we just increment
228      * the counter for that type, and otherwise we create a new type
229      * based on the current molecule.
230      *
231      * Once we've finished going through all molecules we check which
232      * solvent is most common, and mark all those molecules while we
233      * clear the flag on all others.
234      */
235
236     solvent_parameters = *solvent_parameters_p;
237
238     /* Mark the cg first as non optimized */
239     *cg_sp = -1;
240
241     /* Check if this cg has no exclusions with atoms in other charge groups
242      * and all atoms inside the charge group excluded.
243      * We only have 3 or 4 atom solvent loops.
244      */
245     if (GET_CGINFO_EXCL_INTER(cginfo) ||
246         !GET_CGINFO_EXCL_INTRA(cginfo))
247     {
248         return;
249     }
250
251     /* Get the indices of the first atom in this charge group */
252     j0     = molt->cgs.index[cg0];
253     j1     = molt->cgs.index[cg0+1];
254
255     /* Number of atoms in our molecule */
256     nj     = j1 - j0;
257
258     if (debug)
259     {
260         fprintf(debug,
261                 "Moltype '%s': there are %d atoms in this charge group\n",
262                 *molt->name, nj);
263     }
264
265     /* Check if it could be an SPC (3 atoms) or TIP4p (4) water,
266      * otherwise skip it.
267      */
268     if (nj < 3 || nj > 4)
269     {
270         return;
271     }
272
273     /* Check if we are doing QM on this group */
274     qm = FALSE;
275     if (qm_grpnr != nullptr)
276     {
277         for (j = j0; j < j1 && !qm; j++)
278         {
279             qm = (qm_grpnr[j] < qm_grps->size() - 1);
280         }
281     }
282     /* Cannot use solvent optimization with QM */
283     if (qm)
284     {
285         return;
286     }
287
288     atom = molt->atoms.atom;
289
290     /* Still looks like a solvent, time to check parameters */
291
292     /* If it is perturbed (free energy) we can't use the solvent loops,
293      * so then we just skip to the next molecule.
294      */
295     perturbed = FALSE;
296
297     for (j = j0; j < j1 && !perturbed; j++)
298     {
299         perturbed = PERTURBED(atom[j]);
300     }
301
302     if (perturbed)
303     {
304         return;
305     }
306
307     /* Now it's only a question if the VdW and charge parameters
308      * are OK. Before doing the check we compare and see if they are
309      * identical to a possible previous solvent type.
310      * First we assign the current types and charges.
311      */
312     for (j = 0; j < nj; j++)
313     {
314         tmp_vdwtype[j] = atom[j0+j].type;
315         tmp_charge[j]  = atom[j0+j].q;
316     }
317
318     /* Does it match any previous solvent type? */
319     for (k = 0; k < *n_solvent_parameters; k++)
320     {
321         match = TRUE;
322
323
324         /* We can only match SPC with 3 atoms and TIP4p with 4 atoms */
325         if ( (solvent_parameters[k].model == esolSPC   && nj != 3)  ||
326              (solvent_parameters[k].model == esolTIP4P && nj != 4) )
327         {
328             match = FALSE;
329         }
330
331         /* Check that types & charges match for all atoms in molecule */
332         for (j = 0; j < nj && match; j++)
333         {
334             if (tmp_vdwtype[j] != solvent_parameters[k].vdwtype[j])
335             {
336                 match = FALSE;
337             }
338             if (tmp_charge[j] != solvent_parameters[k].charge[j])
339             {
340                 match = FALSE;
341             }
342         }
343         if (match)
344         {
345             /* Congratulations! We have a matched solvent.
346              * Flag it with this type for later processing.
347              */
348             *cg_sp = k;
349             solvent_parameters[k].count += nmol;
350
351             /* We are done with this charge group */
352             return;
353         }
354     }
355
356     /* If we get here, we have a tentative new solvent type.
357      * Before we add it we must check that it fulfills the requirements
358      * of the solvent optimized loops. First determine which atoms have
359      * VdW interactions.
360      */
361     for (j = 0; j < nj; j++)
362     {
363         has_vdw[j] = FALSE;
364         tjA        = tmp_vdwtype[j];
365
366         /* Go through all other tpes and see if any have non-zero
367          * VdW parameters when combined with this one.
368          */
369         for (k = 0; k < fr->ntype && (!has_vdw[j]); k++)
370         {
371             /* We already checked that the atoms weren't perturbed,
372              * so we only need to check state A now.
373              */
374             if (fr->bBHAM)
375             {
376                 has_vdw[j] = (has_vdw[j] ||
377                               (BHAMA(fr->nbfp, fr->ntype, tjA, k) != 0.0) ||
378                               (BHAMB(fr->nbfp, fr->ntype, tjA, k) != 0.0) ||
379                               (BHAMC(fr->nbfp, fr->ntype, tjA, k) != 0.0));
380             }
381             else
382             {
383                 /* Standard LJ */
384                 has_vdw[j] = (has_vdw[j] ||
385                               (C6(fr->nbfp, fr->ntype, tjA, k)  != 0.0) ||
386                               (C12(fr->nbfp, fr->ntype, tjA, k) != 0.0));
387             }
388         }
389     }
390
391     /* Now we know all we need to make the final check and assignment. */
392     if (nj == 3)
393     {
394         /* So, is it an SPC?
395          * For this we require thatn all atoms have charge,
396          * the charges on atom 2 & 3 should be the same, and only
397          * atom 1 might have VdW.
398          */
399         if (!has_vdw[1] &&
400             !has_vdw[2] &&
401             tmp_charge[0]  != 0 &&
402             tmp_charge[1]  != 0 &&
403             tmp_charge[2]  == tmp_charge[1])
404         {
405             srenew(solvent_parameters, *n_solvent_parameters+1);
406             solvent_parameters[*n_solvent_parameters].model = esolSPC;
407             solvent_parameters[*n_solvent_parameters].count = nmol;
408             for (k = 0; k < 3; k++)
409             {
410                 solvent_parameters[*n_solvent_parameters].vdwtype[k] = tmp_vdwtype[k];
411                 solvent_parameters[*n_solvent_parameters].charge[k]  = tmp_charge[k];
412             }
413
414             *cg_sp = *n_solvent_parameters;
415             (*n_solvent_parameters)++;
416         }
417     }
418     else if (nj == 4)
419     {
420         /* Or could it be a TIP4P?
421          * For this we require thatn atoms 2,3,4 have charge, but not atom 1.
422          * Only atom 1 mght have VdW.
423          */
424         if (!has_vdw[1] &&
425             !has_vdw[2] &&
426             !has_vdw[3] &&
427             tmp_charge[0]  == 0 &&
428             tmp_charge[1]  != 0 &&
429             tmp_charge[2]  == tmp_charge[1] &&
430             tmp_charge[3]  != 0)
431         {
432             srenew(solvent_parameters, *n_solvent_parameters+1);
433             solvent_parameters[*n_solvent_parameters].model = esolTIP4P;
434             solvent_parameters[*n_solvent_parameters].count = nmol;
435             for (k = 0; k < 4; k++)
436             {
437                 solvent_parameters[*n_solvent_parameters].vdwtype[k] = tmp_vdwtype[k];
438                 solvent_parameters[*n_solvent_parameters].charge[k]  = tmp_charge[k];
439             }
440
441             *cg_sp = *n_solvent_parameters;
442             (*n_solvent_parameters)++;
443         }
444     }
445
446     *solvent_parameters_p = solvent_parameters;
447 }
448
449 static void
450 check_solvent(FILE  *                fp,
451               const gmx_mtop_t  *    mtop,
452               t_forcerec  *          fr,
453               cginfo_mb_t           *cginfo_mb)
454 {
455     const t_block     *   cgs;
456     const gmx_moltype_t  *molt;
457     int                   mol, cg_mol, at_offset, am, cgm, i, nmol_ch, nmol;
458     int                   n_solvent_parameters;
459     solvent_parameters_t *solvent_parameters;
460     int                 **cg_sp;
461     int                   bestsp, bestsol;
462
463     if (debug)
464     {
465         fprintf(debug, "Going to determine what solvent types we have.\n");
466     }
467
468     n_solvent_parameters = 0;
469     solvent_parameters   = nullptr;
470     /* Allocate temporary array for solvent type */
471     snew(cg_sp, mtop->molblock.size());
472
473     at_offset = 0;
474     for (size_t mb = 0; mb < mtop->molblock.size(); mb++)
475     {
476         molt = &mtop->moltype[mtop->molblock[mb].type];
477         cgs  = &molt->cgs;
478         /* Here we have to loop over all individual molecules
479          * because we need to check for QMMM particles.
480          */
481         snew(cg_sp[mb], cginfo_mb[mb].cg_mod);
482         nmol_ch = cginfo_mb[mb].cg_mod/cgs->nr;
483         nmol    = mtop->molblock[mb].nmol/nmol_ch;
484         for (mol = 0; mol < nmol_ch; mol++)
485         {
486             cgm = mol*cgs->nr;
487             am  = mol*cgs->index[cgs->nr];
488             for (cg_mol = 0; cg_mol < cgs->nr; cg_mol++)
489             {
490                 check_solvent_cg(molt, cg_mol, nmol,
491                                  mtop->groups.groupNumbers[SimulationAtomGroupType::QuantumMechanics].empty() ?
492                                  nullptr : mtop->groups.groupNumbers[SimulationAtomGroupType::QuantumMechanics].data()+at_offset+am,
493                                  &mtop->groups.groups[SimulationAtomGroupType::QuantumMechanics],
494                                  fr,
495                                  &n_solvent_parameters, &solvent_parameters,
496                                  cginfo_mb[mb].cginfo[cgm+cg_mol],
497                                  &cg_sp[mb][cgm+cg_mol]);
498             }
499         }
500         at_offset += cgs->index[cgs->nr];
501     }
502
503     /* Puh! We finished going through all charge groups.
504      * Now find the most common solvent model.
505      */
506
507     /* Most common solvent this far */
508     bestsp = -2;
509     for (i = 0; i < n_solvent_parameters; i++)
510     {
511         if (bestsp == -2 ||
512             solvent_parameters[i].count > solvent_parameters[bestsp].count)
513         {
514             bestsp = i;
515         }
516     }
517
518     if (bestsp >= 0)
519     {
520         bestsol = solvent_parameters[bestsp].model;
521     }
522     else
523     {
524         bestsol = esolNO;
525     }
526
527     fr->nWatMol = 0;
528     for (size_t mb = 0; mb < mtop->molblock.size(); mb++)
529     {
530         cgs  = &mtop->moltype[mtop->molblock[mb].type].cgs;
531         nmol = (mtop->molblock[mb].nmol*cgs->nr)/cginfo_mb[mb].cg_mod;
532         for (i = 0; i < cginfo_mb[mb].cg_mod; i++)
533         {
534             if (cg_sp[mb][i] == bestsp)
535             {
536                 SET_CGINFO_SOLOPT(cginfo_mb[mb].cginfo[i], bestsol);
537                 fr->nWatMol += nmol;
538             }
539             else
540             {
541                 SET_CGINFO_SOLOPT(cginfo_mb[mb].cginfo[i], esolNO);
542             }
543         }
544         sfree(cg_sp[mb]);
545     }
546     sfree(cg_sp);
547
548     if (bestsol != esolNO && fp != nullptr)
549     {
550         fprintf(fp, "\nEnabling %s-like water optimization for %d molecules.\n\n",
551                 esol_names[bestsol],
552                 solvent_parameters[bestsp].count);
553     }
554
555     sfree(solvent_parameters);
556     fr->solvent_opt = bestsol;
557 }
558
559 enum {
560     acNONE = 0, acCONSTRAINT, acSETTLE
561 };
562
563 static cginfo_mb_t *init_cginfo_mb(FILE *fplog, const gmx_mtop_t *mtop,
564                                    t_forcerec *fr, gmx_bool bNoSolvOpt,
565                                    gmx_bool *bFEP_NonBonded,
566                                    gmx_bool *bExcl_IntraCGAll_InterCGNone)
567 {
568     const t_block        *cgs;
569     const t_blocka       *excl;
570     const gmx_moltype_t  *molt;
571     const gmx_molblock_t *molb;
572     cginfo_mb_t          *cginfo_mb;
573     gmx_bool             *type_VDW;
574     int                  *cginfo;
575     int                   cg_offset, a_offset;
576     int                   m, cg, a0, a1, gid, ai, j, aj, excl_nalloc;
577     int                  *a_con;
578     int                   ftype;
579     int                   ia;
580     gmx_bool              bId, *bExcl, bExclIntraAll, bExclInter, bHaveVDW, bHaveQ, bHavePerturbedAtoms;
581
582     snew(cginfo_mb, mtop->molblock.size());
583
584     snew(type_VDW, fr->ntype);
585     for (ai = 0; ai < fr->ntype; ai++)
586     {
587         type_VDW[ai] = FALSE;
588         for (j = 0; j < fr->ntype; j++)
589         {
590             type_VDW[ai] = type_VDW[ai] ||
591                 fr->bBHAM ||
592                 C6(fr->nbfp, fr->ntype, ai, j) != 0 ||
593                 C12(fr->nbfp, fr->ntype, ai, j) != 0;
594         }
595     }
596
597     *bFEP_NonBonded               = FALSE;
598     *bExcl_IntraCGAll_InterCGNone = TRUE;
599
600     excl_nalloc = 10;
601     snew(bExcl, excl_nalloc);
602     cg_offset = 0;
603     a_offset  = 0;
604     for (size_t mb = 0; mb < mtop->molblock.size(); mb++)
605     {
606         molb = &mtop->molblock[mb];
607         molt = &mtop->moltype[molb->type];
608         cgs  = &molt->cgs;
609         excl = &molt->excls;
610
611         /* Check if the cginfo is identical for all molecules in this block.
612          * If so, we only need an array of the size of one molecule.
613          * Otherwise we make an array of #mol times #cgs per molecule.
614          */
615         bId = TRUE;
616         for (m = 0; m < molb->nmol; m++)
617         {
618             int am = m*cgs->index[cgs->nr];
619             for (cg = 0; cg < cgs->nr; cg++)
620             {
621                 a0 = cgs->index[cg];
622                 a1 = cgs->index[cg+1];
623                 if (getGroupType(mtop->groups, SimulationAtomGroupType::QuantumMechanics, a_offset+am+a0) !=
624                     getGroupType(mtop->groups, SimulationAtomGroupType::QuantumMechanics, a_offset   +a0))
625                 {
626                     bId = FALSE;
627                 }
628                 if (!mtop->groups.groupNumbers[SimulationAtomGroupType::QuantumMechanics].empty())
629                 {
630                     for (ai = a0; ai < a1; ai++)
631                     {
632                         if (mtop->groups.groupNumbers[SimulationAtomGroupType::QuantumMechanics][a_offset+am+ai] !=
633                             mtop->groups.groupNumbers[SimulationAtomGroupType::QuantumMechanics][a_offset   +ai])
634                         {
635                             bId = FALSE;
636                         }
637                     }
638                 }
639             }
640         }
641
642         cginfo_mb[mb].cg_start = cg_offset;
643         cginfo_mb[mb].cg_end   = cg_offset + molb->nmol*cgs->nr;
644         cginfo_mb[mb].cg_mod   = (bId ? 1 : molb->nmol)*cgs->nr;
645         snew(cginfo_mb[mb].cginfo, cginfo_mb[mb].cg_mod);
646         cginfo = cginfo_mb[mb].cginfo;
647
648         /* Set constraints flags for constrained atoms */
649         snew(a_con, molt->atoms.nr);
650         for (ftype = 0; ftype < F_NRE; ftype++)
651         {
652             if (interaction_function[ftype].flags & IF_CONSTRAINT)
653             {
654                 int nral;
655
656                 nral = NRAL(ftype);
657                 for (ia = 0; ia < molt->ilist[ftype].size(); ia += 1+nral)
658                 {
659                     int a;
660
661                     for (a = 0; a < nral; a++)
662                     {
663                         a_con[molt->ilist[ftype].iatoms[ia+1+a]] =
664                             (ftype == F_SETTLE ? acSETTLE : acCONSTRAINT);
665                     }
666                 }
667             }
668         }
669
670         for (m = 0; m < (bId ? 1 : molb->nmol); m++)
671         {
672             int cgm = m*cgs->nr;
673             int am  = m*cgs->index[cgs->nr];
674             for (cg = 0; cg < cgs->nr; cg++)
675             {
676                 a0 = cgs->index[cg];
677                 a1 = cgs->index[cg+1];
678
679                 /* Store the energy group in cginfo */
680                 gid = getGroupType(mtop->groups, SimulationAtomGroupType::EnergyOutput, a_offset+am+a0);
681                 SET_CGINFO_GID(cginfo[cgm+cg], gid);
682
683                 /* Check the intra/inter charge group exclusions */
684                 if (a1-a0 > excl_nalloc)
685                 {
686                     excl_nalloc = a1 - a0;
687                     srenew(bExcl, excl_nalloc);
688                 }
689                 /* bExclIntraAll: all intra cg interactions excluded
690                  * bExclInter:    any inter cg interactions excluded
691                  */
692                 bExclIntraAll       = TRUE;
693                 bExclInter          = FALSE;
694                 bHaveVDW            = FALSE;
695                 bHaveQ              = FALSE;
696                 bHavePerturbedAtoms = FALSE;
697                 for (ai = a0; ai < a1; ai++)
698                 {
699                     /* Check VDW and electrostatic interactions */
700                     bHaveVDW = bHaveVDW || (type_VDW[molt->atoms.atom[ai].type] ||
701                                             type_VDW[molt->atoms.atom[ai].typeB]);
702                     bHaveQ  = bHaveQ    || (molt->atoms.atom[ai].q != 0 ||
703                                             molt->atoms.atom[ai].qB != 0);
704
705                     bHavePerturbedAtoms = bHavePerturbedAtoms || (PERTURBED(molt->atoms.atom[ai]) != 0);
706
707                     /* Clear the exclusion list for atom ai */
708                     for (aj = a0; aj < a1; aj++)
709                     {
710                         bExcl[aj-a0] = FALSE;
711                     }
712                     /* Loop over all the exclusions of atom ai */
713                     for (j = excl->index[ai]; j < excl->index[ai+1]; j++)
714                     {
715                         aj = excl->a[j];
716                         if (aj < a0 || aj >= a1)
717                         {
718                             bExclInter = TRUE;
719                         }
720                         else
721                         {
722                             bExcl[aj-a0] = TRUE;
723                         }
724                     }
725                     /* Check if ai excludes a0 to a1 */
726                     for (aj = a0; aj < a1; aj++)
727                     {
728                         if (!bExcl[aj-a0])
729                         {
730                             bExclIntraAll = FALSE;
731                         }
732                     }
733
734                     switch (a_con[ai])
735                     {
736                         case acCONSTRAINT:
737                             SET_CGINFO_CONSTR(cginfo[cgm+cg]);
738                             break;
739                         case acSETTLE:
740                             SET_CGINFO_SETTLE(cginfo[cgm+cg]);
741                             break;
742                         default:
743                             break;
744                     }
745                 }
746                 if (bExclIntraAll)
747                 {
748                     SET_CGINFO_EXCL_INTRA(cginfo[cgm+cg]);
749                 }
750                 if (bExclInter)
751                 {
752                     SET_CGINFO_EXCL_INTER(cginfo[cgm+cg]);
753                 }
754                 if (a1 - a0 > MAX_CHARGEGROUP_SIZE)
755                 {
756                     /* The size in cginfo is currently only read with DD */
757                     gmx_fatal(FARGS, "A charge group has size %d which is larger than the limit of %d atoms", a1-a0, MAX_CHARGEGROUP_SIZE);
758                 }
759                 if (bHaveVDW)
760                 {
761                     SET_CGINFO_HAS_VDW(cginfo[cgm+cg]);
762                 }
763                 if (bHaveQ)
764                 {
765                     SET_CGINFO_HAS_Q(cginfo[cgm+cg]);
766                 }
767                 if (bHavePerturbedAtoms && fr->efep != efepNO)
768                 {
769                     SET_CGINFO_FEP(cginfo[cgm+cg]);
770                     *bFEP_NonBonded = TRUE;
771                 }
772                 /* Store the charge group size */
773                 SET_CGINFO_NATOMS(cginfo[cgm+cg], a1-a0);
774
775                 if (!bExclIntraAll || bExclInter)
776                 {
777                     *bExcl_IntraCGAll_InterCGNone = FALSE;
778                 }
779             }
780         }
781
782         sfree(a_con);
783
784         cg_offset += molb->nmol*cgs->nr;
785         a_offset  += molb->nmol*cgs->index[cgs->nr];
786     }
787     sfree(type_VDW);
788     sfree(bExcl);
789
790     /* the solvent optimizer is called after the QM is initialized,
791      * because we don't want to have the QM subsystemto become an
792      * optimized solvent
793      */
794
795     check_solvent(fplog, mtop, fr, cginfo_mb);
796
797     if (getenv("GMX_NO_SOLV_OPT"))
798     {
799         if (fplog)
800         {
801             fprintf(fplog, "Found environment variable GMX_NO_SOLV_OPT.\n"
802                     "Disabling all solvent optimization\n");
803         }
804         fr->solvent_opt = esolNO;
805     }
806     if (bNoSolvOpt)
807     {
808         fr->solvent_opt = esolNO;
809     }
810     if (!fr->solvent_opt)
811     {
812         for (size_t mb = 0; mb < mtop->molblock.size(); mb++)
813         {
814             for (cg = 0; cg < cginfo_mb[mb].cg_mod; cg++)
815             {
816                 SET_CGINFO_SOLOPT(cginfo_mb[mb].cginfo[cg], esolNO);
817             }
818         }
819     }
820
821     return cginfo_mb;
822 }
823
824 static std::vector<int> cginfo_expand(const int          nmb,
825                                       const cginfo_mb_t *cgi_mb)
826 {
827     const int        ncg = cgi_mb[nmb - 1].cg_end;
828
829     std::vector<int> cginfo(ncg);
830
831     int              mb = 0;
832     for (int cg = 0; cg < ncg; cg++)
833     {
834         while (cg >= cgi_mb[mb].cg_end)
835         {
836             mb++;
837         }
838         cginfo[cg] =
839             cgi_mb[mb].cginfo[(cg - cgi_mb[mb].cg_start) % cgi_mb[mb].cg_mod];
840     }
841
842     return cginfo;
843 }
844
845 static void done_cginfo_mb(cginfo_mb_t *cginfo_mb, int numMolBlocks)
846 {
847     if (cginfo_mb == nullptr)
848     {
849         return;
850     }
851     for (int mb = 0; mb < numMolBlocks; ++mb)
852     {
853         sfree(cginfo_mb[mb].cginfo);
854     }
855     sfree(cginfo_mb);
856 }
857
858 /* Sets the sum of charges (squared) and C6 in the system in fr.
859  * Returns whether the system has a net charge.
860  */
861 static bool set_chargesum(FILE *log, t_forcerec *fr, const gmx_mtop_t *mtop)
862 {
863     /*This now calculates sum for q and c6*/
864     double         qsum, q2sum, q, c6sum, c6;
865
866     qsum   = 0;
867     q2sum  = 0;
868     c6sum  = 0;
869     for (const gmx_molblock_t &molb : mtop->molblock)
870     {
871         int            nmol  = molb.nmol;
872         const t_atoms *atoms = &mtop->moltype[molb.type].atoms;
873         for (int i = 0; i < atoms->nr; i++)
874         {
875             q       = atoms->atom[i].q;
876             qsum   += nmol*q;
877             q2sum  += nmol*q*q;
878             c6      = mtop->ffparams.iparams[atoms->atom[i].type*(mtop->ffparams.atnr+1)].lj.c6;
879             c6sum  += nmol*c6;
880         }
881     }
882     fr->qsum[0]   = qsum;
883     fr->q2sum[0]  = q2sum;
884     fr->c6sum[0]  = c6sum;
885
886     if (fr->efep != efepNO)
887     {
888         qsum   = 0;
889         q2sum  = 0;
890         c6sum  = 0;
891         for (const gmx_molblock_t &molb : mtop->molblock)
892         {
893             int            nmol  = molb.nmol;
894             const t_atoms *atoms = &mtop->moltype[molb.type].atoms;
895             for (int i = 0; i < atoms->nr; i++)
896             {
897                 q       = atoms->atom[i].qB;
898                 qsum   += nmol*q;
899                 q2sum  += nmol*q*q;
900                 c6      = mtop->ffparams.iparams[atoms->atom[i].typeB*(mtop->ffparams.atnr+1)].lj.c6;
901                 c6sum  += nmol*c6;
902             }
903             fr->qsum[1]   = qsum;
904             fr->q2sum[1]  = q2sum;
905             fr->c6sum[1]  = c6sum;
906         }
907     }
908     else
909     {
910         fr->qsum[1]   = fr->qsum[0];
911         fr->q2sum[1]  = fr->q2sum[0];
912         fr->c6sum[1]  = fr->c6sum[0];
913     }
914     if (log)
915     {
916         if (fr->efep == efepNO)
917         {
918             fprintf(log, "System total charge: %.3f\n", fr->qsum[0]);
919         }
920         else
921         {
922             fprintf(log, "System total charge, top. A: %.3f top. B: %.3f\n",
923                     fr->qsum[0], fr->qsum[1]);
924         }
925     }
926
927     /* A cut-off of 1e-4 is used to catch rounding errors due to ascii input */
928     return (std::abs(fr->qsum[0]) > 1e-4 ||
929             std::abs(fr->qsum[1]) > 1e-4);
930 }
931
932 static real calcBuckinghamBMax(FILE *fplog, const gmx_mtop_t *mtop)
933 {
934     const t_atoms *at1, *at2;
935     int            i, j, tpi, tpj, ntypes;
936     real           b, bmin;
937
938     if (fplog)
939     {
940         fprintf(fplog, "Determining largest Buckingham b parameter for table\n");
941     }
942     ntypes = mtop->ffparams.atnr;
943
944     bmin            = -1;
945     real bham_b_max = 0;
946     for (size_t mt1 = 0; mt1 < mtop->moltype.size(); mt1++)
947     {
948         at1 = &mtop->moltype[mt1].atoms;
949         for (i = 0; (i < at1->nr); i++)
950         {
951             tpi = at1->atom[i].type;
952             if (tpi >= ntypes)
953             {
954                 gmx_fatal(FARGS, "Atomtype[%d] = %d, maximum = %d", i, tpi, ntypes);
955             }
956
957             for (size_t mt2 = mt1; mt2 < mtop->moltype.size(); mt2++)
958             {
959                 at2 = &mtop->moltype[mt2].atoms;
960                 for (j = 0; (j < at2->nr); j++)
961                 {
962                     tpj = at2->atom[j].type;
963                     if (tpj >= ntypes)
964                     {
965                         gmx_fatal(FARGS, "Atomtype[%d] = %d, maximum = %d", j, tpj, ntypes);
966                     }
967                     b = mtop->ffparams.iparams[tpi*ntypes + tpj].bham.b;
968                     if (b > bham_b_max)
969                     {
970                         bham_b_max = b;
971                     }
972                     if ((b < bmin) || (bmin == -1))
973                     {
974                         bmin = b;
975                     }
976                 }
977             }
978         }
979     }
980     if (fplog)
981     {
982         fprintf(fplog, "Buckingham b parameters, min: %g, max: %g\n",
983                 bmin, bham_b_max);
984     }
985
986     return bham_b_max;
987 }
988
989 /*!\brief If there's bonded interactions of type \c ftype1 or \c
990  * ftype2 present in the topology, build an array of the number of
991  * interactions present for each bonded interaction index found in the
992  * topology.
993  *
994  * \c ftype1 or \c ftype2 may be set to -1 to disable seeking for a
995  * valid type with that parameter.
996  *
997  * \c count will be reallocated as necessary to fit the largest bonded
998  * interaction index found, and its current size will be returned in
999  * \c ncount. It will contain zero for every bonded interaction index
1000  * for which no interactions are present in the topology.
1001  */
1002 static void count_tables(int ftype1, int ftype2, const gmx_mtop_t *mtop,
1003                          int *ncount, int **count)
1004 {
1005     int                  ftype, i, j, tabnr;
1006
1007     // Loop over all moleculetypes
1008     for (const gmx_moltype_t &molt : mtop->moltype)
1009     {
1010         // Loop over all interaction types
1011         for (ftype = 0; ftype < F_NRE; ftype++)
1012         {
1013             // If the current interaction type is one of the types whose tables we're trying to count...
1014             if (ftype == ftype1 || ftype == ftype2)
1015             {
1016                 const InteractionList &il     = molt.ilist[ftype];
1017                 const int              stride = 1 + NRAL(ftype);
1018                 // ... and there are actually some interactions for this type
1019                 for (i = 0; i < il.size(); i += stride)
1020                 {
1021                     // Find out which table index the user wanted
1022                     tabnr = mtop->ffparams.iparams[il.iatoms[i]].tab.table;
1023                     if (tabnr < 0)
1024                     {
1025                         gmx_fatal(FARGS, "A bonded table number is smaller than 0: %d\n", tabnr);
1026                     }
1027                     // Make room for this index in the data structure
1028                     if (tabnr >= *ncount)
1029                     {
1030                         srenew(*count, tabnr+1);
1031                         for (j = *ncount; j < tabnr+1; j++)
1032                         {
1033                             (*count)[j] = 0;
1034                         }
1035                         *ncount = tabnr+1;
1036                     }
1037                     // Record that this table index is used and must have a valid file
1038                     (*count)[tabnr]++;
1039                 }
1040             }
1041         }
1042     }
1043 }
1044
1045 /*!\brief If there's bonded interactions of flavour \c tabext and type
1046  * \c ftype1 or \c ftype2 present in the topology, seek them in the
1047  * list of filenames passed to mdrun, and make bonded tables from
1048  * those files.
1049  *
1050  * \c ftype1 or \c ftype2 may be set to -1 to disable seeking for a
1051  * valid type with that parameter.
1052  *
1053  * A fatal error occurs if no matching filename is found.
1054  */
1055 static bondedtable_t *make_bonded_tables(FILE *fplog,
1056                                          int ftype1, int ftype2,
1057                                          const gmx_mtop_t *mtop,
1058                                          gmx::ArrayRef<const std::string> tabbfnm,
1059                                          const char *tabext)
1060 {
1061     int            ncount, *count;
1062     bondedtable_t *tab;
1063
1064     tab = nullptr;
1065
1066     ncount = 0;
1067     count  = nullptr;
1068     count_tables(ftype1, ftype2, mtop, &ncount, &count);
1069
1070     // Are there any relevant tabulated bond interactions?
1071     if (ncount > 0)
1072     {
1073         snew(tab, ncount);
1074         for (int i = 0; i < ncount; i++)
1075         {
1076             // Do any interactions exist that requires this table?
1077             if (count[i] > 0)
1078             {
1079                 // This pattern enforces the current requirement that
1080                 // table filenames end in a characteristic sequence
1081                 // before the file type extension, and avoids table 13
1082                 // being recognized and used for table 1.
1083                 std::string patternToFind = gmx::formatString("_%s%d.%s", tabext, i, ftp2ext(efXVG));
1084                 bool        madeTable     = false;
1085                 for (gmx::index j = 0; j < tabbfnm.ssize() && !madeTable; ++j)
1086                 {
1087                     if (gmx::endsWith(tabbfnm[j], patternToFind))
1088                     {
1089                         // Finally read the table from the file found
1090                         tab[i]    = make_bonded_table(fplog, tabbfnm[j].c_str(), NRAL(ftype1)-2);
1091                         madeTable = true;
1092                     }
1093                 }
1094                 if (!madeTable)
1095                 {
1096                     bool isPlural = (ftype2 != -1);
1097                     gmx_fatal(FARGS, "Tabulated interaction of type '%s%s%s' with index %d cannot be used because no table file whose name matched '%s' was passed via the gmx mdrun -tableb command-line option.",
1098                               interaction_function[ftype1].longname,
1099                               isPlural ? "' or '" : "",
1100                               isPlural ? interaction_function[ftype2].longname : "",
1101                               i,
1102                               patternToFind.c_str());
1103                 }
1104             }
1105         }
1106         sfree(count);
1107     }
1108
1109     return tab;
1110 }
1111
1112 void forcerec_set_ranges(t_forcerec *fr,
1113                          int ncg_home, int ncg_force,
1114                          int natoms_force,
1115                          int natoms_force_constr, int natoms_f_novirsum)
1116 {
1117     fr->cg0 = 0;
1118     fr->hcg = ncg_home;
1119
1120     /* fr->ncg_force is unused in the standard code,
1121      * but it can be useful for modified code dealing with charge groups.
1122      */
1123     fr->ncg_force           = ncg_force;
1124     fr->natoms_force        = natoms_force;
1125     fr->natoms_force_constr = natoms_force_constr;
1126
1127     if (fr->natoms_force_constr > fr->nalloc_force)
1128     {
1129         fr->nalloc_force = over_alloc_dd(fr->natoms_force_constr);
1130     }
1131
1132     if (fr->haveDirectVirialContributions)
1133     {
1134         fr->forceBufferForDirectVirialContributions->resize(natoms_f_novirsum);
1135     }
1136 }
1137
1138 static real cutoff_inf(real cutoff)
1139 {
1140     if (cutoff == 0)
1141     {
1142         cutoff = GMX_CUTOFF_INF;
1143     }
1144
1145     return cutoff;
1146 }
1147
1148 /*! \brief Print Coulomb Ewald citations and set ewald coefficients */
1149 static void initCoulombEwaldParameters(FILE *fp, const t_inputrec *ir,
1150                                        bool systemHasNetCharge,
1151                                        interaction_const_t *ic)
1152 {
1153     if (!EEL_PME_EWALD(ir->coulombtype))
1154     {
1155         return;
1156     }
1157
1158     if (fp)
1159     {
1160         fprintf(fp, "Will do PME sum in reciprocal space for electrostatic interactions.\n");
1161
1162         if (ir->coulombtype == eelP3M_AD)
1163         {
1164             please_cite(fp, "Hockney1988");
1165             please_cite(fp, "Ballenegger2012");
1166         }
1167         else
1168         {
1169             please_cite(fp, "Essmann95a");
1170         }
1171
1172         if (ir->ewald_geometry == eewg3DC)
1173         {
1174             if (fp)
1175             {
1176                 fprintf(fp, "Using the Ewald3DC correction for systems with a slab geometry%s.\n",
1177                         systemHasNetCharge ? " and net charge" : "");
1178             }
1179             please_cite(fp, "In-Chul99a");
1180             if (systemHasNetCharge)
1181             {
1182                 please_cite(fp, "Ballenegger2009");
1183             }
1184         }
1185     }
1186
1187     ic->ewaldcoeff_q = calc_ewaldcoeff_q(ir->rcoulomb, ir->ewald_rtol);
1188     if (fp)
1189     {
1190         fprintf(fp, "Using a Gaussian width (1/beta) of %g nm for Ewald\n",
1191                 1/ic->ewaldcoeff_q);
1192     }
1193
1194     if (ic->coulomb_modifier == eintmodPOTSHIFT)
1195     {
1196         GMX_RELEASE_ASSERT(ic->rcoulomb != 0, "Cutoff radius cannot be zero");
1197         ic->sh_ewald = std::erfc(ic->ewaldcoeff_q*ic->rcoulomb) / ic->rcoulomb;
1198     }
1199     else
1200     {
1201         ic->sh_ewald = 0;
1202     }
1203 }
1204
1205 /*! \brief Print Van der Waals Ewald citations and set ewald coefficients */
1206 static void initVdwEwaldParameters(FILE *fp, const t_inputrec *ir,
1207                                    interaction_const_t *ic)
1208 {
1209     if (!EVDW_PME(ir->vdwtype))
1210     {
1211         return;
1212     }
1213
1214     if (fp)
1215     {
1216         fprintf(fp, "Will do PME sum in reciprocal space for LJ dispersion interactions.\n");
1217         please_cite(fp, "Essmann95a");
1218     }
1219     ic->ewaldcoeff_lj = calc_ewaldcoeff_lj(ir->rvdw, ir->ewald_rtol_lj);
1220     if (fp)
1221     {
1222         fprintf(fp, "Using a Gaussian width (1/beta) of %g nm for LJ Ewald\n",
1223                 1/ic->ewaldcoeff_lj);
1224     }
1225
1226     if (ic->vdw_modifier == eintmodPOTSHIFT)
1227     {
1228         real crc2       = gmx::square(ic->ewaldcoeff_lj*ic->rvdw);
1229         ic->sh_lj_ewald = (std::exp(-crc2)*(1 + crc2 + 0.5*crc2*crc2) - 1)/gmx::power6(ic->rvdw);
1230     }
1231     else
1232     {
1233         ic->sh_lj_ewald = 0;
1234     }
1235 }
1236
1237 /* Generate Coulomb and/or Van der Waals Ewald long-range correction tables
1238  *
1239  * Tables are generated for one or both, depending on if the pointers
1240  * are non-null. The spacing for both table sets is the same and obeys
1241  * both accuracy requirements, when relevant.
1242  */
1243 static void init_ewald_f_table(const interaction_const_t &ic,
1244                                EwaldCorrectionTables     *coulombTables,
1245                                EwaldCorrectionTables     *vdwTables)
1246 {
1247     const bool useCoulombTable = (EEL_PME_EWALD(ic.eeltype) && coulombTables != nullptr);
1248     const bool useVdwTable     = (EVDW_PME(ic.vdwtype) && vdwTables != nullptr);
1249
1250     /* Get the Ewald table spacing based on Coulomb and/or LJ
1251      * Ewald coefficients and rtol.
1252      */
1253     const real tableScale = ewald_spline3_table_scale(ic, useCoulombTable, useVdwTable);
1254
1255     const int  tableSize  = static_cast<int>(ic.rcoulomb*tableScale) + 2;
1256
1257     if (useCoulombTable)
1258     {
1259         *coulombTables = generateEwaldCorrectionTables(tableSize, tableScale, ic.ewaldcoeff_q, v_q_ewald_lr);
1260     }
1261
1262     if (useVdwTable)
1263     {
1264         *vdwTables = generateEwaldCorrectionTables(tableSize, tableScale, ic.ewaldcoeff_lj, v_lj_ewald_lr);
1265     }
1266 }
1267
1268 void init_interaction_const_tables(FILE                *fp,
1269                                    interaction_const_t *ic)
1270 {
1271     if (EEL_PME_EWALD(ic->eeltype))
1272     {
1273         init_ewald_f_table(*ic, ic->coulombEwaldTables.get(), nullptr);
1274         if (fp != nullptr)
1275         {
1276             fprintf(fp, "Initialized non-bonded Coulomb Ewald tables, spacing: %.2e size: %zu\n\n",
1277                     1/ic->coulombEwaldTables->scale, ic->coulombEwaldTables->tableF.size());
1278         }
1279     }
1280 }
1281
1282 static void clear_force_switch_constants(shift_consts_t *sc)
1283 {
1284     sc->c2   = 0;
1285     sc->c3   = 0;
1286     sc->cpot = 0;
1287 }
1288
1289 static void force_switch_constants(real p,
1290                                    real rsw, real rc,
1291                                    shift_consts_t *sc)
1292 {
1293     /* Here we determine the coefficient for shifting the force to zero
1294      * between distance rsw and the cut-off rc.
1295      * For a potential of r^-p, we have force p*r^-(p+1).
1296      * But to save flops we absorb p in the coefficient.
1297      * Thus we get:
1298      * force/p   = r^-(p+1) + c2*r^2 + c3*r^3
1299      * potential = r^-p + c2/3*r^3 + c3/4*r^4 + cpot
1300      */
1301     sc->c2   =  ((p + 1)*rsw - (p + 4)*rc)/(pow(rc, p + 2)*gmx::square(rc - rsw));
1302     sc->c3   = -((p + 1)*rsw - (p + 3)*rc)/(pow(rc, p + 2)*gmx::power3(rc - rsw));
1303     sc->cpot = -pow(rc, -p) + p*sc->c2/3*gmx::power3(rc - rsw) + p*sc->c3/4*gmx::power4(rc - rsw);
1304 }
1305
1306 static void potential_switch_constants(real rsw, real rc,
1307                                        switch_consts_t *sc)
1308 {
1309     /* The switch function is 1 at rsw and 0 at rc.
1310      * The derivative and second derivate are zero at both ends.
1311      * rsw        = max(r - r_switch, 0)
1312      * sw         = 1 + c3*rsw^3 + c4*rsw^4 + c5*rsw^5
1313      * dsw        = 3*c3*rsw^2 + 4*c4*rsw^3 + 5*c5*rsw^4
1314      * force      = force*dsw - potential*sw
1315      * potential *= sw
1316      */
1317     sc->c3 = -10/gmx::power3(rc - rsw);
1318     sc->c4 =  15/gmx::power4(rc - rsw);
1319     sc->c5 =  -6/gmx::power5(rc - rsw);
1320 }
1321
1322 /*! \brief Construct interaction constants
1323  *
1324  * This data is used (particularly) by search and force code for
1325  * short-range interactions. Many of these are constant for the whole
1326  * simulation; some are constant only after PME tuning completes.
1327  */
1328 static void
1329 init_interaction_const(FILE                       *fp,
1330                        interaction_const_t       **interaction_const,
1331                        const t_inputrec           *ir,
1332                        const gmx_mtop_t           *mtop,
1333                        bool                        systemHasNetCharge)
1334 {
1335     interaction_const_t *ic = new interaction_const_t;
1336
1337     ic->cutoff_scheme   = ir->cutoff_scheme;
1338
1339     ic->coulombEwaldTables = std::make_unique<EwaldCorrectionTables>();
1340
1341     /* Lennard-Jones */
1342     ic->vdwtype         = ir->vdwtype;
1343     ic->vdw_modifier    = ir->vdw_modifier;
1344     ic->reppow          = mtop->ffparams.reppow;
1345     ic->rvdw            = cutoff_inf(ir->rvdw);
1346     ic->rvdw_switch     = ir->rvdw_switch;
1347     ic->ljpme_comb_rule = ir->ljpme_combination_rule;
1348     ic->useBuckingham   = (mtop->ffparams.functype[0] == F_BHAM);
1349     if (ic->useBuckingham)
1350     {
1351         ic->buckinghamBMax = calcBuckinghamBMax(fp, mtop);
1352     }
1353
1354     initVdwEwaldParameters(fp, ir, ic);
1355
1356     clear_force_switch_constants(&ic->dispersion_shift);
1357     clear_force_switch_constants(&ic->repulsion_shift);
1358
1359     switch (ic->vdw_modifier)
1360     {
1361         case eintmodPOTSHIFT:
1362             /* Only shift the potential, don't touch the force */
1363             ic->dispersion_shift.cpot = -1.0/gmx::power6(ic->rvdw);
1364             ic->repulsion_shift.cpot  = -1.0/gmx::power12(ic->rvdw);
1365             break;
1366         case eintmodFORCESWITCH:
1367             /* Switch the force, switch and shift the potential */
1368             force_switch_constants(6.0, ic->rvdw_switch, ic->rvdw,
1369                                    &ic->dispersion_shift);
1370             force_switch_constants(12.0, ic->rvdw_switch, ic->rvdw,
1371                                    &ic->repulsion_shift);
1372             break;
1373         case eintmodPOTSWITCH:
1374             /* Switch the potential and force */
1375             potential_switch_constants(ic->rvdw_switch, ic->rvdw,
1376                                        &ic->vdw_switch);
1377             break;
1378         case eintmodNONE:
1379         case eintmodEXACTCUTOFF:
1380             /* Nothing to do here */
1381             break;
1382         default:
1383             gmx_incons("unimplemented potential modifier");
1384     }
1385
1386     /* Electrostatics */
1387     ic->eeltype          = ir->coulombtype;
1388     ic->coulomb_modifier = ir->coulomb_modifier;
1389     ic->rcoulomb         = cutoff_inf(ir->rcoulomb);
1390     ic->rcoulomb_switch  = ir->rcoulomb_switch;
1391     ic->epsilon_r        = ir->epsilon_r;
1392
1393     /* Set the Coulomb energy conversion factor */
1394     if (ic->epsilon_r != 0)
1395     {
1396         ic->epsfac = ONE_4PI_EPS0/ic->epsilon_r;
1397     }
1398     else
1399     {
1400         /* eps = 0 is infinite dieletric: no Coulomb interactions */
1401         ic->epsfac = 0;
1402     }
1403
1404     /* Reaction-field */
1405     if (EEL_RF(ic->eeltype))
1406     {
1407         GMX_RELEASE_ASSERT(ic->eeltype != eelGRF_NOTUSED, "GRF is no longer supported");
1408         ic->epsilon_rf = ir->epsilon_rf;
1409
1410         calc_rffac(fp, ic->epsilon_r, ic->epsilon_rf,
1411                    ic->rcoulomb,
1412                    &ic->k_rf, &ic->c_rf);
1413     }
1414     else
1415     {
1416         /* For plain cut-off we might use the reaction-field kernels */
1417         ic->epsilon_rf = ic->epsilon_r;
1418         ic->k_rf       = 0;
1419         if (ir->coulomb_modifier == eintmodPOTSHIFT)
1420         {
1421             ic->c_rf   = 1/ic->rcoulomb;
1422         }
1423         else
1424         {
1425             ic->c_rf   = 0;
1426         }
1427     }
1428
1429     initCoulombEwaldParameters(fp, ir, systemHasNetCharge, ic);
1430
1431     if (fp != nullptr)
1432     {
1433         real dispersion_shift;
1434
1435         dispersion_shift = ic->dispersion_shift.cpot;
1436         if (EVDW_PME(ic->vdwtype))
1437         {
1438             dispersion_shift -= ic->sh_lj_ewald;
1439         }
1440         fprintf(fp, "Potential shift: LJ r^-12: %.3e r^-6: %.3e",
1441                 ic->repulsion_shift.cpot, dispersion_shift);
1442
1443         if (ic->eeltype == eelCUT)
1444         {
1445             fprintf(fp, ", Coulomb %.e", -ic->c_rf);
1446         }
1447         else if (EEL_PME(ic->eeltype))
1448         {
1449             fprintf(fp, ", Ewald %.3e", -ic->sh_ewald);
1450         }
1451         fprintf(fp, "\n");
1452     }
1453
1454     *interaction_const = ic;
1455 }
1456
1457 void init_forcerec(FILE                             *fp,
1458                    const gmx::MDLogger              &mdlog,
1459                    t_forcerec                       *fr,
1460                    t_fcdata                         *fcd,
1461                    const t_inputrec                 *ir,
1462                    const gmx_mtop_t                 *mtop,
1463                    const t_commrec                  *cr,
1464                    matrix                            box,
1465                    const char                       *tabfn,
1466                    const char                       *tabpfn,
1467                    gmx::ArrayRef<const std::string>  tabbfnm,
1468                    const gmx_hw_info_t              &hardwareInfo,
1469                    const gmx_device_info_t          *deviceInfo,
1470                    const bool                        useGpuForBonded,
1471                    gmx_bool                          bNoSolvOpt,
1472                    real                              print_force,
1473                    gmx_wallcycle                    *wcycle)
1474 {
1475     real           rtab;
1476     char          *env;
1477     double         dbl;
1478     const t_block *cgs;
1479     gmx_bool       bGenericKernelOnly;
1480     gmx_bool       bFEP_NonBonded;
1481
1482     /* By default we turn SIMD kernels on, but it might be turned off further down... */
1483     fr->use_simd_kernels = TRUE;
1484
1485     if (check_box(ir->ePBC, box))
1486     {
1487         gmx_fatal(FARGS, "%s", check_box(ir->ePBC, box));
1488     }
1489
1490     /* Test particle insertion ? */
1491     if (EI_TPI(ir->eI))
1492     {
1493         /* Set to the size of the molecule to be inserted (the last one) */
1494         /* Because of old style topologies, we have to use the last cg
1495          * instead of the last molecule type.
1496          */
1497         cgs       = &mtop->moltype[mtop->molblock.back().type].cgs;
1498         fr->n_tpi = cgs->index[cgs->nr] - cgs->index[cgs->nr-1];
1499         gmx::RangePartitioning molecules = gmx_mtop_molecules(*mtop);
1500         if (fr->n_tpi != molecules.block(molecules.numBlocks() - 1).size())
1501         {
1502             gmx_fatal(FARGS, "The molecule to insert can not consist of multiple charge groups.\nMake it a single charge group.");
1503         }
1504     }
1505     else
1506     {
1507         fr->n_tpi = 0;
1508     }
1509
1510     if (ir->coulombtype == eelRF_NEC_UNSUPPORTED ||
1511         ir->coulombtype == eelGRF_NOTUSED)
1512     {
1513         gmx_fatal(FARGS, "%s electrostatics is no longer supported",
1514                   eel_names[ir->coulombtype]);
1515     }
1516
1517     if (ir->bAdress)
1518     {
1519         gmx_fatal(FARGS, "AdResS simulations are no longer supported");
1520     }
1521     if (ir->useTwinRange)
1522     {
1523         gmx_fatal(FARGS, "Twin-range simulations are no longer supported");
1524     }
1525     /* Copy the user determined parameters */
1526     fr->userint1  = ir->userint1;
1527     fr->userint2  = ir->userint2;
1528     fr->userint3  = ir->userint3;
1529     fr->userint4  = ir->userint4;
1530     fr->userreal1 = ir->userreal1;
1531     fr->userreal2 = ir->userreal2;
1532     fr->userreal3 = ir->userreal3;
1533     fr->userreal4 = ir->userreal4;
1534
1535     /* Shell stuff */
1536     fr->fc_stepsize = ir->fc_stepsize;
1537
1538     /* Free energy */
1539     fr->efep        = ir->efep;
1540     fr->sc_alphavdw = ir->fepvals->sc_alpha;
1541     if (ir->fepvals->bScCoul)
1542     {
1543         fr->sc_alphacoul  = ir->fepvals->sc_alpha;
1544         fr->sc_sigma6_min = gmx::power6(ir->fepvals->sc_sigma_min);
1545     }
1546     else
1547     {
1548         fr->sc_alphacoul  = 0;
1549         fr->sc_sigma6_min = 0; /* only needed when bScCoul is on */
1550     }
1551     fr->sc_power      = ir->fepvals->sc_power;
1552     fr->sc_r_power    = ir->fepvals->sc_r_power;
1553     fr->sc_sigma6_def = gmx::power6(ir->fepvals->sc_sigma);
1554
1555     env = getenv("GMX_SCSIGMA_MIN");
1556     if (env != nullptr)
1557     {
1558         dbl = 0;
1559         sscanf(env, "%20lf", &dbl);
1560         fr->sc_sigma6_min = gmx::power6(dbl);
1561         if (fp)
1562         {
1563             fprintf(fp, "Setting the minimum soft core sigma to %g nm\n", dbl);
1564         }
1565     }
1566
1567     fr->bNonbonded = TRUE;
1568     if (getenv("GMX_NO_NONBONDED") != nullptr)
1569     {
1570         /* turn off non-bonded calculations */
1571         fr->bNonbonded = FALSE;
1572         GMX_LOG(mdlog.warning).asParagraph().appendText(
1573                 "Found environment variable GMX_NO_NONBONDED.\n"
1574                 "Disabling nonbonded calculations.");
1575     }
1576
1577     bGenericKernelOnly = FALSE;
1578
1579     /* We now check in the NS code whether a particular combination of interactions
1580      * can be used with water optimization, and disable it if that is not the case.
1581      */
1582
1583     if (getenv("GMX_NB_GENERIC") != nullptr)
1584     {
1585         if (fp != nullptr)
1586         {
1587             fprintf(fp,
1588                     "Found environment variable GMX_NB_GENERIC.\n"
1589                     "Disabling all interaction-specific nonbonded kernels, will only\n"
1590                     "use the slow generic ones in src/gmxlib/nonbonded/nb_generic.c\n\n");
1591         }
1592         bGenericKernelOnly = TRUE;
1593     }
1594
1595     if (bGenericKernelOnly)
1596     {
1597         bNoSolvOpt         = TRUE;
1598     }
1599
1600     if ( (getenv("GMX_DISABLE_SIMD_KERNELS") != nullptr) || (getenv("GMX_NOOPTIMIZEDKERNELS") != nullptr) )
1601     {
1602         fr->use_simd_kernels = FALSE;
1603         if (fp != nullptr)
1604         {
1605             fprintf(fp,
1606                     "\nFound environment variable GMX_DISABLE_SIMD_KERNELS.\n"
1607                     "Disabling the usage of any SIMD-specific non-bonded & bonded kernel routines\n"
1608                     "(e.g. SSE2/SSE4.1/AVX).\n\n");
1609         }
1610     }
1611
1612     fr->bBHAM = (mtop->ffparams.functype[0] == F_BHAM);
1613
1614     /* Neighbour searching stuff */
1615     fr->cutoff_scheme = ir->cutoff_scheme;
1616     fr->bGrid         = (ir->ns_type == ensGRID);
1617     fr->ePBC          = ir->ePBC;
1618
1619     /* Determine if we will do PBC for distances in bonded interactions */
1620     if (fr->ePBC == epbcNONE)
1621     {
1622         fr->bMolPBC = FALSE;
1623     }
1624     else
1625     {
1626         if (!DOMAINDECOMP(cr))
1627         {
1628             gmx_bool bSHAKE;
1629
1630             bSHAKE = (ir->eConstrAlg == econtSHAKE &&
1631                       (gmx_mtop_ftype_count(mtop, F_CONSTR) > 0 ||
1632                        gmx_mtop_ftype_count(mtop, F_CONSTRNC) > 0));
1633
1634             /* The group cut-off scheme and SHAKE assume charge groups
1635              * are whole, but not using molpbc is faster in most cases.
1636              * With intermolecular interactions we need PBC for calculating
1637              * distances between atoms in different molecules.
1638              */
1639             if (bSHAKE && !mtop->bIntermolecularInteractions)
1640             {
1641                 fr->bMolPBC = ir->bPeriodicMols;
1642
1643                 if (bSHAKE && fr->bMolPBC)
1644                 {
1645                     gmx_fatal(FARGS, "SHAKE is not supported with periodic molecules");
1646                 }
1647             }
1648             else
1649             {
1650                 /* Not making molecules whole is faster in most cases,
1651                  * but With orientation restraints we need whole molecules.
1652                  */
1653                 fr->bMolPBC = (fcd->orires.nr == 0);
1654
1655                 if (getenv("GMX_USE_GRAPH") != nullptr)
1656                 {
1657                     fr->bMolPBC = FALSE;
1658                     if (fp)
1659                     {
1660                         GMX_LOG(mdlog.warning).asParagraph().appendText("GMX_USE_GRAPH is set, using the graph for bonded interactions");
1661                     }
1662
1663                     if (mtop->bIntermolecularInteractions)
1664                     {
1665                         GMX_LOG(mdlog.warning).asParagraph().appendText("WARNING: Molecules linked by intermolecular interactions have to reside in the same periodic image, otherwise artifacts will occur!");
1666                     }
1667                 }
1668
1669                 GMX_RELEASE_ASSERT(fr->bMolPBC || !mtop->bIntermolecularInteractions, "We need to use PBC within molecules with inter-molecular interactions");
1670
1671                 if (bSHAKE && fr->bMolPBC)
1672                 {
1673                     gmx_fatal(FARGS, "SHAKE is not properly supported with intermolecular interactions. For short simulations where linked molecules remain in the same periodic image, the environment variable GMX_USE_GRAPH can be used to override this check.\n");
1674                 }
1675             }
1676         }
1677         else
1678         {
1679             fr->bMolPBC = dd_bonded_molpbc(cr->dd, fr->ePBC);
1680         }
1681     }
1682
1683     fr->rc_scaling = ir->refcoord_scaling;
1684     copy_rvec(ir->posres_com, fr->posres_com);
1685     copy_rvec(ir->posres_comB, fr->posres_comB);
1686     fr->rlist                    = cutoff_inf(ir->rlist);
1687     fr->ljpme_combination_rule   = ir->ljpme_combination_rule;
1688
1689     /* This now calculates sum for q and c6*/
1690     bool systemHasNetCharge = set_chargesum(fp, fr, mtop);
1691
1692     /* fr->ic is used both by verlet and group kernels (to some extent) now */
1693     init_interaction_const(fp, &fr->ic, ir, mtop, systemHasNetCharge);
1694     init_interaction_const_tables(fp, fr->ic);
1695
1696     const interaction_const_t *ic = fr->ic;
1697
1698     /* TODO: Replace this Ewald table or move it into interaction_const_t */
1699     if (ir->coulombtype == eelEWALD)
1700     {
1701         init_ewald_tab(&(fr->ewald_table), ir, fp);
1702     }
1703
1704     /* Electrostatics: Translate from interaction-setting-in-mdp-file to kernel interaction format */
1705     switch (ic->eeltype)
1706     {
1707         case eelCUT:
1708             fr->nbkernel_elec_interaction = GMX_NBKERNEL_ELEC_COULOMB;
1709             break;
1710
1711         case eelRF:
1712             fr->nbkernel_elec_interaction = GMX_NBKERNEL_ELEC_REACTIONFIELD;
1713             break;
1714
1715         case eelRF_ZERO:
1716             fr->nbkernel_elec_interaction = GMX_NBKERNEL_ELEC_REACTIONFIELD;
1717             GMX_RELEASE_ASSERT(ic->coulomb_modifier == eintmodEXACTCUTOFF, "With the group scheme RF-zero needs the exact cut-off modifier");
1718             break;
1719
1720         case eelSWITCH:
1721         case eelSHIFT:
1722         case eelUSER:
1723         case eelENCADSHIFT:
1724         case eelPMESWITCH:
1725         case eelPMEUSER:
1726         case eelPMEUSERSWITCH:
1727             fr->nbkernel_elec_interaction = GMX_NBKERNEL_ELEC_CUBICSPLINETABLE;
1728             break;
1729
1730         case eelPME:
1731         case eelP3M_AD:
1732         case eelEWALD:
1733             fr->nbkernel_elec_interaction = GMX_NBKERNEL_ELEC_EWALD;
1734             break;
1735
1736         default:
1737             gmx_fatal(FARGS, "Unsupported electrostatic interaction: %s", eel_names[ic->eeltype]);
1738     }
1739     fr->nbkernel_elec_modifier = ic->coulomb_modifier;
1740
1741     /* Vdw: Translate from mdp settings to kernel format */
1742     switch (ic->vdwtype)
1743     {
1744         case evdwCUT:
1745             if (fr->bBHAM)
1746             {
1747                 fr->nbkernel_vdw_interaction = GMX_NBKERNEL_VDW_BUCKINGHAM;
1748             }
1749             else
1750             {
1751                 fr->nbkernel_vdw_interaction = GMX_NBKERNEL_VDW_LENNARDJONES;
1752             }
1753             break;
1754         case evdwPME:
1755             fr->nbkernel_vdw_interaction = GMX_NBKERNEL_VDW_LJEWALD;
1756             break;
1757
1758         case evdwSWITCH:
1759         case evdwSHIFT:
1760         case evdwUSER:
1761         case evdwENCADSHIFT:
1762             fr->nbkernel_vdw_interaction = GMX_NBKERNEL_VDW_CUBICSPLINETABLE;
1763             break;
1764
1765         default:
1766             gmx_fatal(FARGS, "Unsupported vdw interaction: %s", evdw_names[ic->vdwtype]);
1767     }
1768     fr->nbkernel_vdw_modifier = ic->vdw_modifier;
1769
1770     if (ir->cutoff_scheme == ecutsVERLET)
1771     {
1772         if (!gmx_within_tol(ic->reppow, 12.0, 10*GMX_DOUBLE_EPS))
1773         {
1774             gmx_fatal(FARGS, "Cut-off scheme %s only supports LJ repulsion power 12", ecutscheme_names[ir->cutoff_scheme]);
1775         }
1776         /* Older tpr files can contain Coulomb user tables with the Verlet cutoff-scheme,
1777          * while mdrun does not (and never did) support this.
1778          */
1779         if (EEL_USER(fr->ic->eeltype))
1780         {
1781             gmx_fatal(FARGS, "Combination of %s and cutoff scheme %s is not supported",
1782                       eel_names[ir->coulombtype], ecutscheme_names[ir->cutoff_scheme]);
1783         }
1784
1785         fr->bvdwtab  = FALSE;
1786         fr->bcoultab = FALSE;
1787     }
1788
1789     /* 1-4 interaction electrostatics */
1790     fr->fudgeQQ = mtop->ffparams.fudgeQQ;
1791
1792     fr->haveDirectVirialContributions =
1793         (EEL_FULL(ic->eeltype) || EVDW_PME(ic->vdwtype) ||
1794          fr->forceProviders->hasForceProvider() ||
1795          gmx_mtop_ftype_count(mtop, F_POSRES) > 0 ||
1796          gmx_mtop_ftype_count(mtop, F_FBPOSRES) > 0 ||
1797          ir->nwall > 0 ||
1798          ir->bPull ||
1799          ir->bRot ||
1800          ir->bIMD);
1801
1802     if (fr->haveDirectVirialContributions)
1803     {
1804         fr->forceBufferForDirectVirialContributions = new std::vector<gmx::RVec>;
1805     }
1806
1807     if (fr->shift_vec == nullptr)
1808     {
1809         snew(fr->shift_vec, SHIFTS);
1810     }
1811
1812     if (fr->fshift == nullptr)
1813     {
1814         snew(fr->fshift, SHIFTS);
1815     }
1816
1817     if (fr->nbfp == nullptr)
1818     {
1819         fr->ntype = mtop->ffparams.atnr;
1820         fr->nbfp  = mk_nbfp(&mtop->ffparams, fr->bBHAM);
1821         if (EVDW_PME(ic->vdwtype))
1822         {
1823             fr->ljpme_c6grid  = make_ljpme_c6grid(&mtop->ffparams, fr);
1824         }
1825     }
1826
1827     /* Copy the energy group exclusions */
1828     fr->egp_flags = ir->opts.egp_flags;
1829
1830     /* Van der Waals stuff */
1831     if ((ic->vdwtype != evdwCUT) && (ic->vdwtype != evdwUSER) && !fr->bBHAM)
1832     {
1833         if (ic->rvdw_switch >= ic->rvdw)
1834         {
1835             gmx_fatal(FARGS, "rvdw_switch (%f) must be < rvdw (%f)",
1836                       ic->rvdw_switch, ic->rvdw);
1837         }
1838         if (fp)
1839         {
1840             fprintf(fp, "Using %s Lennard-Jones, switch between %g and %g nm\n",
1841                     (ic->eeltype == eelSWITCH) ? "switched" : "shifted",
1842                     ic->rvdw_switch, ic->rvdw);
1843         }
1844     }
1845
1846     if (fr->bBHAM && EVDW_PME(ic->vdwtype))
1847     {
1848         gmx_fatal(FARGS, "LJ PME not supported with Buckingham");
1849     }
1850
1851     if (fr->bBHAM && (ic->vdwtype == evdwSHIFT || ic->vdwtype == evdwSWITCH))
1852     {
1853         gmx_fatal(FARGS, "Switch/shift interaction not supported with Buckingham");
1854     }
1855
1856     if (fr->bBHAM && fr->cutoff_scheme == ecutsVERLET)
1857     {
1858         gmx_fatal(FARGS, "Verlet cutoff-scheme is not supported with Buckingham");
1859     }
1860
1861     if (fp && fr->cutoff_scheme == ecutsGROUP)
1862     {
1863         fprintf(fp, "Cut-off's:   NS: %g   Coulomb: %g   %s: %g\n",
1864                 fr->rlist, ic->rcoulomb, fr->bBHAM ? "BHAM" : "LJ", ic->rvdw);
1865     }
1866
1867     if (ir->implicit_solvent)
1868     {
1869         gmx_fatal(FARGS, "Implict solvation is no longer supported.");
1870     }
1871
1872
1873     /* This code automatically gives table length tabext without cut-off's,
1874      * in that case grompp should already have checked that we do not need
1875      * normal tables and we only generate tables for 1-4 interactions.
1876      */
1877     rtab = ir->rlist + ir->tabext;
1878
1879     /* We want to use unmodified tables for 1-4 coulombic
1880      * interactions, so we must in general have an extra set of
1881      * tables. */
1882     if (gmx_mtop_ftype_count(mtop, F_LJ14) > 0 ||
1883         gmx_mtop_ftype_count(mtop, F_LJC14_Q) > 0 ||
1884         gmx_mtop_ftype_count(mtop, F_LJC_PAIRS_NB) > 0)
1885     {
1886         fr->pairsTable = make_tables(fp, ic, tabpfn, rtab,
1887                                      GMX_MAKETABLES_14ONLY);
1888     }
1889
1890     /* Wall stuff */
1891     fr->nwall = ir->nwall;
1892     if (ir->nwall && ir->wall_type == ewtTABLE)
1893     {
1894         make_wall_tables(fp, ir, tabfn, &mtop->groups, fr);
1895     }
1896
1897     if (fcd && !tabbfnm.empty())
1898     {
1899         // Need to catch std::bad_alloc
1900         // TODO Don't need to catch this here, when merging with master branch
1901         try
1902         {
1903             fcd->bondtab  = make_bonded_tables(fp,
1904                                                F_TABBONDS, F_TABBONDSNC,
1905                                                mtop, tabbfnm, "b");
1906             fcd->angletab = make_bonded_tables(fp,
1907                                                F_TABANGLES, -1,
1908                                                mtop, tabbfnm, "a");
1909             fcd->dihtab   = make_bonded_tables(fp,
1910                                                F_TABDIHS, -1,
1911                                                mtop, tabbfnm, "d");
1912         }
1913         GMX_CATCH_ALL_AND_EXIT_WITH_FATAL_ERROR;
1914     }
1915     else
1916     {
1917         if (debug)
1918         {
1919             fprintf(debug, "No fcdata or table file name passed, can not read table, can not do bonded interactions\n");
1920         }
1921     }
1922
1923     // QM/MM initialization if requested
1924     fr->bQMMM = ir->bQMMM;
1925     if (fr->bQMMM)
1926     {
1927         // Initialize QM/MM if supported
1928         if (GMX_QMMM)
1929         {
1930             GMX_LOG(mdlog.info).asParagraph().
1931                 appendText("Large parts of the QM/MM support is deprecated, and may be removed in a future "
1932                            "version. Please get in touch with the developers if you find the support useful, "
1933                            "as help is needed if the functionality is to continue to be available.");
1934             fr->qr = mk_QMMMrec();
1935             init_QMMMrec(cr, mtop, ir, fr);
1936         }
1937         else
1938         {
1939             gmx_incons("QM/MM was requested, but is only available when GROMACS "
1940                        "is configured with QM/MM support");
1941         }
1942     }
1943
1944     /* Set all the static charge group info */
1945     fr->cginfo_mb = init_cginfo_mb(fp, mtop, fr, bNoSolvOpt,
1946                                    &bFEP_NonBonded,
1947                                    &fr->bExcl_IntraCGAll_InterCGNone);
1948     if (!DOMAINDECOMP(cr))
1949     {
1950         fr->cginfo = cginfo_expand(mtop->molblock.size(), fr->cginfo_mb);
1951     }
1952
1953     if (!DOMAINDECOMP(cr))
1954     {
1955         forcerec_set_ranges(fr, ncg_mtop(mtop), ncg_mtop(mtop),
1956                             mtop->natoms, mtop->natoms, mtop->natoms);
1957     }
1958
1959     fr->print_force = print_force;
1960
1961     /* Initialize the thread working data for bonded interactions */
1962     fr->bondedThreading =
1963         init_bonded_threading(fp, mtop->groups.groups[SimulationAtomGroupType::EnergyOutput].size());
1964
1965     fr->nthread_ewc = gmx_omp_nthreads_get(emntBonded);
1966     snew(fr->ewc_t, fr->nthread_ewc);
1967
1968     if (fr->cutoff_scheme == ecutsVERLET)
1969     {
1970         // We checked the cut-offs in grompp, but double-check here.
1971         // We have PME+LJcutoff kernels for rcoulomb>rvdw.
1972         if (EEL_PME_EWALD(ir->coulombtype) && ir->vdwtype == eelCUT)
1973         {
1974             GMX_RELEASE_ASSERT(ir->rcoulomb >= ir->rvdw, "With Verlet lists and PME we should have rcoulomb>=rvdw");
1975         }
1976         else
1977         {
1978             GMX_RELEASE_ASSERT(ir->rcoulomb == ir->rvdw, "With Verlet lists and no PME rcoulomb and rvdw should be identical");
1979         }
1980
1981         fr->nbv = Nbnxm::init_nb_verlet(mdlog, bFEP_NonBonded, ir, fr,
1982                                         cr, hardwareInfo, deviceInfo,
1983                                         mtop, box, wcycle);
1984
1985         if (useGpuForBonded)
1986         {
1987             auto stream = DOMAINDECOMP(cr) ?
1988                 Nbnxm::gpu_get_command_stream(fr->nbv->gpu_nbv, Nbnxm::InteractionLocality::NonLocal) :
1989                 Nbnxm::gpu_get_command_stream(fr->nbv->gpu_nbv, Nbnxm::InteractionLocality::Local);
1990             // TODO the heap allocation is only needed while
1991             // t_forcerec lacks a constructor.
1992             fr->gpuBonded = new gmx::GpuBonded(mtop->ffparams,
1993                                                stream,
1994                                                wcycle);
1995         }
1996     }
1997
1998     if (ir->eDispCorr != edispcNO)
1999     {
2000         fr->dispersionCorrection =
2001             std::make_unique<DispersionCorrection>(*mtop, *ir, fr->bBHAM,
2002                                                    fr->ntype,
2003                                                    gmx::arrayRefFromArray(fr->nbfp, fr->ntype*fr->ntype*2),
2004                                                    *fr->ic, tabfn);
2005         fr->dispersionCorrection->print(mdlog);
2006     }
2007
2008     if (fp != nullptr)
2009     {
2010         /* Here we switch from using mdlog, which prints the newline before
2011          * the paragraph, to our old fprintf logging, which prints the newline
2012          * after the paragraph, so we should add a newline here.
2013          */
2014         fprintf(fp, "\n");
2015     }
2016 }
2017
2018 /* Frees GPU memory and sets a tMPI node barrier.
2019  *
2020  * Note that this function needs to be called even if GPUs are not used
2021  * in this run because the PME ranks have no knowledge of whether GPUs
2022  * are used or not, but all ranks need to enter the barrier below.
2023  * \todo Remove physical node barrier from this function after making sure
2024  * that it's not needed anymore (with a shared GPU run).
2025  */
2026 void free_gpu_resources(t_forcerec                          *fr,
2027                         const gmx::PhysicalNodeCommunicator &physicalNodeCommunicator,
2028                         const gmx_gpu_info_t                &gpu_info)
2029 {
2030     bool isPPrankUsingGPU = (fr != nullptr) && (fr->nbv != nullptr) && fr->nbv->useGpu();
2031
2032     /* stop the GPU profiler (only CUDA) */
2033     if (gpu_info.n_dev > 0)
2034     {
2035         stopGpuProfiler();
2036     }
2037
2038     if (isPPrankUsingGPU)
2039     {
2040         /* Free data in GPU memory and pinned memory before destroying the GPU context */
2041         fr->nbv.reset();
2042
2043         delete fr->gpuBonded;
2044         fr->gpuBonded = nullptr;
2045     }
2046
2047     /* With tMPI we need to wait for all ranks to finish deallocation before
2048      * destroying the CUDA context in free_gpu() as some tMPI ranks may be sharing
2049      * GPU and context.
2050      *
2051      * This is not a concern in OpenCL where we use one context per rank which
2052      * is freed in nbnxn_gpu_free().
2053      *
2054      * Note: it is safe to not call the barrier on the ranks which do not use GPU,
2055      * but it is easier and more futureproof to call it on the whole node.
2056      */
2057     if (GMX_THREAD_MPI)
2058     {
2059         physicalNodeCommunicator.barrier();
2060     }
2061 }
2062
2063 void done_forcerec(t_forcerec *fr, int numMolBlocks)
2064 {
2065     if (fr == nullptr)
2066     {
2067         // PME-only ranks don't have a forcerec
2068         return;
2069     }
2070     done_cginfo_mb(fr->cginfo_mb, numMolBlocks);
2071     sfree(fr->nbfp);
2072     delete fr->ic;
2073     sfree(fr->shift_vec);
2074     sfree(fr->fshift);
2075     sfree(fr->ewc_t);
2076     tear_down_bonded_threading(fr->bondedThreading);
2077     GMX_RELEASE_ASSERT(fr->gpuBonded == nullptr, "Should have been deleted earlier, when used");
2078     fr->bondedThreading = nullptr;
2079     delete fr;
2080 }