Merge branch release-5-1 into release-2016
[alexxy/gromacs.git] / src / gromacs / ewald / long-range-correction.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5  * Copyright (c) 2001-2004, The GROMACS development team.
6  * Copyright (c) 2013,2014,2015,2016, 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 /*! \libinternal \file
38  *
39  * \brief This file contains function declarations necessary for
40  * computing energies and forces for the PME long-ranged part (Coulomb
41  * and LJ).
42  *
43  * \author Erik Lindahl <erik@kth.se>
44  * \author Berk Hess <hess@kth.se>
45  * \author Mark Abraham <mark.j.abraham@gmail.com>
46  * \inlibraryapi
47  * \ingroup module_ewald
48  */
49
50 #ifndef GMX_EWALD_LONG_RANGE_CORRECTION_H
51 #define GMX_EWALD_LONG_RANGE_CORRECTION_H
52
53 #include "gromacs/math/vectypes.h"
54 #include "gromacs/mdtypes/commrec.h"
55 #include "gromacs/mdtypes/forcerec.h"
56 #include "gromacs/topology/block.h"
57 #include "gromacs/utility/basedefinitions.h"
58 #include "gromacs/utility/real.h"
59
60 /*! \brief Calculate long-range Ewald correction terms.
61  *
62  * For the group cutoff scheme (only), calculates the correction to
63  * the Ewald sums (electrostatic and/or LJ) due to pairs excluded from
64  * the long-ranged part.
65  *
66  * For both cutoff schemes, but only for Coulomb interactions,
67  * calculates correction for surface dipole terms. */
68 void
69 ewald_LRcorrection(int numAtomsLocal,
70                    t_commrec *cr,
71                    int numThreads, int thread,
72                    t_forcerec *fr,
73                    real *chargeA, real *chargeB,
74                    real *C6A, real *C6B,
75                    real *sigmaA, real *sigmaB,
76                    real *sigma3A, real *sigma3B,
77                    gmx_bool bHaveChargeOrTypePerturbed,
78                    gmx_bool calc_excl_corr,
79                    t_blocka *excl, rvec x[],
80                    matrix box, rvec mu_tot[],
81                    int ewald_geometry, real epsilon_surface,
82                    rvec *f, tensor vir_q, tensor vir_lj,
83                    real *Vcorr_q, real *Vcorr_lj,
84                    real lambda_q, real lambda_lj,
85                    real *dvdlambda_q, real *dvdlambda_lj);
86
87 #endif