2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team.
6 * Copyright (c) 2012,2014,2015,2017,2018, 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.
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.
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.
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.
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.
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.
37 /* This file is completely threadsafe - keep it that way! */
45 #include "gromacs/math/units.h"
46 #include "gromacs/math/utilities.h"
47 #include "gromacs/math/vec.h"
48 #include "gromacs/topology/ifunc.h"
49 #include "gromacs/trajectory/energyframe.h"
50 #include "gromacs/utility/cstringutil.h"
51 #include "gromacs/utility/fatalerror.h"
52 #include "gromacs/utility/smalloc.h"
63 void done_ebin(t_ebin
*eb
)
65 for (int i
= 0; i
< eb
->nener
; i
++)
67 sfree(eb
->enm
[i
].name
);
68 sfree(eb
->enm
[i
].unit
);
75 int get_ebin_space(t_ebin
*eb
, int nener
, const char *const enm
[], const char *unit
)
83 srenew(eb
->e
, eb
->nener
);
84 srenew(eb
->e_sim
, eb
->nener
);
85 srenew(eb
->enm
, eb
->nener
);
86 for (i
= index
; (i
< eb
->nener
); i
++)
93 eb
->e_sim
[i
].esum
= 0;
94 eb
->enm
[i
].name
= gmx_strdup(enm
[i
-index
]);
97 eb
->enm
[i
].unit
= gmx_strdup(unit
);
101 /* Determine the unit from the longname.
102 * These units should have been defined in ifunc.c
103 * But even better would be if all interactions functions
104 * return energies and all non-interaction function
105 * entries would be removed from the ifunc array.
108 for (f
= 0; f
< F_NRE
; f
++)
110 if (strcmp(eb
->enm
[i
].name
,
111 interaction_function
[f
].longname
) == 0)
113 /* Only the terms in this list are not energies */
116 case F_DISRESVIOL
: u
= unit_length
; break;
117 case F_ORIRESDEV
: u
= "obs"; break;
118 case F_TEMP
: u
= unit_temp_K
; break;
120 case F_PRES
: u
= unit_pres_bar
; break;
124 eb
->enm
[i
].unit
= gmx_strdup(u
);
131 void add_ebin(t_ebin
*eb
, int index
, int nener
, const real ener
[], gmx_bool bSum
)
134 double e
, invmm
, diff
;
137 if ((index
+nener
> eb
->nener
) || (index
< 0))
139 gmx_fatal(FARGS
, "%s-%d: Energies out of range: index=%d nener=%d maxener=%d",
140 __FILE__
, __LINE__
, index
, nener
, eb
->nener
);
143 eg
= &(eb
->e
[index
]);
145 for (i
= 0; (i
< nener
); i
++)
152 egs
= &(eb
->e_sim
[index
]);
158 for (i
= 0; (i
< nener
); i
++)
161 eg
[i
].esum
= ener
[i
];
162 egs
[i
].esum
+= ener
[i
];
167 invmm
= (1.0/m
)/(m
+1.0);
169 for (i
= 0; (i
< nener
); i
++)
171 /* Value for this component */
174 /* first update sigma, then sum */
175 diff
= eg
[i
].esum
- m
*e
;
176 eg
[i
].eav
+= diff
*diff
*invmm
;
184 void ebin_increase_count(t_ebin
*eb
, gmx_bool bSum
)
196 void reset_ebin_sums(t_ebin
*eb
)
200 /* The actual sums are cleared when the next frame is stored */
203 void pr_ebin(FILE *fp
, t_ebin
*eb
, int index
, int nener
, int nperline
,
204 int prmode
, gmx_bool bPrHead
)
212 if (index
< 0 || index
> eb
->nener
)
214 gmx_fatal(FARGS
, "Invalid index in pr_ebin: %d", index
);
217 if (nener
> eb
->nener
)
219 gmx_fatal(FARGS
, "Invalid nener in pr_ebin: %d", nener
);
226 for (i
= start
; (i
< end
) && rc
>= 0; )
231 for (j
= 0; (j
< nperline
) && (i
< end
) && rc
>= 0; j
++, i
++)
233 if (strncmp(eb
->enm
[i
].name
, "Pres", 4) == 0)
235 /* Print the pressure unit to avoid confusion */
236 sprintf(buf
, "%s (%s)", eb
->enm
[i
].name
, unit_pres_bar
);
237 rc
= fprintf(fp
, "%15s", buf
);
241 rc
= fprintf(fp
, "%15s", eb
->enm
[i
].name
);
247 rc
= fprintf(fp
, "\n");
252 for (j
= 0; (j
< nperline
) && (i
< end
) && rc
>= 0; j
++, i
++)
257 rc
= fprintf(fp
, " %12.5e", eb
->e
[i
].e
);
260 if (eb
->nsum_sim
> 0)
262 rc
= fprintf(fp
, " %12.5e", eb
->e_sim
[i
].esum
/eb
->nsum_sim
);
266 rc
= fprintf(fp
, " %-12s", "N/A");
269 default: gmx_fatal(FARGS
, "Invalid print mode %d in pr_ebin",
276 rc
= fprintf(fp
, "\n");
281 gmx_fatal(FARGS
, "Cannot write to logfile; maybe you are out of disk space?");