Sort all includes in src/gromacs
[alexxy/gromacs.git] / src / gromacs / legacyheaders / mdebin.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, 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 _mdebin_h
39 #define _mdebin_h
40
41 #include <stdio.h>
42
43 #include "gromacs/fileio/enxio.h"
44 #include "gromacs/legacyheaders/ebin.h"
45 #include "gromacs/legacyheaders/typedefs.h"
46 #include "gromacs/legacyheaders/types/state.h"
47
48 #ifdef __cplusplus
49 extern "C" {
50 #endif
51
52 /* The functions & data structures here determine the content for outputting
53    the .edr file; the file format and actual writing is done with functions
54    defined in enxio.h */
55
56 /* forward declaration */
57 typedef struct t_mde_delta_h_coll t_mde_delta_h_coll;
58
59
60 /* This is the collection of energy averages collected during mdrun, and to
61    be written out to the .edr file. */
62 typedef struct {
63     double              delta_t;
64     t_ebin             *ebin;
65     int                 ie, iconrmsd, ib, ivol, idens, ipv, ienthalpy;
66     int                 isvir, ifvir, ipres, ivir, isurft, ipc, itemp, itc, itcb, iu, imu;
67     int                 ivcos, ivisc;
68     int                 nE, nEg, nEc, nTC, nTCP, nU, nNHC;
69     int                *igrp;
70     char              **grpnms;
71     int                 mde_n, mdeb_n;
72     real               *tmp_r;
73     rvec               *tmp_v;
74     gmx_bool            bConstr;
75     gmx_bool            bConstrVir;
76     gmx_bool            bTricl;
77     gmx_bool            bDynBox;
78     gmx_bool            bNHC_trotter;
79     gmx_bool            bPrintNHChains;
80     gmx_bool            bMTTK;
81     gmx_bool            bMu; /* true if dipole is calculated */
82     gmx_bool            bDiagPres;
83     gmx_bool            bVir;
84     gmx_bool            bPress;
85     gmx_bool            bSurft;
86     int                 f_nre;
87     int                 epc;
88     real                ref_p;
89     int                 etc;
90     int                 nCrmsd;
91     gmx_bool            bEner[F_NRE];
92     gmx_bool            bEInd[egNR];
93     char              **print_grpnms;
94
95     FILE               *fp_dhdl; /* the dhdl.xvg output file */
96     double             *dE;      /* energy components for dhdl.xvg output */
97     t_mde_delta_h_coll *dhc;     /* the delta U components (raw data + histogram) */
98     real               *temperatures;
99 } t_mdebin;
100
101
102 /* delta_h block type enum: the kinds of energies written out. */
103 enum
104 {
105     dhbtDH   = 0, /* delta H BAR energy difference*/
106     dhbtDHDL = 1, /* dH/dlambda derivative */
107     dhbtEN,       /* System energy */
108     dhbtPV,       /* pV term */
109     dhbtEXPANDED, /* expanded ensemble statistics */
110     dhbtNR
111 };
112
113
114
115 t_mdebin *init_mdebin(ener_file_t       fp_ene,
116                       const gmx_mtop_t *mtop,
117                       const t_inputrec *ir,
118                       FILE             *fp_dhdl);
119 /* Initiate MD energy bin and write header to energy file. */
120
121 FILE *open_dhdl(const char *filename, const t_inputrec *ir,
122                 const output_env_t oenv);
123 /* Open the dhdl file for output */
124
125 /* update the averaging structures. Called every time
126    the energies are evaluated. */
127 void upd_mdebin(t_mdebin       *md,
128                 gmx_bool        bDoDHDL,
129                 gmx_bool        bSum,
130                 double          time,
131                 real            tmass,
132                 gmx_enerdata_t *enerd,
133                 t_state        *state,
134                 t_lambda       *fep,
135                 t_expanded     *expand,
136                 matrix          lastbox,
137                 tensor          svir,
138                 tensor          fvir,
139                 tensor          vir,
140                 tensor          pres,
141                 gmx_ekindata_t *ekind,
142                 rvec            mu_tot,
143                 gmx_constr_t    constr);
144
145 void upd_mdebin_step(t_mdebin *md);
146 /* Updates only the step count in md */
147
148 void print_ebin_header(FILE *log, gmx_int64_t steps, double time, real lamb);
149
150 void print_ebin(ener_file_t fp_ene, gmx_bool bEne, gmx_bool bDR, gmx_bool bOR,
151                 FILE *log,
152                 gmx_int64_t step, double time,
153                 int mode, gmx_bool bCompact,
154                 t_mdebin *md, t_fcdata *fcd,
155                 gmx_groups_t *groups, t_grpopts *opts);
156
157
158
159 /* Between .edr writes, the averages are history dependent,
160    and that history needs to be retained in checkpoints.
161    These functions set/read the energyhistory_t structure
162    that is written to checkpoints in checkpoint.c */
163
164 /* Set the energyhistory_t data structure from a mdebin structure */
165 void update_energyhistory(energyhistory_t * enerhist, t_mdebin * mdebin);
166
167 /* Read the energyhistory_t data structure to a mdebin structure*/
168 void restore_energyhistory_from_state(t_mdebin        * mdebin,
169                                       energyhistory_t * enerhist);
170
171 #ifdef __cplusplus
172 }
173 #endif
174
175 #endif  /* _mdebin_h */