Merge branch 'rotation-4-5' into rotation
[gromacs/adressmacs.git] / src / mdlib / ebin.c
blob89740bcb51634ddc4e0966b6e09eaaf0f4044384
1 /* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
3 *
4 * This source code is part of
5 *
6 * G R O M A C S
7 *
8 * GROningen MAchine for Chemical Simulations
9 *
10 * VERSION 3.2.0
11 * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
12 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
13 * Copyright (c) 2001-2004, The GROMACS development team,
14 * check out http://www.gromacs.org for more information.
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version 2
19 * of the License, or (at your option) any later version.
21 * If you want to redistribute modifications, please consider that
22 * scientific software is very special. Version control is crucial -
23 * bugs must be traceable. We will be happy to consider code for
24 * inclusion in the official distribution, but derived work must not
25 * be called official GROMACS. Details are found in the README & COPYING
26 * files - if they are missing, get the official version at www.gromacs.org.
28 * To help us fund GROMACS development, we humbly ask that you cite
29 * the papers on the package - you can find them in the top README file.
31 * For more info, check our website at http://www.gromacs.org
33 * And Hey:
34 * GROwing Monsters And Cloning Shrimps
36 /* This file is completely threadsafe - keep it that way! */
37 #ifdef HAVE_CONFIG_H
38 #include <config.h>
39 #endif
41 #include <math.h>
42 #include <string.h>
43 #include "sysstuff.h"
44 #include "smalloc.h"
45 #include "typedefs.h"
46 #include "gmx_fatal.h"
47 #include "string2.h"
48 #include "ebin.h"
49 #include "main.h"
50 #include "maths.h"
51 #include "vec.h"
52 #include "physics.h"
54 static real rms_ener(t_energy *e,int nsteps)
56 return sqrt(e->eav/nsteps);
59 t_ebin *mk_ebin(void)
61 t_ebin *eb;
63 snew(eb,1);
65 return eb;
68 int get_ebin_space(t_ebin *eb,int nener,const char *enm[],const char *unit)
70 int index;
71 int i,f;
72 const char *u;
74 index = eb->nener;
75 eb->nener += nener;
76 srenew(eb->e,eb->nener);
77 srenew(eb->e_sim,eb->nener);
78 srenew(eb->enm,eb->nener);
79 for(i=index; (i<eb->nener); i++)
81 eb->e[i].e = 0;
82 eb->e[i].eav = 0;
83 eb->e[i].esum = 0;
84 eb->e_sim[i].e = 0;
85 eb->e_sim[i].eav = 0;
86 eb->e_sim[i].esum = 0;
87 eb->enm[i].name = strdup(enm[i-index]);
88 if (unit != NULL)
90 eb->enm[i].unit = strdup(unit);
92 else
94 /* Determine the unit from the longname.
95 * These units should have been defined in ifunc.c
96 * But even better would be if all interactions functions
97 * return energies and all non-interaction function
98 * entries would be removed from the ifunc array.
100 u = unit_energy;
101 for(f=0; f<F_NRE; f++)
103 if (strcmp(eb->enm[i].name,
104 interaction_function[f].longname) == 0)
106 /* Only the terms in this list are not energies */
107 switch (f) {
108 case F_DISRESVIOL: u = unit_length; break;
109 case F_ORIRESDEV: u = "obs"; break;
110 case F_TEMP: u = unit_temp_K; break;
111 case F_VTEMP: u = unit_temp_K; break;
112 case F_PDISPCORR:
113 case F_PRES: u = unit_pres_bar; break;
117 eb->enm[i].unit = strdup(u);
121 return index;
124 void add_ebin(t_ebin *eb,int index,int nener,real ener[],gmx_bool bSum)
126 int i,m;
127 double e,sum,sigma,invmm,diff;
128 t_energy *eg,*egs;
130 if ((index+nener > eb->nener) || (index < 0))
132 gmx_fatal(FARGS,"%s-%d: Energies out of range: index=%d nener=%d maxener=%d",
133 __FILE__,__LINE__,index,nener,eb->nener);
136 eg = &(eb->e[index]);
138 for(i=0; (i<nener); i++)
140 eg[i].e = ener[i];
143 if (bSum)
145 egs = &(eb->e_sim[index]);
147 m = eb->nsum;
149 if (m == 0)
151 for(i=0; (i<nener); i++)
153 eg[i].eav = 0;
154 eg[i].esum = ener[i];
155 egs[i].esum += ener[i];
158 else
160 invmm = (1.0/(double)m)/((double)m+1.0);
162 for(i=0; (i<nener); i++)
164 /* Value for this component */
165 e = ener[i];
167 /* first update sigma, then sum */
168 diff = eg[i].esum - m*e;
169 eg[i].eav += diff*diff*invmm;
170 eg[i].esum += e;
171 egs[i].esum += e;
177 void ebin_increase_count(t_ebin *eb,gmx_bool bSum)
179 eb->nsteps++;
180 eb->nsteps_sim++;
182 if (bSum)
184 eb->nsum++;
185 eb->nsum_sim++;
189 void reset_ebin_sums(t_ebin *eb)
191 eb->nsteps = 0;
192 eb->nsum = 0;
193 /* The actual sums are cleared when the next frame is stored */
196 void pr_ebin(FILE *fp,t_ebin *eb,int index,int nener,int nperline,
197 int prmode,gmx_bool bPrHead)
199 int i,j,i0;
200 real ee=0;
201 int rc;
202 char buf[30];
204 rc = 0;
206 if (index < 0)
208 gmx_fatal(FARGS,"Invalid index in pr_ebin: %d",index);
210 if (nener == -1)
212 nener = eb->nener;
214 else
216 nener = index + nener;
218 for(i=index; (i<nener) && rc>=0; )
220 if (bPrHead)
222 i0=i;
223 for(j=0; (j<nperline) && (i<nener) && rc>=0; j++,i++)
225 if (strncmp(eb->enm[i].name,"Pres",4) == 0)
227 /* Print the pressure unit to avoid confusion */
228 sprintf(buf,"%s (%s)",eb->enm[i].name,unit_pres_bar);
229 rc = fprintf(fp,"%15s",buf);
231 else
233 rc = fprintf(fp,"%15s",eb->enm[i].name);
237 if (rc >= 0)
239 rc = fprintf(fp,"\n");
242 i=i0;
244 for(j=0; (j<nperline) && (i<nener) && rc>=0; j++,i++)
246 switch (prmode) {
247 case eprNORMAL: ee = eb->e[i].e; break;
248 case eprAVER: ee = eb->e_sim[i].esum/eb->nsum_sim; break;
249 default: gmx_fatal(FARGS,"Invalid print mode %d in pr_ebin",
250 prmode);
253 rc = fprintf(fp," %12.5e",ee);
255 if (rc >= 0)
257 rc = fprintf(fp,"\n");
260 if (rc < 0)
262 gmx_fatal(FARGS,"Cannot write to logfile; maybe you are out of quota?");
266 #ifdef DEBUGEBIN
267 int main(int argc,char *argv[])
269 #define NE 12
270 #define NT 7
271 #define NS 5
273 t_ebin *eb;
274 int i;
275 char buf[25];
276 char *ce[NE],*ct[NT],*cs[NS];
277 real e[NE],t[NT],s[NS];
278 int ie,it,is;
280 eb=mk_ebin();
281 for(i=0; (i<NE); i++) {
282 e[i]=i;
283 sprintf(buf,"e%d",i);
284 ce[i]=strdup(buf);
286 ie=get_ebin_space(eb,NE,ce);
287 add_ebin(eb,ie,NE,e,0);
288 for(i=0; (i<NS); i++) {
289 s[i]=i;
290 sprintf(buf,"s%d",i);
291 cs[i]=strdup(buf);
293 is=get_ebin_space(eb,NS,cs);
294 add_ebin(eb,is,NS,s,0);
295 for(i=0; (i<NT); i++) {
296 t[i]=i;
297 sprintf(buf,"t%d",i);
298 ct[i]=strdup(buf);
300 it=get_ebin_space(eb,NT,ct);
301 add_ebin(eb,it,NT,t,0);
303 printf("Normal:\n");
304 pr_ebin(stdout,eb,0,-1,5,eprNORMAL,1);
306 printf("Average:\n");
307 pr_ebin(stdout,eb,ie,NE,5,eprAVER,1);
308 pr_ebin(stdout,eb,is,NS,3,eprAVER,1);
309 pr_ebin(stdout,eb,it,NT,4,eprAVER,1);
311 #endif