Merge branch 'release-4-6'
[alexxy/gromacs.git] / src / gromacs / legacyheaders / types / forcerec.h
1 /*
2  *
3  *                This source code is part of
4  *
5  *                 G   R   O   M   A   C   S
6  *
7  *          GROningen MAchine for Chemical Simulations
8  *
9  *                        VERSION 3.2.0
10  * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
11  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
12  * Copyright (c) 2001-2004, The GROMACS development team,
13  * check out http://www.gromacs.org for more information.
14
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * If you want to redistribute modifications, please consider that
21  * scientific software is very special. Version control is crucial -
22  * bugs must be traceable. We will be happy to consider code for
23  * inclusion in the official distribution, but derived work must not
24  * be called official GROMACS. Details are found in the README & COPYING
25  * files - if they are missing, get the official version at www.gromacs.org.
26  *
27  * To help us fund GROMACS development, we humbly ask that you cite
28  * the papers on the package - you can find them in the top README file.
29  *
30  * For more info, check our website at http://www.gromacs.org
31  *
32  * And Hey:
33  * GRoups of Organic Molecules in ACtion for Science
34  */
35
36 #include "ns.h"
37 #include "genborn.h"
38 #include "qmmmrec.h"
39 #include "idef.h"
40 #include "nb_verlet.h"
41 #include "interaction_const.h"
42 #include "hw_info.h"
43
44 #ifdef __cplusplus
45 extern "C" {
46 #endif
47 #if 0
48 } /* fixes auto-indentation problems */
49 #endif
50
51 /* Abstract type for PME that is defined only in the routine that use them. */
52 typedef struct gmx_pme *gmx_pme_t;
53
54
55
56 /* Structure describing the data in a single table */
57 typedef struct
58 {
59     enum gmx_table_interaction  interaction; /* Types of interactions stored in this table */
60     enum gmx_table_format       format;      /* Interpolation type and data format */
61
62     real                        r;           /* range of the table */
63     int                         n;           /* n+1 is the number of table points */
64     real                        scale;       /* distance (nm) between two table points */
65     real                        scale_exp;   /* distance for exponential part of VdW table, not always used */
66     real *                      data;        /* the actual table data */
67
68     /* Some information about the table layout. This can also be derived from the interpolation
69      * type and the table interactions, but it is convenient to have here for sanity checks, and it makes it
70      * much easier to access the tables in the nonbonded kernels when we can set the data from variables.
71      * It is always true that stride = formatsize*ninteractions
72      */
73     int                         formatsize;    /* Number of fp variables for each table point (1 for F, 2 for VF, 4 for YFGH, etc.) */
74     int                         ninteractions; /* Number of interactions in table, 1 for coul-only, 3 for coul+rep+disp. */
75     int                         stride;        /* Distance to next table point (number of fp variables per table point in total) */
76 } t_forcetable;
77
78 typedef struct
79 {
80     t_forcetable   table_elec;
81     t_forcetable   table_vdw;
82     t_forcetable   table_elec_vdw;
83
84     /* The actual neighbor lists, short and long range, see enum above
85      * for definition of neighborlist indices.
86      */
87     t_nblist nlist_sr[eNL_NR];
88     t_nblist nlist_lr[eNL_NR];
89 } t_nblists;
90
91 /* macros for the cginfo data in forcerec */
92 /* The maximum cg size in cginfo is 63
93  * because we only have space for 6 bits in cginfo,
94  * this cg size entry is actually only read with domain decomposition.
95  * But there is a smaller limit due to the t_excl data structure
96  * which is defined in nblist.h.
97  */
98 #define SET_CGINFO_GID(cgi, gid)      (cgi) = (((cgi)  &  ~65535)  |  (gid)   )
99 #define GET_CGINFO_GID(cgi)        ( (cgi)            &   65535)
100 #define SET_CGINFO_EXCL_INTRA(cgi)   (cgi) =  ((cgi)  |  (1<<16))
101 #define GET_CGINFO_EXCL_INTRA(cgi) ( (cgi)            &  (1<<16))
102 #define SET_CGINFO_EXCL_INTER(cgi)   (cgi) =  ((cgi)  |  (1<<17))
103 #define GET_CGINFO_EXCL_INTER(cgi) ( (cgi)            &  (1<<17))
104 #define SET_CGINFO_SOLOPT(cgi, opt)   (cgi) = (((cgi)  & ~(3<<18)) | ((opt)<<18))
105 #define GET_CGINFO_SOLOPT(cgi)     (((cgi)>>18)       &   3)
106 #define SET_CGINFO_CONSTR(cgi)       (cgi) =  ((cgi)  |  (1<<20))
107 #define GET_CGINFO_CONSTR(cgi)     ( (cgi)            &  (1<<20))
108 #define SET_CGINFO_SETTLE(cgi)       (cgi) =  ((cgi)  |  (1<<21))
109 #define GET_CGINFO_SETTLE(cgi)     ( (cgi)            &  (1<<21))
110 /* This bit is only used with bBondComm in the domain decomposition */
111 #define SET_CGINFO_BOND_INTER(cgi)   (cgi) =  ((cgi)  |  (1<<22))
112 #define GET_CGINFO_BOND_INTER(cgi) ( (cgi)            &  (1<<22))
113 #define SET_CGINFO_HAS_VDW(cgi)      (cgi) =  ((cgi)  |  (1<<23))
114 #define GET_CGINFO_HAS_VDW(cgi)    ( (cgi)            &  (1<<23))
115 #define SET_CGINFO_HAS_Q(cgi)        (cgi) =  ((cgi)  |  (1<<24))
116 #define GET_CGINFO_HAS_Q(cgi)      ( (cgi)            &  (1<<24))
117 #define SET_CGINFO_NATOMS(cgi, opt)   (cgi) = (((cgi)  & ~(63<<25)) | ((opt)<<25))
118 #define GET_CGINFO_NATOMS(cgi)     (((cgi)>>25)       &   63)
119
120
121 /* Value to be used in mdrun for an infinite cut-off.
122  * Since we need to compare with the cut-off squared,
123  * this value should be slighlty smaller than sqrt(GMX_FLOAT_MAX).
124  */
125 #define GMX_CUTOFF_INF 1E+18
126
127 /* enums for the neighborlist type */
128 enum {
129     enbvdwNONE, enbvdwLJ, enbvdwBHAM, enbvdwTAB, enbvdwNR
130 };
131 /* OOR is "one over r" -- standard coul */
132 enum {
133     enbcoulNONE, enbcoulOOR, enbcoulRF, enbcoulTAB, enbcoulGB, enbcoulFEWALD, enbcoulNR
134 };
135
136 enum {
137     egCOULSR, egLJSR, egBHAMSR, egCOULLR, egLJLR, egBHAMLR,
138     egCOUL14, egLJ14, egGB, egNR
139 };
140
141 typedef struct {
142     int   nener;      /* The number of energy group pairs     */
143     real *ener[egNR]; /* Energy terms for each pair of groups */
144 } gmx_grppairener_t;
145
146 typedef struct {
147     real              term[F_NRE];         /* The energies for all different interaction types */
148     gmx_grppairener_t grpp;
149     double            dvdl_lin[efptNR];    /* Contributions to dvdl with linear lam-dependence */
150     double            dvdl_nonlin[efptNR]; /* Idem, but non-linear dependence                  */
151     int               n_lambda;
152     int               fep_state;           /*current fep state -- just for printing */
153     double           *enerpart_lambda;     /* Partial energy for lambda and flambda[] */
154     real              foreign_term[F_NRE]; /* alternate array for storing foreign lambda energies */
155     gmx_grppairener_t foreign_grpp;        /* alternate array for storing foreign lambda energies */
156 } gmx_enerdata_t;
157 /* The idea is that dvdl terms with linear lambda dependence will be added
158  * automatically to enerpart_lambda. Terms with non-linear lambda dependence
159  * should explicitly determine the energies at foreign lambda points
160  * when n_lambda > 0.
161  */
162
163 typedef struct {
164     int  cg_start;
165     int  cg_end;
166     int  cg_mod;
167     int *cginfo;
168 } cginfo_mb_t;
169
170
171 /* ewald table type */
172 typedef struct ewald_tab *ewald_tab_t;
173
174 typedef struct {
175     rvec             *f;
176     int               f_nalloc;
177     unsigned          red_mask; /* Mask for marking which parts of f are filled */
178     rvec             *fshift;
179     real              ener[F_NRE];
180     gmx_grppairener_t grpp;
181     real              Vcorr;
182     real              dvdl[efptNR];
183     tensor            vir;
184 } f_thread_t;
185
186 typedef struct {
187     interaction_const_t *ic;
188
189     /* Domain Decomposition */
190     gmx_bool bDomDec;
191
192     /* PBC stuff */
193     int                  ePBC;
194     gmx_bool             bMolPBC;
195     int                  rc_scaling;
196     rvec                 posres_com;
197     rvec                 posres_comB;
198
199     const gmx_hw_info_t *hwinfo;
200     const gmx_gpu_opt_t *gpu_opt;
201     gmx_bool             use_cpu_acceleration;
202
203     /* Interaction for calculated in kernels. In many cases this is similar to
204      * the electrostatics settings in the inputrecord, but the difference is that
205      * these variables always specify the actual interaction in the kernel - if
206      * we are tabulating reaction-field the inputrec will say reaction-field, but
207      * the kernel interaction will say cubic-spline-table. To be safe we also
208      * have a kernel-specific setting for the modifiers - if the interaction is
209      * tabulated we already included the inputrec modification there, so the kernel
210      * modification setting will say 'none' in that case.
211      */
212     int nbkernel_elec_interaction;
213     int nbkernel_vdw_interaction;
214     int nbkernel_elec_modifier;
215     int nbkernel_vdw_modifier;
216
217     /* Use special N*N kernels? */
218     gmx_bool bAllvsAll;
219     /* Private work data */
220     void    *AllvsAll_work;
221     void    *AllvsAll_workgb;
222
223     /* Cut-Off stuff.
224      * Infinite cut-off's will be GMX_CUTOFF_INF (unlike in t_inputrec: 0).
225      */
226     real rlist, rlistlong;
227
228     /* Dielectric constant resp. multiplication factor for charges */
229     real zsquare, temp;
230     real epsilon_r, epsilon_rf, epsfac;
231
232     /* Constants for reaction fields */
233     real kappa, k_rf, c_rf;
234
235     /* Charge sum and dipole for topology A/B ([0]/[1]) for Ewald corrections */
236     double qsum[2];
237     double q2sum[2];
238     rvec   mu_tot[2];
239
240     /* Dispersion correction stuff */
241     int  eDispCorr;
242
243     /* The shift of the shift or user potentials */
244     real enershiftsix;
245     real enershifttwelve;
246     /* Integrated differces for energy and virial with cut-off functions */
247     real enerdiffsix;
248     real enerdifftwelve;
249     real virdiffsix;
250     real virdifftwelve;
251     /* Constant for long range dispersion correction (average dispersion)
252      * for topology A/B ([0]/[1]) */
253     real avcsix[2];
254     /* Constant for long range repulsion term. Relative difference of about
255      * 0.1 percent with 0.8 nm cutoffs. But hey, it's cheap anyway...
256      */
257     real avctwelve[2];
258
259     /* Fudge factors */
260     real fudgeQQ;
261
262     /* Table stuff */
263     gmx_bool     bcoultab;
264     gmx_bool     bvdwtab;
265     /* The normal tables are in the nblists struct(s) below */
266     t_forcetable tab14; /* for 1-4 interactions only */
267
268     /* PPPM & Shifting stuff */
269     int   coulomb_modifier;
270     real  rcoulomb_switch, rcoulomb;
271     real *phi;
272
273     /* VdW stuff */
274     int    vdw_modifier;
275     double reppow;
276     real   rvdw_switch, rvdw;
277     real   bham_b_max;
278
279     /* Free energy */
280     int      efep;
281     real     sc_alphavdw;
282     real     sc_alphacoul;
283     int      sc_power;
284     real     sc_r_power;
285     real     sc_sigma6_def;
286     real     sc_sigma6_min;
287     gmx_bool bSepDVDL;
288
289     /* NS Stuff */
290     int  eeltype;
291     int  vdwtype;
292     int  cg0, hcg;
293     /* solvent_opt contains the enum for the most common solvent
294      * in the system, which will be optimized.
295      * It can be set to esolNO to disable all water optimization */
296     int          solvent_opt;
297     int          nWatMol;
298     gmx_bool     bGrid;
299     gmx_bool     bExcl_IntraCGAll_InterCGNone;
300     cginfo_mb_t *cginfo_mb;
301     int         *cginfo;
302     rvec        *cg_cm;
303     int          cg_nalloc;
304     rvec        *shift_vec;
305
306     /* The neighborlists including tables */
307     int                 nnblists;
308     int                *gid2nblists;
309     t_nblists          *nblists;
310
311     int                 cutoff_scheme; /* group- or Verlet-style cutoff */
312     gmx_bool            bNonbonded;    /* true if nonbonded calculations are *not* turned off */
313     nonbonded_verlet_t *nbv;
314
315     /* The wall tables (if used) */
316     int            nwall;
317     t_forcetable **wall_tab;
318
319     /* The number of charge groups participating in do_force_lowlevel */
320     int ncg_force;
321     /* The number of atoms participating in do_force_lowlevel */
322     int natoms_force;
323     /* The number of atoms participating in force and constraints */
324     int natoms_force_constr;
325     /* The allocation size of vectors of size natoms_force */
326     int nalloc_force;
327
328     /* Twin Range stuff, f_twin has size natoms_force */
329     gmx_bool bTwinRange;
330     int      nlr;
331     rvec    *f_twin;
332
333     /* Forces that should not enter into the virial summation:
334      * PPPM/PME/Ewald/posres
335      */
336     gmx_bool bF_NoVirSum;
337     int      f_novirsum_n;
338     int      f_novirsum_nalloc;
339     rvec    *f_novirsum_alloc;
340     /* Pointer that points to f_novirsum_alloc when pressure is calcaluted,
341      * points to the normal force vectors wen pressure is not requested.
342      */
343     rvec *f_novirsum;
344
345     /* Long-range forces and virial for PPPM/PME/Ewald */
346     gmx_pme_t pmedata;
347     tensor    vir_el_recip;
348
349     /* PME/Ewald stuff */
350     gmx_bool    bEwald;
351     real        ewaldcoeff;
352     ewald_tab_t ewald_table;
353
354     /* Virial Stuff */
355     rvec *fshift;
356     rvec  vir_diag_posres;
357     dvec  vir_wall_z;
358
359     /* Non bonded Parameter lists */
360     int      ntype; /* Number of atom types */
361     gmx_bool bBHAM;
362     real    *nbfp;
363
364     /* Energy group pair flags */
365     int *egp_flags;
366
367     /* Shell molecular dynamics flexible constraints */
368     real fc_stepsize;
369
370     /* Generalized born implicit solvent */
371     gmx_bool       bGB;
372     /* Generalized born stuff */
373     real           gb_epsilon_solvent;
374     /* Table data for GB */
375     t_forcetable   gbtab;
376     /* VdW radius for each atomtype (dim is thus ntype) */
377     real          *atype_radius;
378     /* Effective radius (derived from effective volume) for each type */
379     real          *atype_vol;
380     /* Implicit solvent - surface tension for each atomtype */
381     real          *atype_surftens;
382     /* Implicit solvent - radius for GB calculation */
383     real          *atype_gb_radius;
384     /* Implicit solvent - overlap for HCT model */
385     real          *atype_S_hct;
386     /* Generalized born interaction data */
387     gmx_genborn_t *born;
388
389     /* Table scale for GB */
390     real gbtabscale;
391     /* Table range for GB */
392     real gbtabr;
393     /* GB neighborlists (the sr list will contain for each atom all other atoms
394      * (for use in the SA calculation) and the lr list will contain
395      * for each atom all atoms 1-4 or greater (for use in the GB calculation)
396      */
397     t_nblist gblist_sr;
398     t_nblist gblist_lr;
399     t_nblist gblist;
400
401     /* Inverse square root of the Born radii for implicit solvent */
402     real *invsqrta;
403     /* Derivatives of the potential with respect to the Born radii */
404     real *dvda;
405     /* Derivatives of the Born radii with respect to coordinates */
406     real *dadx;
407     real *dadx_rawptr;
408     int   nalloc_dadx; /* Allocated size of dadx */
409
410     /* If > 0 signals Test Particle Insertion,
411      * the value is the number of atoms of the molecule to insert
412      * Only the energy difference due to the addition of the last molecule
413      * should be calculated.
414      */
415     gmx_bool n_tpi;
416
417     /* Neighbor searching stuff */
418     gmx_ns_t ns;
419
420     /* QMMM stuff */
421     gmx_bool         bQMMM;
422     t_QMMMrec       *qr;
423
424     /* QM-MM neighborlists */
425     t_nblist QMMMlist;
426
427     /* Limit for printing large forces, negative is don't print */
428     real print_force;
429
430     /* coarse load balancing time measurement */
431     double t_fnbf;
432     double t_wait;
433     int    timesteps;
434
435     /* parameter needed for AdResS simulation */
436     int             adress_type;
437     gmx_bool        badress_tf_full_box;
438     real            adress_const_wf;
439     real            adress_ex_width;
440     real            adress_hy_width;
441     int             adress_icor;
442     int             adress_site;
443     rvec            adress_refs;
444     int             n_adress_tf_grps;
445     int           * adress_tf_table_index;
446     int            *adress_group_explicit;
447     t_forcetable *  atf_tabs;
448     real            adress_ex_forcecap;
449     gmx_bool        adress_do_hybridpairs;
450
451     /* User determined parameters, copied from the inputrec */
452     int  userint1;
453     int  userint2;
454     int  userint3;
455     int  userint4;
456     real userreal1;
457     real userreal2;
458     real userreal3;
459     real userreal4;
460
461     /* Thread local force and energy data */
462     /* FIXME move to bonded_thread_data_t */
463     int         nthreads;
464     int         red_ashift;
465     int         red_nblock;
466     f_thread_t *f_t;
467
468     /* Exclusion load distribution over the threads */
469     int  *excl_load;
470 } t_forcerec;
471
472 /* Important: Starting with Gromacs-4.6, the values of c6 and c12 in the nbfp array have
473  * been scaled by 6.0 or 12.0 to save flops in the kernels. We have corrected this everywhere
474  * in the code, but beware if you are using these macros externally.
475  */
476 #define C6(nbfp, ntp, ai, aj)     (nbfp)[2*((ntp)*(ai)+(aj))]
477 #define C12(nbfp, ntp, ai, aj)    (nbfp)[2*((ntp)*(ai)+(aj))+1]
478 #define BHAMC(nbfp, ntp, ai, aj)  (nbfp)[3*((ntp)*(ai)+(aj))]
479 #define BHAMA(nbfp, ntp, ai, aj)  (nbfp)[3*((ntp)*(ai)+(aj))+1]
480 #define BHAMB(nbfp, ntp, ai, aj)  (nbfp)[3*((ntp)*(ai)+(aj))+2]
481
482 #ifdef __cplusplus
483 }
484 #endif