Improved state_change_natoms and used it more
[gromacs.git] / src / gromacs / mdlib / tpi.cpp
blobe2744cb9c2a8007e97a819f95558ff604d17a900
1 /*
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) 2013,2014,2015,2016,2017, 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 /*! \internal \file
39 * \brief This file defines the integrator for test particle insertion
41 * \author Berk Hess <hess@kth.se>
42 * \ingroup module_mdlib
44 #include "gmxpre.h"
46 #include "tpi.h"
48 #include <cmath>
49 #include <cstdlib>
50 #include <cstring>
51 #include <ctime>
53 #include <algorithm>
55 #include "gromacs/commandline/filenm.h"
56 #include "gromacs/domdec/domdec.h"
57 #include "gromacs/ewald/pme.h"
58 #include "gromacs/fileio/confio.h"
59 #include "gromacs/fileio/trxio.h"
60 #include "gromacs/fileio/xvgr.h"
61 #include "gromacs/gmxlib/chargegroup.h"
62 #include "gromacs/gmxlib/conformation-utilities.h"
63 #include "gromacs/gmxlib/network.h"
64 #include "gromacs/gmxlib/nrnb.h"
65 #include "gromacs/math/units.h"
66 #include "gromacs/math/vec.h"
67 #include "gromacs/mdlib/constr.h"
68 #include "gromacs/mdlib/force.h"
69 #include "gromacs/mdlib/mdatoms.h"
70 #include "gromacs/mdlib/mdebin.h"
71 #include "gromacs/mdlib/mdrun.h"
72 #include "gromacs/mdlib/ns.h"
73 #include "gromacs/mdlib/sim_util.h"
74 #include "gromacs/mdlib/tgroup.h"
75 #include "gromacs/mdlib/update.h"
76 #include "gromacs/mdlib/vsite.h"
77 #include "gromacs/mdtypes/commrec.h"
78 #include "gromacs/mdtypes/group.h"
79 #include "gromacs/mdtypes/inputrec.h"
80 #include "gromacs/mdtypes/md_enums.h"
81 #include "gromacs/mdtypes/state.h"
82 #include "gromacs/pbcutil/pbc.h"
83 #include "gromacs/random/threefry.h"
84 #include "gromacs/random/uniformrealdistribution.h"
85 #include "gromacs/timing/wallcycle.h"
86 #include "gromacs/timing/walltime_accounting.h"
87 #include "gromacs/topology/mtop_util.h"
88 #include "gromacs/trajectory/trajectoryframe.h"
89 #include "gromacs/utility/cstringutil.h"
90 #include "gromacs/utility/fatalerror.h"
91 #include "gromacs/utility/gmxassert.h"
92 #include "gromacs/utility/smalloc.h"
94 //! Global max algorithm
95 static void global_max(t_commrec *cr, int *n)
97 int *sum, i;
99 snew(sum, cr->nnodes);
100 sum[cr->nodeid] = *n;
101 gmx_sumi(cr->nnodes, sum, cr);
102 for (i = 0; i < cr->nnodes; i++)
104 *n = std::max(*n, sum[i]);
107 sfree(sum);
110 //! Reallocate arrays.
111 static void realloc_bins(double **bin, int *nbin, int nbin_new)
113 int i;
115 if (nbin_new != *nbin)
117 srenew(*bin, nbin_new);
118 for (i = *nbin; i < nbin_new; i++)
120 (*bin)[i] = 0;
122 *nbin = nbin_new;
126 namespace gmx
129 /*! \brief Do test particle insertion.
130 \copydoc integrator_t (FILE *fplog, t_commrec *cr, const gmx::MDLogger &mdlog,
131 int nfile, const t_filenm fnm[],
132 const gmx_output_env_t *oenv, gmx_bool bVerbose,
133 int nstglobalcomm,
134 gmx_vsite_t *vsite, gmx_constr_t constr,
135 int stepout,
136 t_inputrec *inputrec,
137 gmx_mtop_t *top_global, t_fcdata *fcd,
138 t_state *state_global,
139 t_mdatoms *mdatoms,
140 t_nrnb *nrnb, gmx_wallcycle_t wcycle,
141 gmx_edsam_t ed,
142 t_forcerec *fr,
143 int repl_ex_nst, int repl_ex_nex, int repl_ex_seed,
144 real cpt_period, real max_hours,
145 int imdport,
146 unsigned long Flags,
147 gmx_walltime_accounting_t walltime_accounting)
149 double do_tpi(FILE *fplog, t_commrec *cr, const gmx::MDLogger gmx_unused &mdlog,
150 int nfile, const t_filenm fnm[],
151 const gmx_output_env_t *oenv, gmx_bool bVerbose,
152 int gmx_unused nstglobalcomm,
153 gmx_vsite_t gmx_unused *vsite, gmx_constr_t gmx_unused constr,
154 int gmx_unused stepout,
155 t_inputrec *inputrec,
156 gmx_mtop_t *top_global, t_fcdata *fcd,
157 t_state *state_global,
158 energyhistory_t gmx_unused *energyHistory,
159 t_mdatoms *mdatoms,
160 t_nrnb *nrnb, gmx_wallcycle_t wcycle,
161 gmx_edsam_t gmx_unused ed,
162 t_forcerec *fr,
163 int gmx_unused repl_ex_nst, int gmx_unused repl_ex_nex, int gmx_unused repl_ex_seed,
164 gmx_membed_t gmx_unused *membed,
165 real gmx_unused cpt_period, real gmx_unused max_hours,
166 int gmx_unused imdport,
167 unsigned long gmx_unused Flags,
168 gmx_walltime_accounting_t walltime_accounting)
170 gmx_localtop_t *top;
171 gmx_groups_t *groups;
172 gmx_enerdata_t *enerd;
173 PaddedRVecVector f {};
174 real lambda, t, temp, beta, drmax, epot;
175 double embU, sum_embU, *sum_UgembU, V, V_all, VembU_all;
176 t_trxstatus *status;
177 t_trxframe rerun_fr;
178 gmx_bool bDispCorr, bCharge, bRFExcl, bNotLastFrame, bStateChanged, bNS;
179 tensor force_vir, shake_vir, vir, pres;
180 int cg_tp, a_tp0, a_tp1, ngid, gid_tp, nener, e;
181 rvec *x_mol;
182 rvec mu_tot, x_init, dx, x_tp;
183 int nnodes, frame;
184 gmx_int64_t frame_step_prev, frame_step;
185 gmx_int64_t nsteps, stepblocksize = 0, step;
186 gmx_int64_t seed;
187 int i;
188 FILE *fp_tpi = nullptr;
189 char *ptr, *dump_pdb, **leg, str[STRLEN], str2[STRLEN];
190 double dbl, dump_ener;
191 gmx_bool bCavity;
192 int nat_cavity = 0, d;
193 real *mass_cavity = nullptr, mass_tot;
194 int nbin;
195 double invbinw, *bin, refvolshift, logV, bUlogV;
196 real prescorr, enercorr, dvdlcorr;
197 gmx_bool bEnergyOutOfBounds;
198 const char *tpid_leg[2] = {"direct", "reweighted"};
200 /* Since there is no upper limit to the insertion energies,
201 * we need to set an upper limit for the distribution output.
203 real bU_bin_limit = 50;
204 real bU_logV_bin_limit = bU_bin_limit + 10;
206 if (inputrec->cutoff_scheme == ecutsVERLET)
208 gmx_fatal(FARGS, "TPI does not work (yet) with the Verlet cut-off scheme");
211 nnodes = cr->nnodes;
213 top = gmx_mtop_generate_local_top(top_global, inputrec->efep != efepNO);
215 groups = &top_global->groups;
217 bCavity = (inputrec->eI == eiTPIC);
218 if (bCavity)
220 ptr = getenv("GMX_TPIC_MASSES");
221 if (ptr == nullptr)
223 nat_cavity = 1;
225 else
227 /* Read (multiple) masses from env var GMX_TPIC_MASSES,
228 * The center of mass of the last atoms is then used for TPIC.
230 nat_cavity = 0;
231 while (sscanf(ptr, "%20lf%n", &dbl, &i) > 0)
233 srenew(mass_cavity, nat_cavity+1);
234 mass_cavity[nat_cavity] = dbl;
235 fprintf(fplog, "mass[%d] = %f\n",
236 nat_cavity+1, mass_cavity[nat_cavity]);
237 nat_cavity++;
238 ptr += i;
240 if (nat_cavity == 0)
242 gmx_fatal(FARGS, "Found %d masses in GMX_TPIC_MASSES", nat_cavity);
248 init_em(fplog,TPI,inputrec,&lambda,nrnb,mu_tot,
249 state_global->box,fr,mdatoms,top,cr,nfile,fnm,NULL,NULL);*/
250 /* We never need full pbc for TPI */
251 fr->ePBC = epbcXYZ;
252 /* Determine the temperature for the Boltzmann weighting */
253 temp = inputrec->opts.ref_t[0];
254 if (fplog)
256 for (i = 1; (i < inputrec->opts.ngtc); i++)
258 if (inputrec->opts.ref_t[i] != temp)
260 fprintf(fplog, "\nWARNING: The temperatures of the different temperature coupling groups are not identical\n\n");
261 fprintf(stderr, "\nWARNING: The temperatures of the different temperature coupling groups are not identical\n\n");
264 fprintf(fplog,
265 "\n The temperature for test particle insertion is %.3f K\n\n",
266 temp);
268 beta = 1.0/(BOLTZ*temp);
270 /* Number of insertions per frame */
271 nsteps = inputrec->nsteps;
273 /* Use the same neighborlist with more insertions points
274 * in a sphere of radius drmax around the initial point
276 /* This should be a proper mdp parameter */
277 drmax = inputrec->rtpi;
279 /* An environment variable can be set to dump all configurations
280 * to pdb with an insertion energy <= this value.
282 dump_pdb = getenv("GMX_TPI_DUMP");
283 dump_ener = 0;
284 if (dump_pdb)
286 sscanf(dump_pdb, "%20lf", &dump_ener);
289 atoms2md(top_global, inputrec, -1, nullptr, top_global->natoms, mdatoms);
290 update_mdatoms(mdatoms, inputrec->fepvals->init_lambda);
292 snew(enerd, 1);
293 init_enerdata(groups->grps[egcENER].nr, inputrec->fepvals->n_lambda, enerd);
294 /* We need to allocate one element extra, since we might use
295 * (unaligned) 4-wide SIMD loads to access rvec entries.
297 f.resize(top_global->natoms + 1);
299 /* Print to log file */
300 walltime_accounting_start(walltime_accounting);
301 wallcycle_start(wcycle, ewcRUN);
302 print_start(fplog, cr, walltime_accounting, "Test Particle Insertion");
304 /* The last charge group is the group to be inserted */
305 cg_tp = top->cgs.nr - 1;
306 a_tp0 = top->cgs.index[cg_tp];
307 a_tp1 = top->cgs.index[cg_tp+1];
308 if (debug)
310 fprintf(debug, "TPI cg %d, atoms %d-%d\n", cg_tp, a_tp0, a_tp1);
313 GMX_RELEASE_ASSERT(inputrec->rcoulomb <= inputrec->rlist && inputrec->rvdw <= inputrec->rlist, "Twin-range interactions are not supported with TPI");
315 snew(x_mol, a_tp1-a_tp0);
317 bDispCorr = (inputrec->eDispCorr != edispcNO);
318 bCharge = FALSE;
319 for (i = a_tp0; i < a_tp1; i++)
321 /* Copy the coordinates of the molecule to be insterted */
322 copy_rvec(state_global->x[i], x_mol[i-a_tp0]);
323 /* Check if we need to print electrostatic energies */
324 bCharge |= (mdatoms->chargeA[i] != 0 ||
325 (mdatoms->chargeB && mdatoms->chargeB[i] != 0));
327 bRFExcl = (bCharge && EEL_RF(fr->eeltype));
329 calc_cgcm(fplog, cg_tp, cg_tp+1, &(top->cgs), as_rvec_array(state_global->x.data()), fr->cg_cm);
330 if (bCavity)
332 if (norm(fr->cg_cm[cg_tp]) > 0.5*inputrec->rlist && fplog)
334 fprintf(fplog, "WARNING: Your TPI molecule is not centered at 0,0,0\n");
335 fprintf(stderr, "WARNING: Your TPI molecule is not centered at 0,0,0\n");
338 else
340 /* Center the molecule to be inserted at zero */
341 for (i = 0; i < a_tp1-a_tp0; i++)
343 rvec_dec(x_mol[i], fr->cg_cm[cg_tp]);
347 if (fplog)
349 fprintf(fplog, "\nWill insert %d atoms %s partial charges\n",
350 a_tp1-a_tp0, bCharge ? "with" : "without");
352 fprintf(fplog, "\nWill insert %d times in each frame of %s\n",
353 (int)nsteps, opt2fn("-rerun", nfile, fnm));
356 if (!bCavity)
358 if (inputrec->nstlist > 1)
360 if (drmax == 0 && a_tp1-a_tp0 == 1)
362 gmx_fatal(FARGS, "Re-using the neighborlist %d times for insertions of a single atom in a sphere of radius %f does not make sense", inputrec->nstlist, drmax);
364 if (fplog)
366 fprintf(fplog, "Will use the same neighborlist for %d insertions in a sphere of radius %f\n", inputrec->nstlist, drmax);
370 else
372 if (fplog)
374 fprintf(fplog, "Will insert randomly in a sphere of radius %f around the center of the cavity\n", drmax);
378 ngid = groups->grps[egcENER].nr;
379 gid_tp = GET_CGINFO_GID(fr->cginfo[cg_tp]);
380 nener = 1 + ngid;
381 if (bDispCorr)
383 nener += 1;
385 if (bCharge)
387 nener += ngid;
388 if (bRFExcl)
390 nener += 1;
392 if (EEL_FULL(fr->eeltype))
394 nener += 1;
397 snew(sum_UgembU, nener);
399 /* Copy the random seed set by the user */
400 seed = inputrec->ld_seed;
402 gmx::ThreeFry2x64<16> rng(seed, gmx::RandomDomain::TestParticleInsertion); // 16 bits internal counter => 2^16 * 2 = 131072 values per stream
403 gmx::UniformRealDistribution<real> dist;
405 if (MASTER(cr))
407 fp_tpi = xvgropen(opt2fn("-tpi", nfile, fnm),
408 "TPI energies", "Time (ps)",
409 "(kJ mol\\S-1\\N) / (nm\\S3\\N)", oenv);
410 xvgr_subtitle(fp_tpi, "f. are averages over one frame", oenv);
411 snew(leg, 4+nener);
412 e = 0;
413 sprintf(str, "-kT log(<Ve\\S-\\betaU\\N>/<V>)");
414 leg[e++] = gmx_strdup(str);
415 sprintf(str, "f. -kT log<e\\S-\\betaU\\N>");
416 leg[e++] = gmx_strdup(str);
417 sprintf(str, "f. <e\\S-\\betaU\\N>");
418 leg[e++] = gmx_strdup(str);
419 sprintf(str, "f. V");
420 leg[e++] = gmx_strdup(str);
421 sprintf(str, "f. <Ue\\S-\\betaU\\N>");
422 leg[e++] = gmx_strdup(str);
423 for (i = 0; i < ngid; i++)
425 sprintf(str, "f. <U\\sVdW %s\\Ne\\S-\\betaU\\N>",
426 *(groups->grpname[groups->grps[egcENER].nm_ind[i]]));
427 leg[e++] = gmx_strdup(str);
429 if (bDispCorr)
431 sprintf(str, "f. <U\\sdisp c\\Ne\\S-\\betaU\\N>");
432 leg[e++] = gmx_strdup(str);
434 if (bCharge)
436 for (i = 0; i < ngid; i++)
438 sprintf(str, "f. <U\\sCoul %s\\Ne\\S-\\betaU\\N>",
439 *(groups->grpname[groups->grps[egcENER].nm_ind[i]]));
440 leg[e++] = gmx_strdup(str);
442 if (bRFExcl)
444 sprintf(str, "f. <U\\sRF excl\\Ne\\S-\\betaU\\N>");
445 leg[e++] = gmx_strdup(str);
447 if (EEL_FULL(fr->eeltype))
449 sprintf(str, "f. <U\\sCoul recip\\Ne\\S-\\betaU\\N>");
450 leg[e++] = gmx_strdup(str);
453 xvgr_legend(fp_tpi, 4+nener, (const char**)leg, oenv);
454 for (i = 0; i < 4+nener; i++)
456 sfree(leg[i]);
458 sfree(leg);
460 clear_rvec(x_init);
461 V_all = 0;
462 VembU_all = 0;
464 invbinw = 10;
465 nbin = 10;
466 snew(bin, nbin);
468 /* Avoid frame step numbers <= -1 */
469 frame_step_prev = -1;
471 bNotLastFrame = read_first_frame(oenv, &status, opt2fn("-rerun", nfile, fnm),
472 &rerun_fr, TRX_NEED_X);
473 frame = 0;
475 if (rerun_fr.natoms - (bCavity ? nat_cavity : 0) !=
476 mdatoms->nr - (a_tp1 - a_tp0))
478 gmx_fatal(FARGS, "Number of atoms in trajectory (%d)%s "
479 "is not equal the number in the run input file (%d) "
480 "minus the number of atoms to insert (%d)\n",
481 rerun_fr.natoms, bCavity ? " minus one" : "",
482 mdatoms->nr, a_tp1-a_tp0);
485 refvolshift = log(det(rerun_fr.box));
487 switch (inputrec->eI)
489 case eiTPI:
490 stepblocksize = inputrec->nstlist;
491 break;
492 case eiTPIC:
493 stepblocksize = 1;
494 break;
495 default:
496 gmx_fatal(FARGS, "Unknown integrator %s", ei_names[inputrec->eI]);
499 while (bNotLastFrame)
501 frame_step = rerun_fr.step;
502 if (frame_step <= frame_step_prev)
504 /* We don't have step number in the trajectory file,
505 * or we have constant or decreasing step numbers.
506 * Ensure we have increasing step numbers, since we use
507 * the step numbers as a counter for random numbers.
509 frame_step = frame_step_prev + 1;
511 frame_step_prev = frame_step;
513 lambda = rerun_fr.lambda;
514 t = rerun_fr.time;
516 sum_embU = 0;
517 for (e = 0; e < nener; e++)
519 sum_UgembU[e] = 0;
522 /* Copy the coordinates from the input trajectory */
523 for (i = 0; i < rerun_fr.natoms; i++)
525 copy_rvec(rerun_fr.x[i], state_global->x[i]);
527 copy_mat(rerun_fr.box, state_global->box);
529 V = det(state_global->box);
530 logV = log(V);
532 bStateChanged = TRUE;
533 bNS = TRUE;
535 step = cr->nodeid*stepblocksize;
536 while (step < nsteps)
538 /* Restart random engine using the frame and insertion step
539 * as counters.
540 * Note that we need to draw several random values per iteration,
541 * but by using the internal subcounter functionality of ThreeFry2x64
542 * we can draw 131072 unique 64-bit values before exhausting
543 * the stream. This is a huge margin, and if something still goes
544 * wrong you will get an exception when the stream is exhausted.
546 rng.restart(frame_step, step);
547 dist.reset(); // erase any memory in the distribution
549 if (!bCavity)
551 /* Random insertion in the whole volume */
552 bNS = (step % inputrec->nstlist == 0);
553 if (bNS)
555 /* Generate a random position in the box */
556 for (d = 0; d < DIM; d++)
558 x_init[d] = dist(rng)*state_global->box[d][d];
562 if (inputrec->nstlist == 1)
564 copy_rvec(x_init, x_tp);
566 else
568 /* Generate coordinates within |dx|=drmax of x_init */
571 for (d = 0; d < DIM; d++)
573 dx[d] = (2*dist(rng) - 1)*drmax;
576 while (norm2(dx) > drmax*drmax);
577 rvec_add(x_init, dx, x_tp);
580 else
582 /* Random insertion around a cavity location
583 * given by the last coordinate of the trajectory.
585 if (step == 0)
587 if (nat_cavity == 1)
589 /* Copy the location of the cavity */
590 copy_rvec(rerun_fr.x[rerun_fr.natoms-1], x_init);
592 else
594 /* Determine the center of mass of the last molecule */
595 clear_rvec(x_init);
596 mass_tot = 0;
597 for (i = 0; i < nat_cavity; i++)
599 for (d = 0; d < DIM; d++)
601 x_init[d] +=
602 mass_cavity[i]*rerun_fr.x[rerun_fr.natoms-nat_cavity+i][d];
604 mass_tot += mass_cavity[i];
606 for (d = 0; d < DIM; d++)
608 x_init[d] /= mass_tot;
612 /* Generate coordinates within |dx|=drmax of x_init */
615 for (d = 0; d < DIM; d++)
617 dx[d] = (2*dist(rng) - 1)*drmax;
620 while (norm2(dx) > drmax*drmax);
621 rvec_add(x_init, dx, x_tp);
624 if (a_tp1 - a_tp0 == 1)
626 /* Insert a single atom, just copy the insertion location */
627 copy_rvec(x_tp, state_global->x[a_tp0]);
629 else
631 /* Copy the coordinates from the top file */
632 for (i = a_tp0; i < a_tp1; i++)
634 copy_rvec(x_mol[i-a_tp0], state_global->x[i]);
636 /* Rotate the molecule randomly */
637 rotate_conf(a_tp1-a_tp0, as_rvec_array(state_global->x.data())+a_tp0, nullptr,
638 2*M_PI*dist(rng),
639 2*M_PI*dist(rng),
640 2*M_PI*dist(rng));
641 /* Shift to the insertion location */
642 for (i = a_tp0; i < a_tp1; i++)
644 rvec_inc(state_global->x[i], x_tp);
648 /* Clear some matrix variables */
649 clear_mat(force_vir);
650 clear_mat(shake_vir);
651 clear_mat(vir);
652 clear_mat(pres);
654 /* Set the charge group center of mass of the test particle */
655 copy_rvec(x_init, fr->cg_cm[top->cgs.nr-1]);
657 /* Calc energy (no forces) on new positions.
658 * Since we only need the intermolecular energy
659 * and the RF exclusion terms of the inserted molecule occur
660 * within a single charge group we can pass NULL for the graph.
661 * This also avoids shifts that would move charge groups
662 * out of the box. */
663 /* Make do_force do a single node force calculation */
664 cr->nnodes = 1;
665 do_force(fplog, cr, inputrec,
666 step, nrnb, wcycle, top, &top_global->groups,
667 state_global->box, &state_global->x, &state_global->hist,
668 &f, force_vir, mdatoms, enerd, fcd,
669 state_global->lambda,
670 nullptr, fr, nullptr, mu_tot, t, nullptr, FALSE,
671 GMX_FORCE_NONBONDED | GMX_FORCE_ENERGY |
672 (bNS ? GMX_FORCE_DYNAMICBOX | GMX_FORCE_NS : 0) |
673 (bStateChanged ? GMX_FORCE_STATECHANGED : 0));
674 cr->nnodes = nnodes;
675 bStateChanged = FALSE;
676 bNS = FALSE;
678 /* Calculate long range corrections to pressure and energy */
679 calc_dispcorr(inputrec, fr, state_global->box,
680 lambda, pres, vir, &prescorr, &enercorr, &dvdlcorr);
681 /* figure out how to rearrange the next 4 lines MRS 8/4/2009 */
682 enerd->term[F_DISPCORR] = enercorr;
683 enerd->term[F_EPOT] += enercorr;
684 enerd->term[F_PRES] += prescorr;
685 enerd->term[F_DVDL_VDW] += dvdlcorr;
687 epot = enerd->term[F_EPOT];
688 bEnergyOutOfBounds = FALSE;
690 /* If the compiler doesn't optimize this check away
691 * we catch the NAN energies.
692 * The epot>GMX_REAL_MAX check catches inf values,
693 * which should nicely result in embU=0 through the exp below,
694 * but it does not hurt to check anyhow.
696 /* Non-bonded Interaction usually diverge at r=0.
697 * With tabulated interaction functions the first few entries
698 * should be capped in a consistent fashion between
699 * repulsion, dispersion and Coulomb to avoid accidental
700 * negative values in the total energy.
701 * The table generation code in tables.c does this.
702 * With user tbales the user should take care of this.
704 if (epot != epot || epot > GMX_REAL_MAX)
706 bEnergyOutOfBounds = TRUE;
708 if (bEnergyOutOfBounds)
710 if (debug)
712 fprintf(debug, "\n time %.3f, step %d: non-finite energy %f, using exp(-bU)=0\n", t, (int)step, epot);
714 embU = 0;
716 else
718 embU = exp(-beta*epot);
719 sum_embU += embU;
720 /* Determine the weighted energy contributions of each energy group */
721 e = 0;
722 sum_UgembU[e++] += epot*embU;
723 if (fr->bBHAM)
725 for (i = 0; i < ngid; i++)
727 sum_UgembU[e++] +=
728 enerd->grpp.ener[egBHAMSR][GID(i, gid_tp, ngid)]*embU;
731 else
733 for (i = 0; i < ngid; i++)
735 sum_UgembU[e++] +=
736 enerd->grpp.ener[egLJSR][GID(i, gid_tp, ngid)]*embU;
739 if (bDispCorr)
741 sum_UgembU[e++] += enerd->term[F_DISPCORR]*embU;
743 if (bCharge)
745 for (i = 0; i < ngid; i++)
747 sum_UgembU[e++] += enerd->grpp.ener[egCOULSR][GID(i, gid_tp, ngid)] * embU;
749 if (bRFExcl)
751 sum_UgembU[e++] += enerd->term[F_RF_EXCL]*embU;
753 if (EEL_FULL(fr->eeltype))
755 sum_UgembU[e++] += enerd->term[F_COUL_RECIP]*embU;
760 if (embU == 0 || beta*epot > bU_bin_limit)
762 bin[0]++;
764 else
766 i = (int)((bU_logV_bin_limit
767 - (beta*epot - logV + refvolshift))*invbinw
768 + 0.5);
769 if (i < 0)
771 i = 0;
773 if (i >= nbin)
775 realloc_bins(&bin, &nbin, i+10);
777 bin[i]++;
780 if (debug)
782 fprintf(debug, "TPI %7d %12.5e %12.5f %12.5f %12.5f\n",
783 (int)step, epot, x_tp[XX], x_tp[YY], x_tp[ZZ]);
786 if (dump_pdb && epot <= dump_ener)
788 sprintf(str, "t%g_step%d.pdb", t, (int)step);
789 sprintf(str2, "t: %f step %d ener: %f", t, (int)step, epot);
790 write_sto_conf_mtop(str, str2, top_global, as_rvec_array(state_global->x.data()), as_rvec_array(state_global->v.data()),
791 inputrec->ePBC, state_global->box);
794 step++;
795 if ((step/stepblocksize) % cr->nnodes != cr->nodeid)
797 /* Skip all steps assigned to the other MPI ranks */
798 step += (cr->nnodes - 1)*stepblocksize;
802 if (PAR(cr))
804 /* When running in parallel sum the energies over the processes */
805 gmx_sumd(1, &sum_embU, cr);
806 gmx_sumd(nener, sum_UgembU, cr);
809 frame++;
810 V_all += V;
811 VembU_all += V*sum_embU/nsteps;
813 if (fp_tpi)
815 if (bVerbose || frame%10 == 0 || frame < 10)
817 fprintf(stderr, "mu %10.3e <mu> %10.3e\n",
818 -log(sum_embU/nsteps)/beta, -log(VembU_all/V_all)/beta);
821 fprintf(fp_tpi, "%10.3f %12.5e %12.5e %12.5e %12.5e",
823 VembU_all == 0 ? 20/beta : -log(VembU_all/V_all)/beta,
824 sum_embU == 0 ? 20/beta : -log(sum_embU/nsteps)/beta,
825 sum_embU/nsteps, V);
826 for (e = 0; e < nener; e++)
828 fprintf(fp_tpi, " %12.5e", sum_UgembU[e]/nsteps);
830 fprintf(fp_tpi, "\n");
831 fflush(fp_tpi);
834 bNotLastFrame = read_next_frame(oenv, status, &rerun_fr);
835 } /* End of the loop */
836 walltime_accounting_end(walltime_accounting);
838 close_trj(status);
840 if (fp_tpi != nullptr)
842 xvgrclose(fp_tpi);
845 if (fplog != nullptr)
847 fprintf(fplog, "\n");
848 fprintf(fplog, " <V> = %12.5e nm^3\n", V_all/frame);
849 fprintf(fplog, " <mu> = %12.5e kJ/mol\n", -log(VembU_all/V_all)/beta);
852 /* Write the Boltzmann factor histogram */
853 if (PAR(cr))
855 /* When running in parallel sum the bins over the processes */
856 i = nbin;
857 global_max(cr, &i);
858 realloc_bins(&bin, &nbin, i);
859 gmx_sumd(nbin, bin, cr);
861 if (MASTER(cr))
863 fp_tpi = xvgropen(opt2fn("-tpid", nfile, fnm),
864 "TPI energy distribution",
865 "\\betaU - log(V/<V>)", "count", oenv);
866 sprintf(str, "number \\betaU > %g: %9.3e", bU_bin_limit, bin[0]);
867 xvgr_subtitle(fp_tpi, str, oenv);
868 xvgr_legend(fp_tpi, 2, (const char **)tpid_leg, oenv);
869 for (i = nbin-1; i > 0; i--)
871 bUlogV = -i/invbinw + bU_logV_bin_limit - refvolshift + log(V_all/frame);
872 fprintf(fp_tpi, "%6.2f %10d %12.5e\n",
873 bUlogV,
874 (int)(bin[i]+0.5),
875 bin[i]*exp(-bUlogV)*V_all/VembU_all);
877 xvgrclose(fp_tpi);
879 sfree(bin);
881 sfree(sum_UgembU);
883 walltime_accounting_set_nsteps_done(walltime_accounting, frame*inputrec->nsteps);
885 return 0;
888 } // namespace gmx