3908b574df71b50de426632a52541d1b48f7e4b0
[alexxy/gromacs.git] / include / mdrun.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  * check out http://www.gromacs.org for more information.
7  * Copyright (c) 2012, by the GROMACS development team, led by
8  * David van der Spoel, Berk Hess, Erik Lindahl, and including many
9  * others, as listed in the AUTHORS file in the top-level source
10  * directory and at http://www.gromacs.org.
11  *
12  * GROMACS is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU Lesser General Public License
14  * as published by the Free Software Foundation; either version 2.1
15  * of the License, or (at your option) any later version.
16  *
17  * GROMACS is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20  * Lesser General Public License for more details.
21  *
22  * You should have received a copy of the GNU Lesser General Public
23  * License along with GROMACS; if not, see
24  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
26  *
27  * If you want to redistribute modifications to GROMACS, please
28  * consider that scientific software is very special. Version
29  * control is crucial - bugs must be traceable. We will be happy to
30  * consider code for inclusion in the official distribution, but
31  * derived work must not be called official GROMACS. Details are found
32  * in the README & COPYING files - if they are missing, get the
33  * official version at http://www.gromacs.org.
34  *
35  * To help us fund GROMACS development, we humbly ask that you cite
36  * the research papers on the package. Check out http://www.gromacs.org.
37  */
38
39 #ifndef _mdrun_h
40 #define _mdrun_h
41
42 #include <stdio.h>
43 #include <time.h>
44 #include "visibility.h"
45 #include "typedefs.h"
46 #include "network.h"
47 #include "sim_util.h"
48 #include "tgroup.h"
49 #include "filenm.h"
50 #include "mshift.h"
51 #include "force.h"
52 #include "edsam.h"
53 #include "mdebin.h"
54 #include "vcm.h"
55 #include "vsite.h"
56 #include "pull.h"
57 #include "update.h"
58 #include "types/membedt.h"
59 #include "types/globsig.h"
60
61
62 #ifdef GMX_THREAD_MPI
63 #include "thread_mpi/threads.h"
64 #endif
65
66 #ifdef __cplusplus
67 extern "C" {
68 #endif
69
70 #define MD_POLARISE       (1<<2)
71 #define MD_IONIZE         (1<<3)
72 #define MD_RERUN          (1<<4)
73 #define MD_RERUN_VSITE    (1<<5)
74 #define MD_FFSCAN         (1<<6)
75 #define MD_SEPPOT         (1<<7)
76 #define MD_PARTDEC        (1<<9)
77 #define MD_DDBONDCHECK    (1<<10)
78 #define MD_DDBONDCOMM     (1<<11)
79 #define MD_CONFOUT        (1<<12)
80 #define MD_REPRODUCIBLE   (1<<13)
81 #define MD_READ_RNG       (1<<14)
82 #define MD_APPENDFILES    (1<<15)
83 #define MD_APPENDFILESSET (1<<21)
84 #define MD_KEEPANDNUMCPT  (1<<16)
85 #define MD_READ_EKIN      (1<<17)
86 #define MD_STARTFROMCPT   (1<<18)
87 #define MD_RESETCOUNTERSHALFWAY (1<<19)
88 #define MD_TUNEPME        (1<<20)
89 #define MD_TESTVERLET     (1<<22)
90
91 enum {
92   ddnoSEL, ddnoINTERLEAVE, ddnoPP_PME, ddnoCARTESIAN, ddnoNR
93 };
94
95 typedef struct {
96     int      nthreads_tot;        /* Total number of threads requested (TMPI) */
97     int      nthreads_tmpi;       /* Number of TMPI threads requested         */
98     int      nthreads_omp;        /* Number of OpenMP threads requested       */
99     int      nthreads_omp_pme;    /* As nthreads_omp, but for PME only nodes  */
100     gmx_bool bThreadPinning;      /* Pin OpenMP threads to cores?             */
101     gmx_bool bPinHyperthreading;  /* Pin pairs of threads to physical cores   */
102     int      core_pinning_offset; /* Physical core pinning offset             */
103     char    *gpu_id;              /* GPU id's to use, each specified as chars */
104 } gmx_hw_opt_t;
105
106 /* Variables for temporary use with the deform option,
107  * used in runner.c and md.c.
108  * (These variables should be stored in the tpx file.)
109  */
110 extern gmx_large_int_t     deform_init_init_step_tpx;
111 extern matrix              deform_init_box_tpx;
112 #ifdef GMX_THREAD_MPI
113 extern tMPI_Thread_mutex_t deform_init_box_mutex;
114
115 /* The minimum number of atoms per tMPI thread. With fewer atoms than this,
116  * the number of threads will get lowered.
117  */
118 #define MIN_ATOMS_PER_MPI_THREAD    90
119 #define MIN_ATOMS_PER_GPU           900
120 #endif
121
122
123 typedef double gmx_integrator_t(FILE *log,t_commrec *cr,
124                                 int nfile,const t_filenm fnm[],
125                                 const output_env_t oenv, gmx_bool bVerbose,
126                                 gmx_bool bCompact, int nstglobalcomm,
127                                 gmx_vsite_t *vsite,gmx_constr_t constr,
128                                 int stepout,
129                                 t_inputrec *inputrec,
130                                 gmx_mtop_t *mtop,t_fcdata *fcd,
131                                 t_state *state,
132                                 t_mdatoms *mdatoms,
133                                 t_nrnb *nrnb,gmx_wallcycle_t wcycle,
134                                 gmx_edsam_t ed, 
135                                 t_forcerec *fr,
136                                 int repl_ex_nst, int repl_ex_nex, int repl_ex_seed,
137                                 gmx_membed_t membed,
138                                 real cpt_period,real max_hours,
139                                 const char *deviceOptions,
140                                 unsigned long Flags,
141                                 gmx_runtime_t *runtime);
142
143 /* ROUTINES from md.c */
144
145 gmx_integrator_t do_md;
146
147 gmx_integrator_t do_md_openmm;
148
149
150
151 /* ROUTINES from minimize.c */
152
153 GMX_LIBMD_EXPORT
154 gmx_integrator_t do_steep;
155 /* Do steepest descents EM */
156
157 GMX_LIBMD_EXPORT
158 gmx_integrator_t do_cg;
159 /* Do conjugate gradient EM */
160
161 GMX_LIBMD_EXPORT
162 gmx_integrator_t do_lbfgs;
163 /* Do conjugate gradient L-BFGS */
164
165 GMX_LIBMD_EXPORT
166 gmx_integrator_t do_nm;
167 /* Do normal mode analysis */
168
169 /* ROUTINES from tpi.c */
170
171 GMX_LIBMD_EXPORT
172 gmx_integrator_t do_tpi;
173 /* Do test particle insertion */
174
175 void init_npt_masses(t_inputrec *ir, t_state *state, t_extmass *MassQ, gmx_bool bInit);
176
177 GMX_LIBMD_EXPORT
178 int ExpandedEnsembleDynamics(FILE *log,t_inputrec *ir, gmx_enerdata_t *enerd,
179                              t_state *state, t_extmass *MassQ, df_history_t *dfhist,
180                              gmx_large_int_t step, gmx_rng_t mcrng,
181                              rvec *v, t_mdatoms *mdatoms);
182
183 GMX_LIBMD_EXPORT
184 void PrintFreeEnergyInfoToFile(FILE *outfile, t_lambda *fep, t_expanded *expand, t_simtemp *simtemp, df_history_t *dfhist,
185                                int nlam, int frequency, gmx_large_int_t step);
186
187 GMX_LIBMD_EXPORT
188 void get_mc_state(gmx_rng_t rng,t_state *state);
189
190 GMX_LIBMD_EXPORT
191 void set_mc_state(gmx_rng_t rng,t_state *state);
192
193 /* check the version */
194 GMX_LIBMD_EXPORT
195 void check_ir_old_tpx_versions(t_commrec *cr,FILE *fplog,
196                                t_inputrec *ir,gmx_mtop_t *mtop);
197
198 /* Allocate and initialize node-local state entries. */
199 GMX_LIBMD_EXPORT
200 void set_state_entries(t_state *state,const t_inputrec *ir,int nnodes);
201
202 /* Broadcast the data for a simulation, and allocate node-specific settings
203    such as rng generators. */
204 GMX_LIBMD_EXPORT
205 void init_parallel(FILE *log, t_commrec *cr, t_inputrec *inputrec,
206                           gmx_mtop_t *mtop);
207
208 int mdrunner(gmx_hw_opt_t *hw_opt,
209              FILE *fplog,t_commrec *cr,int nfile,
210              const t_filenm fnm[], const output_env_t oenv, gmx_bool bVerbose,
211              gmx_bool bCompact, int nstglobalcomm, ivec ddxyz,int dd_node_order,
212              real rdd, real rconstr, const char *dddlb_opt,real dlb_scale,
213              const char *ddcsx,const char *ddcsy,const char *ddcsz,
214              const char *nbpu_opt,
215              int nsteps_cmdline, int nstepout, int resetstep,
216              int nmultisim, int repl_ex_nst, int repl_ex_nex,
217              int repl_ex_seed, real pforce,real cpt_period,real max_hours,
218              const char *deviceOptions, unsigned long Flags);
219 /* Driver routine, that calls the different methods */
220
221 #ifdef __cplusplus
222 }
223 #endif
224
225 #endif  /* _mdrun_h */