Move essential dynamics / flooding code to separate directory
[alexxy/gromacs.git] / src / gromacs / legacyheaders / 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  * Copyright (c) 2013, 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
38 #ifndef _mdrun_h
39 #define _mdrun_h
40
41 #include <stdio.h>
42 #include <time.h>
43 #include "typedefs.h"
44 #include "network.h"
45 #include "sim_util.h"
46 #include "tgroup.h"
47 #include "../fileio/filenm.h"
48 #include "mshift.h"
49 #include "mdebin.h"
50 #include "vcm.h"
51 #include "vsite.h"
52 #include "pull.h"
53 #include "update.h"
54 #include "types/membedt.h"
55 #include "types/globsig.h"
56
57 #include "thread_mpi/threads.h"
58
59 #ifdef __cplusplus
60 extern "C" {
61 #endif
62
63 #define MD_POLARISE       (1<<2)
64 #define MD_RERUN          (1<<4)
65 #define MD_RERUN_VSITE    (1<<5)
66 #define MD_SEPPOT         (1<<7)
67 #define MD_PARTDEC        (1<<9)
68 #define MD_DDBONDCHECK    (1<<10)
69 #define MD_DDBONDCOMM     (1<<11)
70 #define MD_CONFOUT        (1<<12)
71 #define MD_REPRODUCIBLE   (1<<13)
72 #define MD_READ_RNG       (1<<14)
73 #define MD_APPENDFILES    (1<<15)
74 #define MD_APPENDFILESSET (1<<21)
75 #define MD_KEEPANDNUMCPT  (1<<16)
76 #define MD_READ_EKIN      (1<<17)
77 #define MD_STARTFROMCPT   (1<<18)
78 #define MD_RESETCOUNTERSHALFWAY (1<<19)
79 #define MD_TUNEPME        (1<<20)
80 #define MD_TESTVERLET     (1<<22)
81
82 /* The options for the domain decomposition MPI task ordering */
83 enum {
84     ddnoSEL, ddnoINTERLEAVE, ddnoPP_PME, ddnoCARTESIAN, ddnoNR
85 };
86
87 /* Variables for temporary use with the deform option,
88  * used in runner.c and md.c.
89  * (These variables should be stored in the tpx file.)
90  */
91 extern gmx_int64_t         deform_init_init_step_tpx;
92 extern matrix              deform_init_box_tpx;
93 extern tMPI_Thread_mutex_t deform_init_box_mutex;
94
95 #ifdef GMX_THREAD_MPI
96 /* The minimum number of atoms per tMPI thread. With fewer atoms than this,
97  * the number of threads will get lowered.
98  */
99 #define MIN_ATOMS_PER_MPI_THREAD    90
100 #define MIN_ATOMS_PER_GPU           900
101 #endif
102
103
104 typedef double gmx_integrator_t (FILE *log, t_commrec *cr,
105                                  int nfile, const t_filenm fnm[],
106                                  const output_env_t oenv, gmx_bool bVerbose,
107                                  gmx_bool bCompact, int nstglobalcomm,
108                                  gmx_vsite_t *vsite, gmx_constr_t constr,
109                                  int stepout,
110                                  t_inputrec *inputrec,
111                                  gmx_mtop_t *mtop, t_fcdata *fcd,
112                                  t_state *state,
113                                  t_mdatoms *mdatoms,
114                                  t_nrnb *nrnb, gmx_wallcycle_t wcycle,
115                                  gmx_edsam_t ed,
116                                  t_forcerec *fr,
117                                  int repl_ex_nst, int repl_ex_nex, int repl_ex_seed,
118                                  gmx_membed_t membed,
119                                  real cpt_period, real max_hours,
120                                  const char *deviceOptions,
121                                  unsigned long Flags,
122                                  gmx_walltime_accounting_t walltime_accounting);
123
124 /* ROUTINES from md.c */
125
126 gmx_integrator_t do_md;
127
128
129 /* ROUTINES from minimize.c */
130
131 gmx_integrator_t do_steep;
132 /* Do steepest descents EM */
133
134 gmx_integrator_t do_cg;
135 /* Do conjugate gradient EM */
136
137 gmx_integrator_t do_lbfgs;
138 /* Do conjugate gradient L-BFGS */
139
140 gmx_integrator_t do_nm;
141 /* Do normal mode analysis */
142
143 /* ROUTINES from tpi.c */
144
145 gmx_integrator_t do_tpi;
146 /* Do test particle insertion */
147
148 void init_npt_masses(t_inputrec *ir, t_state *state, t_extmass *MassQ, gmx_bool bInit);
149
150 void init_expanded_ensemble(gmx_bool bStateFromCP, t_inputrec *ir, gmx_rng_t *mcrng, df_history_t *dfhist);
151
152 int ExpandedEnsembleDynamics(FILE *log, t_inputrec *ir, gmx_enerdata_t *enerd,
153                              t_state *state, t_extmass *MassQ, int fep_state, df_history_t *dfhist,
154                              gmx_int64_t step, gmx_rng_t mcrng,
155                              rvec *v, t_mdatoms *mdatoms);
156
157 void PrintFreeEnergyInfoToFile(FILE *outfile, t_lambda *fep, t_expanded *expand, t_simtemp *simtemp, df_history_t *dfhist,
158                                int fep_state, int frequency, gmx_int64_t step);
159
160 void get_mc_state(gmx_rng_t rng, t_state *state);
161
162 void set_mc_state(gmx_rng_t rng, t_state *state);
163
164 /* check the version */
165 void check_ir_old_tpx_versions(t_commrec *cr, FILE *fplog,
166                                t_inputrec *ir, gmx_mtop_t *mtop);
167
168 /* Allocate and initialize node-local state entries. */
169 void set_state_entries(t_state *state, const t_inputrec *ir, int nnodes);
170
171 /* Broadcast the data for a simulation, and allocate node-specific settings
172    such as rng generators. */
173 void init_parallel(t_commrec *cr, t_inputrec *inputrec,
174                    gmx_mtop_t *mtop);
175
176 int mdrunner(gmx_hw_opt_t *hw_opt,
177              FILE *fplog, t_commrec *cr, int nfile,
178              const t_filenm fnm[], const output_env_t oenv, gmx_bool bVerbose,
179              gmx_bool bCompact, int nstglobalcomm, ivec ddxyz, int dd_node_order,
180              real rdd, real rconstr, const char *dddlb_opt, real dlb_scale,
181              const char *ddcsx, const char *ddcsy, const char *ddcsz,
182              const char *nbpu_opt, int nstlist_cmdline,
183              gmx_int64_t nsteps_cmdline, int nstepout, int resetstep,
184              int nmultisim, int repl_ex_nst, int repl_ex_nex,
185              int repl_ex_seed, real pforce, real cpt_period, real max_hours,
186              const char *deviceOptions, unsigned long Flags);
187 /* Driver routine, that calls the different methods */
188
189 #ifdef __cplusplus
190 }
191 #endif
192
193 #endif  /* _mdrun_h */