Clang warnings
[gromacs.git] / src / gromacs / swap / swapcoords.cpp
blob2d579e4aec85cb17ad6ad7faeaeee3c251fbbb13
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2013,2014,2015,2016,2017,2018, by the GROMACS development team, led by
5 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6 * and including many others, as listed in the AUTHORS file in the
7 * top-level source directory and at http://www.gromacs.org.
9 * GROMACS is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public License
11 * as published by the Free Software Foundation; either version 2.1
12 * of the License, or (at your option) any later version.
14 * GROMACS is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with GROMACS; if not, see
21 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 * If you want to redistribute modifications to GROMACS, please
25 * consider that scientific software is very special. Version
26 * control is crucial - bugs must be traceable. We will be happy to
27 * consider code for inclusion in the official distribution, but
28 * derived work must not be called official GROMACS. Details are found
29 * in the README & COPYING files - if they are missing, get the
30 * official version at http://www.gromacs.org.
32 * To help us fund GROMACS development, we humbly ask that you cite
33 * the research papers on the package. Check out http://www.gromacs.org.
35 /*! \internal \file
36 * \brief
37 * Implements functions in swapcoords.h.
39 * \author Carsten Kutzner <ckutzne@gwdg.de>
40 * \ingroup module_swap
42 #include "gmxpre.h"
44 #include "swapcoords.h"
46 #include <stdio.h>
47 #include <stdlib.h>
48 #include <time.h>
50 #include <string>
52 #include "gromacs/domdec/domdec_struct.h"
53 #include "gromacs/fileio/confio.h"
54 #include "gromacs/fileio/gmxfio.h"
55 #include "gromacs/fileio/xvgr.h"
56 #include "gromacs/gmxlib/network.h"
57 #include "gromacs/math/vec.h"
58 #include "gromacs/mdlib/groupcoord.h"
59 #include "gromacs/mdlib/mdrun.h"
60 #include "gromacs/mdlib/sim_util.h"
61 #include "gromacs/mdtypes/commrec.h"
62 #include "gromacs/mdtypes/inputrec.h"
63 #include "gromacs/mdtypes/md_enums.h"
64 #include "gromacs/mdtypes/observableshistory.h"
65 #include "gromacs/mdtypes/state.h"
66 #include "gromacs/mdtypes/swaphistory.h"
67 #include "gromacs/pbcutil/pbc.h"
68 #include "gromacs/timing/wallcycle.h"
69 #include "gromacs/topology/mtop_lookup.h"
70 #include "gromacs/topology/topology.h"
71 #include "gromacs/utility/cstringutil.h"
72 #include "gromacs/utility/fatalerror.h"
73 #include "gromacs/utility/pleasecite.h"
74 #include "gromacs/utility/smalloc.h"
75 #include "gromacs/utility/snprintf.h"
77 static const char *SwS = {"SWAP:"}; /**< For output that comes from the swap module */
78 static const char *SwSEmpty = {" "}; /**< Placeholder for multi-line output */
79 static const char* CompStr[eCompNR] = {"A", "B" }; /**< Compartment name */
80 static const char *SwapStr[eSwapTypesNR+1] = { "", "X-", "Y-", "Z-", nullptr}; /**< Name for the swap types. */
81 static const char *DimStr[DIM+1] = { "X", "Y", "Z", nullptr}; /**< Name for the swap dimension. */
83 /** Keep track of through which channel the ions have passed */
84 enum eChannelHistory {
85 eChHistPassedNone, eChHistPassedCh0, eChHistPassedCh1, eChHistNr
87 static const char* ChannelString[eChHistNr] = { "none", "channel0", "channel1" }; /**< Name for the channels */
89 /*! \brief Domain identifier.
91 * Keeps track of from which compartment the ions came before passing the
92 * channel.
94 enum eDomain {
95 eDomainNotset, eDomainA, eDomainB, eDomainNr
97 static const char* DomainString[eDomainNr] = { "not_assigned", "Domain_A", "Domain_B" }; /**< Name for the domains */
101 /*! \internal \brief
102 * Structure containing compartment-specific data.
104 typedef struct swap_compartment
106 int nMol; /**< Number of ion or water molecules detected
107 in this compartment. */
108 int nMolBefore; /**< Number of molecules before swapping. */
109 int nMolReq; /**< Requested number of molecules in compartment. */
110 real nMolAv; /**< Time-averaged number of molecules matching
111 the compartment conditions. */
112 int *nMolPast; /**< Past molecule counts for time-averaging. */
113 int *ind; /**< Indices to collective array of atoms. */
114 real *dist; /**< Distance of atom to bulk layer, which is
115 normally the center layer of the compartment */
116 int nalloc; /**< Allocation size for ind array. */
117 int inflow_net; /**< Net inflow of ions into this compartment. */
118 } t_compartment;
121 /*! \internal \brief
122 * This structure contains data needed for the groups involved in swapping:
123 * split group 0, split group 1, solvent group, ion groups.
125 typedef struct swap_group
127 char *molname; /**< Name of the group or ion type */
128 int nat; /**< Number of atoms in the group */
129 int apm; /**< Number of atoms in each molecule */
130 int *ind; /**< Global atom indices of the group (size nat) */
131 int *ind_loc; /**< Local atom indices of the group */
132 int nat_loc; /**< Number of local group atoms */
133 int nalloc_loc; /**< Allocation size for ind_loc */
134 rvec *xc; /**< Collective array of group atom positions (size nat) */
135 ivec *xc_shifts; /**< Current (collective) shifts (size nat) */
136 ivec *xc_eshifts; /**< Extra shifts since last DD step (size nat) */
137 rvec *xc_old; /**< Old (collective) positions (size nat) */
138 real q; /**< Total charge of one molecule of this group */
139 int *c_ind_loc; /**< Position of local atoms in the
140 collective array, [0..nat_loc] */
141 real *m; /**< Masses (can be omitted, size apm) */
142 unsigned char *comp_from; /**< (Collective) Stores from which compartment this
143 molecule has come. This way we keep track of
144 through which channel an ion permeates
145 (size nMol = nat/apm) */
146 unsigned char *comp_now; /**< In which compartment this ion is now (size nMol) */
147 unsigned char *channel_label; /**< Which channel was passed at last by this ion?
148 (size nMol) */
149 rvec center; /**< Center of the group; COM if masses are used */
150 t_compartment comp[eCompNR]; /**< Distribution of particles of this group across
151 the two compartments */
152 real vacancy[eCompNR]; /**< How many molecules need to be swapped in? */
153 int fluxfromAtoB[eChanNR]; /**< Net flux of ions per channel */
154 int nCyl[eChanNR]; /**< Number of ions residing in a channel */
155 int nCylBoth; /**< Ions assigned to cyl0 and cyl1. Not good. */
156 } t_swapgrp;
159 /*! \internal \brief
160 * Main (private) data structure for the position swapping protocol.
162 typedef struct t_swap
164 int swapdim; /**< One of XX, YY, ZZ */
165 t_pbc *pbc; /**< Needed to make molecules whole. */
166 FILE *fpout; /**< Output file. */
167 int ngrp; /**< Number of t_swapgrp groups */
168 t_swapgrp *group; /**< Separate groups for channels, solvent, ions */
169 int fluxleak; /**< Flux not going through any of the channels. */
170 real deltaQ; /**< The charge imbalance between the compartments. */
171 } t_swap;
175 /*! \brief Check whether point is in channel.
177 * A channel is a cylinder defined by a disc
178 * with radius r around its center c. The thickness of the cylinder is
179 * d_up - d_down.
181 * \code
182 * ^ d_up
184 * r |
185 * <---------c--------->
187 * v d_down
189 * \endcode
191 * \param[in] point The position (xyz) under consideration.
192 * \param[in] center The center of the cylinder.
193 * \param[in] d_up The upper extension of the cylinder.
194 * \param[in] d_down The lower extension.
195 * \param[in] r_cyl2 Cylinder radius squared.
196 * \param[in] pbc Structure with info about periodic boundary conditions.
197 * \param[in] normal The membrane normal direction is typically 3, i.e. z, but can be x or y also.
199 * \returns Whether the point is inside the defined cylindric channel.
201 static gmx_bool is_in_channel(
202 rvec point,
203 rvec center,
204 real d_up,
205 real d_down,
206 real r_cyl2,
207 t_pbc *pbc,
208 int normal)
210 rvec dr;
211 int plane1, plane2; /* Directions tangential to membrane */
214 plane1 = (normal + 1) % 3; /* typically 0, i.e. XX */
215 plane2 = (normal + 2) % 3; /* typically 1, i.e. YY */
217 /* Get the distance vector dr between the point and the center of the cylinder */
218 pbc_dx(pbc, point, center, dr); /* This puts center in the origin */
220 /* Check vertical direction */
221 if ( (dr[normal] > d_up) || (dr[normal] < -d_down) )
223 return FALSE;
226 /* Check radial direction */
227 if ( (dr[plane1]*dr[plane1] + dr[plane2]*dr[plane2]) > r_cyl2)
229 return FALSE;
232 /* All check passed, this point is in the cylinder */
233 return TRUE;
237 /*! \brief Prints output to CompEL output file.
239 * Prints to swap output file how many ions are in each compartment,
240 * where the centers of the split groups are, and how many ions of each type
241 * passed the channels.
243 static void print_ionlist(
244 t_swap *s,
245 double time,
246 const char comment[])
248 // Output time
249 fprintf(s->fpout, "%12.5e", time);
251 // Output number of molecules and difference to reference counts for each
252 // compartment and ion type
253 for (int iComp = 0; iComp < eCompNR; iComp++)
255 for (int ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
257 t_compartment *comp = &s->group[ig].comp[iComp];
259 fprintf(s->fpout, "%10d%10.1f%10d", comp->nMol, comp->nMolAv - comp->nMolReq, comp->inflow_net);
263 // Output center of split groups
264 fprintf(s->fpout, "%10g%10g",
265 s->group[eGrpSplit0].center[s->swapdim],
266 s->group[eGrpSplit1].center[s->swapdim]);
268 // Output ion flux for each channel and ion type
269 for (int iChan = 0; iChan < eChanNR; iChan++)
271 for (int ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
273 t_swapgrp *g = &s->group[ig];
274 fprintf(s->fpout, "%10d", g->fluxfromAtoB[iChan]);
278 /* Output the number of molecules that leaked from A to B */
279 fprintf(s->fpout, "%10d", s->fluxleak);
281 fprintf(s->fpout, "%s\n", comment);
285 /*! \brief Get the center of a group of nat atoms.
287 * Since with PBC an atom group might not be whole, use the first atom as the
288 * reference atom and determine the center with respect to this reference.
290 static void get_molecule_center(
291 rvec x[],
292 int nat,
293 const real *weights,
294 rvec center,
295 t_pbc *pbc)
297 int i;
298 rvec weightedPBCimage;
299 real wi, wsum;
300 rvec reference, correctPBCimage, dx;
303 /* Use the first atom as the reference and put other atoms near that one */
304 /* This does not work for large molecules that span > half of the box! */
305 copy_rvec(x[0], reference);
307 /* Calculate either the weighted center or simply the center of geometry */
308 wsum = 0.0;
309 clear_rvec(center);
310 for (i = 0; i < nat; i++)
312 /* PBC distance between position and reference */
313 pbc_dx(pbc, x[i], reference, dx);
315 /* Add PBC distance to reference */
316 rvec_add(reference, dx, correctPBCimage);
318 /* Take weight into account */
319 if (nullptr == weights)
321 wi = 1.0;
323 else
325 wi = weights[i];
327 wsum += wi;
328 svmul(wi, correctPBCimage, weightedPBCimage);
330 /* Add to center */
331 rvec_inc(center, weightedPBCimage);
334 /* Normalize */
335 svmul(1.0/wsum, center, center);
340 /*! \brief Return TRUE if position x of ion (or water) is found in the compartment,
341 * i.e. between w1 and w2.
343 * One can define and additional offset "b" if one wants to exchange ions/water
344 * to or from a plane not directly in the middle of w1 and w2. The offset can be
345 * in ]-1.0, ..., +1.0 [.
346 * A bulkOffset of 0.0 means 'no offset', so the swap-layer is directly in the
347 * middle between w1 and w2. Offsets -1.0 < b < 0.0 will yield swaps nearer to w1,
348 * whereas offsets 0.0 < 0 < +1.0 will yield swaps nearer to w2.
350 * \code
352 * ||--------------+-------------|-------------+------------------------||
353 * w1 ? ? ? ? ? ? ? ? ? ? ? w2
354 * ||--------------+-------------|----b--------+------------------------||
355 * -1 0.0 +1
357 * \endcode
359 * \param[in] w1 Position of 'wall' atom 1.
360 * \param[in] w2 Position of 'wall' atom 2.
361 * \param[in] x Position of the ion or the water molecule under consideration.
362 * \param[in] l Length of the box, from || to || in the sketch.
363 * \param[in] bulkOffset Where is the bulk layer "b" to be found between w1 and w2?
364 * \param[out] distance_from_b Distance of x to the bulk layer "b".
366 * \returns TRUE if x is between w1 and w2.
368 * Also computes the distance of x to the compartment center (the layer that is
369 * normally situated in the middle of w1 and w2 that would be considered as having
370 * the bulk concentration of ions).
372 static gmx_bool compartment_contains_atom(
373 real w1,
374 real w2,
375 real x,
376 real l,
377 real bulkOffset,
378 real *distance_from_b)
380 real m, l_2;
381 real width;
384 /* First set the origin in the middle of w1 and w2 */
385 m = 0.5 * (w1 + w2);
386 w1 -= m;
387 w2 -= m;
388 x -= m;
389 width = w2 - w1;
391 /* Now choose the PBC image of x that is closest to the origin: */
392 l_2 = 0.5*l;
393 while (x > l_2)
395 x -= l;
397 while (x <= -l_2)
399 x += l;
402 *distance_from_b = (real)fabs(x - bulkOffset*0.5*width);
404 /* Return TRUE if we now are in area "????" */
405 if ( (x >= w1) && (x < w2) )
407 return TRUE;
409 else
411 return FALSE;
416 /*! \brief Updates the time-averaged number of ions in a compartment. */
417 static void update_time_window(t_compartment *comp, int values, int replace)
419 real average;
420 int i;
423 /* Put in the new value */
424 if (replace >= 0)
426 comp->nMolPast[replace] = comp->nMol;
429 /* Compute the new time-average */
430 average = 0.0;
431 for (i = 0; i < values; i++)
433 average += comp->nMolPast[i];
435 average /= values;
436 comp->nMolAv = average;
440 /*! \brief Add the atom with collective index ci to the atom list in compartment 'comp'.
442 * \param[in] ci Index of this ion in the collective xc array.
443 * \param[inout] comp Compartment to add this atom to.
444 * \param[in] distance Shortest distance of this atom to the bulk layer,
445 * from which ion/water pairs are selected for swapping.
447 static void add_to_list(
448 int ci,
449 t_compartment *comp,
450 real distance)
452 int nr = comp->nMol;
454 if (nr >= comp->nalloc)
456 comp->nalloc = over_alloc_dd(nr+1);
457 srenew(comp->ind, comp->nalloc);
458 srenew(comp->dist, comp->nalloc);
460 comp->ind[nr] = ci;
461 comp->dist[nr] = distance;
462 comp->nMol++;
466 /*! \brief Determine the compartment boundaries from the channel centers. */
467 static void get_compartment_boundaries(
468 int c,
469 t_swap *s,
470 const matrix box,
471 real *left, real *right)
473 real pos0, pos1;
474 real leftpos, rightpos, leftpos_orig;
477 if (c >= eCompNR)
479 gmx_fatal(FARGS, "No compartment %c.", c+'A');
482 pos0 = s->group[eGrpSplit0].center[s->swapdim];
483 pos1 = s->group[eGrpSplit1].center[s->swapdim];
485 if (pos0 < pos1)
487 leftpos = pos0;
488 rightpos = pos1;
490 else
492 leftpos = pos1;
493 rightpos = pos0;
496 /* This gets us the other compartment: */
497 if (c == eCompB)
499 leftpos_orig = leftpos;
500 leftpos = rightpos;
501 rightpos = leftpos_orig + box[s->swapdim][s->swapdim];
504 *left = leftpos;
505 *right = rightpos;
509 /*! \brief Determine the per-channel ion flux.
511 * To determine the flux through the individual channels, we
512 * remember the compartment and channel history of each ion. An ion can be
513 * either in channel0 or channel1, or in the remaining volume of compartment
514 * A or B.
516 * \code
517 * +-----------------+
518 * | | B
519 * | | B compartment
520 * ||||||||||0|||||||| bilayer with channel 0
521 * | | A
522 * | | A
523 * | | A compartment
524 * | | A
525 * |||||1||||||||||||| bilayer with channel 1
526 * | | B
527 * | | B compartment
528 * +-----------------+
530 * \endcode
532 static void detect_flux_per_channel(
533 t_swapgrp *g,
534 int iAtom,
535 int comp,
536 rvec atomPosition,
537 unsigned char *comp_now,
538 unsigned char *comp_from,
539 unsigned char *channel_label,
540 t_swapcoords *sc,
541 real cyl0_r2,
542 real cyl1_r2,
543 gmx_int64_t step,
544 gmx_bool bRerun,
545 FILE *fpout)
547 gmx_swapcoords_t s;
548 int sd, chan_nr;
549 gmx_bool in_cyl0, in_cyl1;
550 char buf[STRLEN];
553 s = sc->si_priv;
554 sd = s->swapdim;
556 /* Check whether ion is inside any of the channels */
557 in_cyl0 = is_in_channel(atomPosition, s->group[eGrpSplit0].center, sc->cyl0u, sc->cyl0l, cyl0_r2, s->pbc, sd);
558 in_cyl1 = is_in_channel(atomPosition, s->group[eGrpSplit1].center, sc->cyl1u, sc->cyl1l, cyl1_r2, s->pbc, sd);
560 if (in_cyl0 && in_cyl1)
562 /* Ion appears to be in both channels. Something is severely wrong! */
563 g->nCylBoth++;
564 *comp_now = eDomainNotset;
565 *comp_from = eDomainNotset;
566 *channel_label = eChHistPassedNone;
568 else if (in_cyl0)
570 /* Ion is in channel 0 now */
571 *channel_label = eChHistPassedCh0;
572 *comp_now = eDomainNotset;
573 g->nCyl[eChan0]++;
575 else if (in_cyl1)
577 /* Ion is in channel 1 now */
578 *channel_label = eChHistPassedCh1;
579 *comp_now = eDomainNotset;
580 g->nCyl[eChan1]++;
582 else
584 /* Ion is not in any of the channels, so it must be in domain A or B */
585 if (eCompA == comp)
587 *comp_now = eDomainA;
589 else
591 *comp_now = eDomainB;
595 /* Only take action, if ion is now in domain A or B, and was before
596 * in the other domain!
598 if (eDomainNotset == *comp_from)
600 /* Maybe we can set the domain now */
601 *comp_from = *comp_now; /* Could still be eDomainNotset, though */
603 else if ( (*comp_now != eDomainNotset ) /* if in channel */
604 && (*comp_from != *comp_now) )
606 /* Obviously the ion changed its domain.
607 * Count this for the channel through which it has passed. */
608 switch (*channel_label)
610 case eChHistPassedNone:
611 ++s->fluxleak;
613 fprintf(stderr, " %s Warning! Step %s, ion %d moved from %s to %s\n",
614 SwS, gmx_step_str(step, buf), iAtom, DomainString[*comp_from], DomainString[*comp_now]);
615 if (bRerun)
617 fprintf(stderr, ", possibly due to a swap in the original simulation.\n");
619 else
621 fprintf(stderr, "but did not pass cyl0 or cyl1 as defined in the .mdp file.\n"
622 "Do you have an ion somewhere within the membrane?\n");
623 /* Write this info to the CompEL output file: */
624 fprintf(s->fpout, " # Warning: step %s, ion %d moved from %s to %s (probably through the membrane)\n",
625 gmx_step_str(step, buf), iAtom,
626 DomainString[*comp_from], DomainString[*comp_now]);
629 break;
630 case eChHistPassedCh0:
631 case eChHistPassedCh1:
632 if (*channel_label == eChHistPassedCh0)
634 chan_nr = 0;
636 else
638 chan_nr = 1;
641 if (eDomainA == *comp_from)
643 g->fluxfromAtoB[chan_nr]++;
645 else
647 g->fluxfromAtoB[chan_nr]--;
649 fprintf(fpout, "# Atom nr. %d finished passing %s.\n", iAtom, ChannelString[*channel_label]);
650 break;
651 default:
652 gmx_fatal(FARGS, "%s Unknown channel history entry for ion type '%s'\n",
653 SwS, g->molname);
656 /* This ion has moved to the _other_ compartment ... */
657 *comp_from = *comp_now;
658 /* ... and it did not pass any channel yet */
659 *channel_label = eChHistPassedNone;
664 /*! \brief Determines which ions or solvent molecules are in compartment A and B */
665 static void sortMoleculesIntoCompartments(
666 t_swapgrp *g,
667 t_commrec *cr,
668 t_swapcoords *sc,
669 const matrix box,
670 gmx_int64_t step,
671 FILE *fpout,
672 gmx_bool bRerun,
673 gmx_bool bIsSolvent)
675 gmx_swapcoords_t s = sc->si_priv;
676 int nMolNotInComp[eCompNR]; /* consistency check */
677 real cyl0_r2 = sc->cyl0r * sc->cyl0r;
678 real cyl1_r2 = sc->cyl1r * sc->cyl1r;
680 /* Get us a counter that cycles in the range of [0 ... sc->nAverage[ */
681 int replace = (step/sc->nstswap) % sc->nAverage;
683 for (int comp = eCompA; comp <= eCompB; comp++)
685 real left, right;
687 /* Get lists of atoms that match criteria for this compartment */
688 get_compartment_boundaries(comp, sc->si_priv, box, &left, &right);
690 /* First clear the ion molecule lists */
691 g->comp[comp].nMol = 0;
692 nMolNotInComp[comp] = 0; /* consistency check */
694 /* Loop over the molecules and atoms of this group */
695 for (int iMol = 0, iAtom = 0; iAtom < g->nat; iAtom += g->apm, iMol++)
697 real dist;
698 int sd = s->swapdim;
700 /* Is this first atom of the molecule in the compartment that we look at? */
701 if (compartment_contains_atom(left, right, g->xc[iAtom][sd], box[sd][sd], sc->bulkOffset[comp], &dist) )
703 /* Add the first atom of this molecule to the list of molecules in this compartment */
704 add_to_list(iAtom, &g->comp[comp], dist);
706 /* Master also checks for ion groups through which channel each ion has passed */
707 if (MASTER(cr) && (g->comp_now != nullptr) && !bIsSolvent)
709 int globalAtomNr = g->ind[iAtom] + 1; /* PDB index starts at 1 ... */
710 detect_flux_per_channel(g, globalAtomNr, comp, g->xc[iAtom],
711 &g->comp_now[iMol], &g->comp_from[iMol], &g->channel_label[iMol],
712 sc, cyl0_r2, cyl1_r2, step, bRerun, fpout);
715 else
717 nMolNotInComp[comp]++;
720 /* Correct the time-averaged number of ions in the compartment */
721 if (!bIsSolvent)
723 update_time_window(&g->comp[comp], sc->nAverage, replace);
727 /* Flux detection warnings */
728 if (MASTER(cr) && !bIsSolvent)
730 if (g->nCylBoth > 0)
732 fprintf(stderr, "\n"
733 "%s Warning: %d atoms were detected as being in both channels! Probably your split\n"
734 "%s cylinder is way too large, or one compartment has collapsed (step %" GMX_PRId64 ")\n",
735 SwS, g->nCylBoth, SwS, step);
737 fprintf(s->fpout, "Warning: %d atoms were assigned to both channels!\n", g->nCylBoth);
739 g->nCylBoth = 0;
743 if (bIsSolvent && nullptr != fpout)
745 fprintf(fpout, "# Solv. molecules in comp.%s: %d comp.%s: %d\n",
746 CompStr[eCompA], g->comp[eCompA].nMol,
747 CompStr[eCompB], g->comp[eCompB].nMol);
750 /* Consistency checks */
751 if (nMolNotInComp[eCompA] + nMolNotInComp[eCompB] != g->nat / g->apm)
753 fprintf(stderr, "%s Warning: Inconsistency while assigning '%s' molecules to compartments. !inA: %d, !inB: %d, total molecules %d\n",
754 SwS, g->molname, nMolNotInComp[eCompA], nMolNotInComp[eCompB], g->nat/g->apm);
757 int sum = g->comp[eCompA].nMol + g->comp[eCompB].nMol;
758 if (sum != g->nat/g->apm)
760 fprintf(stderr, "%s Warning: %d molecules are in group '%s', but altogether %d have been assigned to the compartments.\n",
761 SwS, g->nat/g->apm, g->molname, sum);
766 /*! \brief Find out how many group atoms are in the compartments initially */
767 static void get_initial_ioncounts(
768 t_inputrec *ir,
769 const rvec x[], /* the initial positions */
770 const matrix box,
771 t_commrec *cr,
772 gmx_bool bRerun)
774 t_swapcoords *sc;
775 t_swap *s;
776 t_swapgrp *g;
777 int i, ind, ic, ig;
778 int req, tot;
781 sc = ir->swap;
782 s = sc->si_priv;
785 /* Loop over the user-defined (ion) groups */
786 for (ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
788 g = &s->group[ig];
790 /* Copy the initial positions of the atoms in the group
791 * to the collective array so that we can compartmentalize */
792 for (i = 0; i < g->nat; i++)
794 ind = g->ind[i];
795 copy_rvec(x[ind], g->xc[i]);
798 /* Set up the compartments and get lists of atoms in each compartment */
799 sortMoleculesIntoCompartments(g, cr, sc, box, 0, s->fpout, bRerun, FALSE);
801 /* Set initial molecule counts if requested (as signaled by "-1" value) */
802 for (ic = 0; ic < eCompNR; ic++)
804 int requested = sc->grp[ig].nmolReq[ic];
805 if (requested < 0)
807 g->comp[ic].nMolReq = g->comp[ic].nMol;
809 else
811 g->comp[ic].nMolReq = requested;
815 /* Check whether the number of requested molecules adds up to the total number */
816 req = g->comp[eCompA].nMolReq + g->comp[eCompB].nMolReq;
817 tot = g->comp[eCompA].nMol + g->comp[eCompB].nMol;
819 if ( (req != tot) )
821 gmx_fatal(FARGS, "Mismatch of the number of %s ions summed over both compartments.\n"
822 "You requested a total of %d ions (%d in A and %d in B),\n"
823 "but there are a total of %d ions of this type in the system.\n",
824 g->molname, req, g->comp[eCompA].nMolReq,
825 g->comp[eCompB].nMolReq, tot);
828 /* Initialize time-averaging:
829 * Write initial concentrations to all time bins to start with */
830 for (ic = 0; ic < eCompNR; ic++)
832 g->comp[ic].nMolAv = g->comp[ic].nMol;
833 for (i = 0; i < sc->nAverage; i++)
835 g->comp[ic].nMolPast[i] = g->comp[ic].nMol;
842 /*! \brief Copy history of ion counts from checkpoint file.
844 * When called, the checkpoint file has already been read in. Here we copy
845 * over the values from .cpt file to the swap data structure.
847 static void get_initial_ioncounts_from_cpt(
848 t_inputrec *ir, swaphistory_t *swapstate,
849 t_commrec *cr, gmx_bool bVerbose)
851 t_swapcoords *sc;
852 t_swap *s;
853 t_swapgrp *g;
854 swapstateIons_t *gs;
856 sc = ir->swap;
857 s = sc->si_priv;
859 if (MASTER(cr))
861 /* Copy the past values from the checkpoint values that have been read in already */
862 if (bVerbose)
864 fprintf(stderr, "%s Copying values from checkpoint\n", SwS);
867 for (int ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
869 g = &s->group[ig];
870 gs = &swapstate->ionType[ig - eSwapFixedGrpNR];
872 for (int ic = 0; ic < eCompNR; ic++)
874 g->comp[ic].nMolReq = gs->nMolReq[ic];
875 g->comp[ic].inflow_net = gs->inflow_net[ic];
877 if (bVerbose)
879 fprintf(stderr, "%s ... Influx netto: %d Requested: %d Past values: ", SwS,
880 g->comp[ic].inflow_net, g->comp[ic].nMolReq);
883 for (int j = 0; j < sc->nAverage; j++)
885 g->comp[ic].nMolPast[j] = gs->nMolPast[ic][j];
886 if (bVerbose)
888 fprintf(stderr, "%d ", g->comp[ic].nMolPast[j]);
891 if (bVerbose)
893 fprintf(stderr, "\n");
901 /*! \brief The master lets all others know about the initial ion counts. */
902 static void bc_initial_concentrations(
903 t_commrec *cr,
904 t_swapcoords *swap)
906 int ic, ig;
907 t_swap *s;
908 t_swapgrp *g;
911 s = swap->si_priv;
913 for (ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
915 g = &s->group[ig];
917 for (ic = 0; ic < eCompNR; ic++)
919 gmx_bcast(sizeof(g->comp[ic].nMolReq), &(g->comp[ic].nMolReq), cr);
920 gmx_bcast(sizeof(g->comp[ic].nMol ), &(g->comp[ic].nMol ), cr);
921 gmx_bcast( swap->nAverage * sizeof(g->comp[ic].nMolPast[0]), g->comp[ic].nMolPast, cr);
927 /*! \brief Ensure that each atom belongs to at most one of the swap groups. */
928 static void check_swap_groups(t_swap *s, int nat, gmx_bool bVerbose)
930 int *nGroup = nullptr; /* This array counts for each atom in the MD system to
931 how many swap groups it belongs (should be 0 or 1!) */
932 int ind = -1;
933 int nMultiple = 0; /* Number of atoms belonging to multiple groups */
936 if (bVerbose)
938 fprintf(stderr, "%s Making sure each atom belongs to at most one of the swap groups.\n", SwS);
941 /* Add one to the group count of atoms belonging to a swap group: */
942 snew(nGroup, nat);
943 for (int i = 0; i < s->ngrp; i++)
945 t_swapgrp *g = &s->group[i];
946 for (int j = 0; j < g->nat; j++)
948 /* Get the global index of this atom of this group: */
949 ind = g->ind[j];
950 nGroup[ind]++;
953 /* Make sure each atom belongs to at most one of the groups: */
954 for (int i = 0; i < nat; i++)
956 if (nGroup[i] > 1)
958 nMultiple++;
961 sfree(nGroup);
963 if (nMultiple)
965 gmx_fatal(FARGS, "%s Cannot perform swapping since %d atom%s allocated to more than one swap index group.\n"
966 "%s Each atom must be allocated to at most one of the split groups, the swap groups, or the solvent.\n"
967 "%s Check the .mdp file settings regarding the swap index groups or the index groups themselves.\n",
968 SwS, nMultiple, (1 == nMultiple) ? " is" : "s are", SwSEmpty, SwSEmpty);
973 /*! \brief Get the number of atoms per molecule for this group.
975 * Also ensure that all the molecules in this group have this number of atoms.
977 static int get_group_apm_check(
978 int igroup,
979 t_swap *s,
980 gmx_bool bVerbose,
981 gmx_mtop_t *mtop)
983 t_swapgrp *g = &s->group[igroup];
984 int *ind = s->group[igroup].ind;
985 int nat = s->group[igroup].nat;
987 /* Determine the number of solvent atoms per solvent molecule from the
988 * first solvent atom: */
989 int molb = 0;
990 mtopGetMolblockIndex(mtop, ind[0], &molb, nullptr, nullptr);
991 int apm = mtop->moleculeBlockIndices[molb].numAtomsPerMolecule;
993 if (bVerbose)
995 fprintf(stderr, "%s Checking whether all %s molecules consist of %d atom%s\n", SwS,
996 g->molname, apm, apm > 1 ? "s" : "");
999 /* Check whether this is also true for all other solvent atoms */
1000 for (int i = 1; i < nat; i++)
1002 mtopGetMolblockIndex(mtop, ind[i], &molb, nullptr, nullptr);
1003 if (apm != mtop->moleculeBlockIndices[molb].numAtomsPerMolecule)
1005 gmx_fatal(FARGS, "Not all molecules of swap group %d consist of %d atoms.",
1006 igroup, apm);
1010 //TODO: check whether charges and masses of each molecule are identical!
1011 return apm;
1015 /*! \brief Print the legend to the swap output file.
1017 * Also print the initial values of ion counts and position of split groups.
1019 static void print_ionlist_legend(t_inputrec *ir,
1020 const gmx_output_env_t *oenv)
1022 const char **legend;
1023 int count = 0;
1024 char buf[STRLEN];
1026 t_swap *s = ir->swap->si_priv;
1027 int nIonTypes = ir->swap->ngrp - eSwapFixedGrpNR;
1028 snew(legend, eCompNR*nIonTypes*3 + 2 + eChanNR*nIonTypes + 1);
1030 // Number of molecules and difference to reference counts for each
1031 // compartment and ion type
1032 for (int ic = count = 0; ic < eCompNR; ic++)
1034 for (int ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
1036 t_swapGroup *g = &ir->swap->grp[ig];
1037 real q = s->group[ig].q;
1039 snprintf(buf, STRLEN, "%s %s ions (charge %s%g)", CompStr[ic], g->molname, q > 0 ? "+" : "", q);
1040 legend[count++] = gmx_strdup(buf);
1042 snprintf(buf, STRLEN, "%s av. mismatch to %d %s ions",
1043 CompStr[ic], s->group[ig].comp[ic].nMolReq, g->molname);
1044 legend[count++] = gmx_strdup(buf);
1046 snprintf(buf, STRLEN, "%s net %s ion influx", CompStr[ic], g->molname);
1047 legend[count++] = gmx_strdup(buf);
1051 // Center of split groups
1052 snprintf(buf, STRLEN, "%scenter of %s of split group 0", SwapStr[ir->eSwapCoords], (nullptr != s->group[eGrpSplit0].m) ? "mass" : "geometry");
1053 legend[count++] = gmx_strdup(buf);
1054 snprintf(buf, STRLEN, "%scenter of %s of split group 1", SwapStr[ir->eSwapCoords], (nullptr != s->group[eGrpSplit1].m) ? "mass" : "geometry");
1055 legend[count++] = gmx_strdup(buf);
1057 // Ion flux for each channel and ion type
1058 for (int ic = 0; ic < eChanNR; ic++)
1060 for (int ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
1062 t_swapGroup *g = &ir->swap->grp[ig];
1063 snprintf(buf, STRLEN, "A->ch%d->B %s permeations", ic, g->molname);
1064 legend[count++] = gmx_strdup(buf);
1068 // Number of molecules that leaked from A to B
1069 snprintf(buf, STRLEN, "leakage");
1070 legend[count++] = gmx_strdup(buf);
1072 xvgr_legend(s->fpout, count, legend, oenv);
1074 fprintf(s->fpout, "# Instantaneous ion counts and time-averaged differences to requested numbers\n");
1076 // We add a simple text legend helping to identify the columns with xvgr legend strings
1077 fprintf(s->fpout, "# time (ps)");
1078 for (int i = 0; i < count; i++)
1080 snprintf(buf, STRLEN, "s%d", i);
1081 fprintf(s->fpout, "%10s", buf);
1083 fprintf(s->fpout, "\n");
1084 fflush(s->fpout);
1088 /*! \brief Initialize channel ion flux detection routine.
1090 * Initialize arrays that keep track of where the ions come from and where
1091 * they go.
1093 static void detect_flux_per_channel_init(
1094 t_swap *s,
1095 swaphistory_t *swapstate,
1096 gmx_bool bStartFromCpt)
1098 t_swapgrp *g;
1099 swapstateIons_t *gs;
1101 /* All these flux detection routines run on the master only */
1102 if (swapstate == nullptr)
1104 return;
1107 for (int ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
1109 g = &s->group[ig];
1110 gs = &swapstate->ionType[ig - eSwapFixedGrpNR];
1112 /******************************************************/
1113 /* Channel and domain history for the individual ions */
1114 /******************************************************/
1115 if (bStartFromCpt) /* set the pointers right */
1117 g->comp_from = gs->comp_from;
1118 g->channel_label = gs->channel_label;
1120 else /* allocate memory for molecule counts */
1122 snew(g->comp_from, g->nat/g->apm);
1123 gs->comp_from = g->comp_from;
1124 snew(g->channel_label, g->nat/g->apm);
1125 gs->channel_label = g->channel_label;
1127 snew(g->comp_now, g->nat/g->apm);
1129 /* Initialize the channel and domain history counters */
1130 for (int i = 0; i < g->nat/g->apm; i++)
1132 g->comp_now[i] = eDomainNotset;
1133 if (!bStartFromCpt)
1135 g->comp_from[i] = eDomainNotset;
1136 g->channel_label[i] = eChHistPassedNone;
1140 /************************************/
1141 /* Channel fluxes for both channels */
1142 /************************************/
1143 g->nCyl[eChan0] = 0;
1144 g->nCyl[eChan1] = 0;
1145 g->nCylBoth = 0;
1148 if (bStartFromCpt)
1150 fprintf(stderr, "%s Copying channel fluxes from checkpoint file data\n", SwS);
1154 // Loop over ion types (and both channels)
1155 for (int ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
1157 g = &s->group[ig];
1158 gs = &swapstate->ionType[ig - eSwapFixedGrpNR];
1160 for (int ic = 0; ic < eChanNR; ic++)
1162 fprintf(stderr, "%s Channel %d flux history for ion type %s (charge %g): ", SwS, ic, g->molname, g->q);
1163 if (bStartFromCpt)
1165 g->fluxfromAtoB[ic] = gs->fluxfromAtoB[ic];
1167 else
1169 g->fluxfromAtoB[ic] = 0;
1172 fprintf(stderr, "%d molecule%s",
1173 g->fluxfromAtoB[ic], g->fluxfromAtoB[ic] == 1 ? "" : "s");
1174 fprintf(stderr, "\n");
1178 /* Set pointers for checkpoint writing */
1179 swapstate->fluxleak_p = &s->fluxleak;
1180 for (int ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
1182 g = &s->group[ig];
1183 gs = &swapstate->ionType[ig - eSwapFixedGrpNR];
1185 for (int ic = 0; ic < eChanNR; ic++)
1187 gs->fluxfromAtoB_p[ic] = &g->fluxfromAtoB[ic];
1193 /*! \brief Outputs the initial structure to PDB file for debugging reasons.
1195 * Output the starting structure so that in case of multimeric channels
1196 * the user can check whether we have the correct PBC image for all atoms.
1197 * If this is not correct, the ion counts per channel will be very likely
1198 * wrong.
1200 static void outputStartStructureIfWanted(gmx_mtop_t *mtop, rvec *x, int ePBC, const matrix box)
1202 char *env = getenv("GMX_COMPELDUMP");
1204 if (env != nullptr)
1206 fprintf(stderr, "\n%s Found env.var. GMX_COMPELDUMP, will output CompEL starting structure made whole.\n"
1207 "%s In case of multimeric channels, please check whether they have the correct PBC representation.\n",
1208 SwS, SwSEmpty);
1210 write_sto_conf_mtop("CompELAssumedWholeConfiguration.pdb", *mtop->name, mtop, x, nullptr, ePBC, box);
1215 /*! \brief Initialize the swapstate structure, used for checkpoint writing.
1217 * The swapstate struct stores the information we need to make the channels
1218 * whole again after restarts from a checkpoint file. Here we do the following:
1219 * a) If we did not start from .cpt, we prepare the struct for proper .cpt writing,
1220 * b) if we did start from .cpt, we copy over the last whole structures from .cpt,
1221 * c) in any case, for subsequent checkpoint writing, we set the pointers in
1222 * swapstate to the x_old arrays, which contain the correct PBC representation of
1223 * multimeric channels at the last time step.
1225 static void init_swapstate(
1226 swaphistory_t *swapstate,
1227 t_swapcoords *sc,
1228 gmx_mtop_t *mtop,
1229 const rvec *x, /* the initial positions */
1230 const matrix box,
1231 t_inputrec *ir)
1233 rvec *x_pbc = nullptr; /* positions of the whole MD system with molecules made whole */
1234 t_swapgrp *g;
1235 t_swap *s;
1238 s = sc->si_priv;
1240 /* We always need the last whole positions such that
1241 * in the next time step we can make the channels whole again in PBC */
1242 if (swapstate->bFromCpt)
1244 /* Copy the last whole positions of each channel from .cpt */
1245 g = &(s->group[eGrpSplit0]);
1246 for (int i = 0; i < g->nat; i++)
1248 copy_rvec(swapstate->xc_old_whole[eChan0][i], g->xc_old[i]);
1250 g = &(s->group[eGrpSplit1]);
1251 for (int i = 0; i < g->nat; i++)
1253 copy_rvec(swapstate->xc_old_whole[eChan1][i], g->xc_old[i]);
1256 else
1258 swapstate->eSwapCoords = ir->eSwapCoords;
1260 /* Set the number of ion types and allocate memory for checkpointing */
1261 swapstate->nIonTypes = s->ngrp - eSwapFixedGrpNR;
1262 snew(swapstate->ionType, swapstate->nIonTypes);
1264 /* Store the total number of ions of each type in the swapstateIons
1265 * structure that is accessible during checkpoint writing */
1266 for (int ii = 0; ii < swapstate->nIonTypes; ii++)
1268 swapstateIons_t *gs = &swapstate->ionType[ii];
1269 gs->nMol = sc->grp[ii + eSwapFixedGrpNR].nat;
1272 /* Extract the initial split group positions. */
1274 /* Remove pbc, make molecule whole. */
1275 snew(x_pbc, mtop->natoms);
1276 copy_rvecn(x, x_pbc, 0, mtop->natoms);
1278 /* This can only make individual molecules whole, not multimers */
1279 do_pbc_mtop(nullptr, ir->ePBC, box, mtop, x_pbc);
1281 /* Output the starting structure? */
1282 outputStartStructureIfWanted(mtop, x_pbc, ir->ePBC, box);
1284 /* If this is the first run (i.e. no checkpoint present) we assume
1285 * that the starting positions give us the correct PBC representation */
1286 for (int ig = eGrpSplit0; ig <= eGrpSplit1; ig++)
1288 g = &(s->group[ig]);
1289 for (int i = 0; i < g->nat; i++)
1291 copy_rvec(x_pbc[g->ind[i]], g->xc_old[i]);
1294 sfree(x_pbc);
1296 /* Prepare swapstate arrays for later checkpoint writing */
1297 swapstate->nat[eChan0] = s->group[eGrpSplit0].nat;
1298 swapstate->nat[eChan1] = s->group[eGrpSplit1].nat;
1301 /* For subsequent checkpoint writing, set the swapstate pointers to the xc_old
1302 * arrays that get updated at every swapping step */
1303 swapstate->xc_old_whole_p[eChan0] = &s->group[eGrpSplit0].xc_old;
1304 swapstate->xc_old_whole_p[eChan1] = &s->group[eGrpSplit1].xc_old;
1307 /*! \brief Determine the total charge imbalance resulting from the swap groups */
1308 static real getRequestedChargeImbalance(t_swap *s)
1310 int ig;
1311 real DeltaQ = 0.0;
1312 t_swapgrp *g;
1313 real particle_charge;
1314 real particle_number[eCompNR];
1316 // s->deltaQ = ( (-1) * s->comp[eCompA][eIonNEG].nat_req + s->comp[eCompA][eIonPOS].nat_req )
1317 // - ( (-1) * s->comp[eCompB][eIonNEG].nat_req + s->comp[eCompB][eIonPOS].nat_req );
1319 for (ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
1321 g = &s->group[ig];
1323 particle_charge = g->q;
1324 particle_number[eCompA] = g->comp[eCompA].nMolReq;
1325 particle_number[eCompB] = g->comp[eCompB].nMolReq;
1327 DeltaQ += particle_charge * (particle_number[eCompA] - particle_number[eCompB]);
1330 return DeltaQ;
1334 /*! \brief Sorts anions and cations into two separate groups
1336 * This routine should be called for the 'anions' and 'cations' group,
1337 * of which the indices were lumped together in the older version of the code.
1339 static void copyIndicesToGroup(
1340 const int *indIons,
1341 int nIons,
1342 t_swapGroup *g,
1343 t_commrec *cr)
1345 g->nat = nIons;
1347 /* If explicit ion counts were requested in the .mdp file
1348 * (by setting positive values for the number of ions),
1349 * we can make an additional consistency check here */
1350 if ( (g->nmolReq[eCompA] < 0) && (g->nmolReq[eCompB] < 0) )
1352 if (g->nat != (g->nmolReq[eCompA] + g->nmolReq[eCompB]) )
1354 gmx_fatal_collective(FARGS, cr->mpi_comm_mysim, MASTER(cr),
1355 "%s Inconsistency while importing swap-related data from an old input file version.\n"
1356 "%s The requested ion counts in compartments A (%d) and B (%d)\n"
1357 "%s do not add up to the number of ions (%d) of this type for the group '%s'.\n",
1358 SwS, SwSEmpty, g->nmolReq[eCompA], g->nmolReq[eCompB], SwSEmpty, g->nat, g->molname);
1362 srenew(g->ind, g->nat);
1363 for (int i = 0; i < g->nat; i++)
1365 g->ind[i] = indIons[i];
1370 /*! \brief Converts old .tpr file CompEL contents to new data layout.
1372 * If we have read an old .tpr file (tpxv <= tpxv_CompElPolyatomicIonsAndMultipleIonTypes),
1373 * anions and cations are stored together in group #3. In the new
1374 * format we store each ion type in a separate group.
1375 * The 'classic' groups are:
1376 * #0 split group 0 - OK
1377 * #1 split group 1 - OK
1378 * #2 solvent - OK
1379 * #3 anions - contains also cations, needs to be converted
1380 * #4 cations - empty before conversion
1383 static void convertOldToNewGroupFormat(
1384 t_swapcoords *sc,
1385 gmx_mtop_t *mtop,
1386 gmx_bool bVerbose,
1387 t_commrec *cr)
1389 t_swapGroup *g = &sc->grp[3];
1391 /* Loop through the atom indices of group #3 (anions) and put all indices
1392 * that belong to cations into the cation group.
1394 int nAnions = 0;
1395 int nCations = 0;
1396 int *indAnions = nullptr;
1397 int *indCations = nullptr;
1398 snew(indAnions, g->nat);
1399 snew(indCations, g->nat);
1401 int molb = 0;
1402 for (int i = 0; i < g->nat; i++)
1404 const t_atom &atom = mtopGetAtomParameters(mtop, g->ind[i], &molb);
1405 if (atom.q < 0)
1407 // This is an anion, add it to the list of anions
1408 indAnions[nAnions++] = g->ind[i];
1410 else
1412 // This is a cation, add it to the list of cations
1413 indCations[nCations++] = g->ind[i];
1417 if (bVerbose)
1419 fprintf(stdout, "%s Sorted %d ions into separate groups of %d anions and %d cations.\n",
1420 SwS, g->nat, nAnions, nCations);
1424 /* Now we have the correct lists of anions and cations.
1425 * Copy it to the right groups.
1427 copyIndicesToGroup(indAnions, nAnions, g, cr);
1428 g = &sc->grp[4];
1429 copyIndicesToGroup(indCations, nCations, g, cr);
1430 sfree(indAnions);
1431 sfree(indCations);
1435 /*! \brief Returns TRUE if we started from an old .tpr
1437 * Then we need to re-sort anions and cations into separate groups */
1438 static gmx_bool bConvertFromOldTpr(t_swapcoords *sc)
1440 // If the last group has no atoms it means we need to convert!
1441 if ( (sc->ngrp >= 5) && (0 == sc->grp[4].nat) )
1443 return TRUE;
1445 return FALSE;
1449 void init_swapcoords(
1450 FILE *fplog,
1451 t_inputrec *ir,
1452 const char *fn,
1453 gmx_mtop_t *mtop,
1454 const t_state *globalState,
1455 ObservablesHistory *oh,
1456 t_commrec *cr,
1457 const gmx_output_env_t *oenv,
1458 const MdrunOptions &mdrunOptions)
1460 t_swapcoords *sc;
1461 t_swap *s;
1462 t_swapgrp *g;
1463 swapstateIons_t *gs;
1464 gmx_bool bAppend, bStartFromCpt;
1465 swaphistory_t *swapstate = nullptr;
1467 if ( (PAR(cr)) && !DOMAINDECOMP(cr) )
1469 gmx_fatal(FARGS, "Position swapping is only implemented for domain decomposition!");
1472 bAppend = mdrunOptions.continuationOptions.appendFiles;
1473 bStartFromCpt = mdrunOptions.continuationOptions.startedFromCheckpoint;
1475 sc = ir->swap;
1476 snew(sc->si_priv, 1);
1477 s = sc->si_priv;
1479 if (mdrunOptions.rerun)
1481 if (PAR(cr))
1483 gmx_fatal(FARGS, "%s This module does not support reruns in parallel\nPlease request a serial run with -nt 1 / -np 1\n", SwS);
1486 fprintf(stderr, "%s Rerun - using every available frame\n", SwS);
1487 sc->nstswap = 1;
1488 sc->nAverage = 1; /* averaging makes no sense for reruns */
1491 if (MASTER(cr) && !bAppend)
1493 fprintf(fplog, "\nInitializing ion/water position exchanges\n");
1494 please_cite(fplog, "Kutzner2011b");
1497 switch (ir->eSwapCoords)
1499 case eswapX:
1500 s->swapdim = XX;
1501 break;
1502 case eswapY:
1503 s->swapdim = YY;
1504 break;
1505 case eswapZ:
1506 s->swapdim = ZZ;
1507 break;
1508 default:
1509 s->swapdim = -1;
1510 break;
1513 const gmx_bool bVerbose = mdrunOptions.verbose;
1515 // For compatibility with old .tpr files
1516 if (bConvertFromOldTpr(sc) )
1518 convertOldToNewGroupFormat(sc, mtop, bVerbose && MASTER(cr), cr);
1521 /* Copy some data and pointers to the group structures for convenience */
1522 /* Number of atoms in the group */
1523 s->ngrp = sc->ngrp;
1524 snew(s->group, s->ngrp);
1525 for (int i = 0; i < s->ngrp; i++)
1527 s->group[i].nat = sc->grp[i].nat;
1528 s->group[i].ind = sc->grp[i].ind;
1529 s->group[i].molname = sc->grp[i].molname;
1532 /* Check for overlapping atoms */
1533 check_swap_groups(s, mtop->natoms, bVerbose && MASTER(cr));
1535 /* Allocate space for the collective arrays for all groups */
1536 /* For the collective position array */
1537 for (int i = 0; i < s->ngrp; i++)
1539 g = &s->group[i];
1540 snew(g->xc, g->nat);
1541 snew(g->c_ind_loc, g->nat);
1543 /* For the split groups (the channels) we need some extra memory to
1544 * be able to make the molecules whole even if they span more than
1545 * half of the box size. */
1546 if ( (i == eGrpSplit0) || (i == eGrpSplit1) )
1548 snew(g->xc_shifts, g->nat);
1549 snew(g->xc_eshifts, g->nat);
1550 snew(g->xc_old, g->nat);
1554 if (MASTER(cr))
1556 if (oh->swapHistory == nullptr)
1558 oh->swapHistory = std::unique_ptr<swaphistory_t>(new swaphistory_t {});
1560 swapstate = oh->swapHistory.get();
1562 init_swapstate(swapstate, sc, mtop, as_rvec_array(globalState->x.data()), globalState->box, ir);
1565 /* After init_swapstate we have a set of (old) whole positions for our
1566 * channels. Now transfer that to all nodes */
1567 if (PAR(cr))
1569 for (int ig = eGrpSplit0; ig <= eGrpSplit1; ig++)
1571 g = &(s->group[ig]);
1572 gmx_bcast((g->nat)*sizeof((g->xc_old)[0]), g->xc_old, (cr));
1576 /* Make sure that all molecules in the solvent and ion groups contain the
1577 * same number of atoms each */
1578 for (int ig = eGrpSolvent; ig < s->ngrp; ig++)
1580 real charge;
1582 g = &(s->group[ig]);
1583 g->apm = get_group_apm_check(ig, s, MASTER(cr) && bVerbose, mtop);
1585 /* Since all molecules of a group are equal, we only need enough space
1586 * to determine properties of a single molecule at at time */
1587 snew(g->m, g->apm); /* For the center of mass */
1588 charge = 0; /* To determine the charge imbalance */
1589 int molb = 0;
1590 for (int j = 0; j < g->apm; j++)
1592 const t_atom &atom = mtopGetAtomParameters(mtop, g->ind[j], &molb);
1593 g->m[j] = atom.m;
1594 charge += atom.q;
1596 /* Total charge of one molecule of this group: */
1597 g->q = charge;
1601 /* Need mass-weighted center of split group? */
1602 for (int j = eGrpSplit0; j <= eGrpSplit1; j++)
1604 g = &(s->group[j]);
1605 if (TRUE == sc->massw_split[j])
1607 /* Save the split group masses if mass-weighting is requested */
1608 snew(g->m, g->nat);
1609 int molb = 0;
1610 for (int i = 0; i < g->nat; i++)
1612 g->m[i] = mtopGetAtomMass(mtop, g->ind[i], &molb);
1617 /* Make a t_pbc struct on all nodes so that the molecules
1618 * chosen for an exchange can be made whole. */
1619 snew(s->pbc, 1);
1621 if (MASTER(cr))
1623 if (bVerbose)
1625 fprintf(stderr, "%s Opening output file %s%s\n", SwS, fn, bAppend ? " for appending" : "");
1628 s->fpout = gmx_fio_fopen(fn, bAppend ? "a" : "w" );
1630 if (!bAppend)
1632 xvgr_header(s->fpout, "Molecule counts", "Time (ps)", "counts", exvggtXNY, oenv);
1634 for (int ig = 0; ig < s->ngrp; ig++)
1636 g = &(s->group[ig]);
1637 fprintf(s->fpout, "# %s group '%s' contains %d atom%s",
1638 ig < eSwapFixedGrpNR ? eSwapFixedGrp_names[ig] : "Ion",
1639 g->molname, g->nat, (g->nat > 1) ? "s" : "");
1640 if (!(eGrpSplit0 == ig || eGrpSplit1 == ig) )
1642 fprintf(s->fpout, " with %d atom%s in each molecule of charge %g",
1643 g->apm, (g->apm > 1) ? "s" : "", g->q);
1645 fprintf(s->fpout, ".\n");
1648 fprintf(s->fpout, "#\n# Initial positions of split groups:\n");
1651 for (int j = eGrpSplit0; j <= eGrpSplit1; j++)
1653 g = &(s->group[j]);
1654 for (int i = 0; i < g->nat; i++)
1656 copy_rvec(globalState->x[sc->grp[j].ind[i]], g->xc[i]);
1658 /* xc has the correct PBC representation for the two channels, so we do
1659 * not need to correct for that */
1660 get_center(g->xc, g->m, g->nat, g->center);
1661 if (!bAppend)
1663 fprintf(s->fpout, "# %s group %s-center %5f nm\n", eSwapFixedGrp_names[j],
1664 DimStr[s->swapdim], g->center[s->swapdim]);
1668 if (!bAppend)
1670 if ( (0 != sc->bulkOffset[eCompA]) || (0 != sc->bulkOffset[eCompB]) )
1672 fprintf(s->fpout, "#\n");
1673 fprintf(s->fpout, "# You provided an offset for the position of the bulk layer(s).\n");
1674 fprintf(s->fpout, "# That means the layers to/from which ions and water molecules are swapped\n");
1675 fprintf(s->fpout, "# are not midway (= at 0.0) between the compartment-defining layers (at +/- 1.0).\n");
1676 fprintf(s->fpout, "# bulk-offsetA = %g\n", sc->bulkOffset[eCompA]);
1677 fprintf(s->fpout, "# bulk-offsetB = %g\n", sc->bulkOffset[eCompB]);
1680 fprintf(s->fpout, "#\n");
1681 fprintf(s->fpout, "# Split0 cylinder radius %f nm, up %f nm, down %f nm\n",
1682 sc->cyl0r, sc->cyl0u, sc->cyl0l);
1683 fprintf(s->fpout, "# Split1 cylinder radius %f nm, up %f nm, down %f nm\n",
1684 sc->cyl1r, sc->cyl1u, sc->cyl1l);
1686 fprintf(s->fpout, "#\n");
1687 if (!mdrunOptions.rerun)
1689 fprintf(s->fpout, "# Coupling constant (number of swap attempt steps to average over): %d (translates to %f ps).\n",
1690 sc->nAverage, sc->nAverage*sc->nstswap*ir->delta_t);
1691 fprintf(s->fpout, "# Threshold is %f\n", sc->threshold);
1692 fprintf(s->fpout, "#\n");
1693 fprintf(s->fpout, "# Remarks about which atoms passed which channel use global atoms numbers starting at one.\n");
1697 else
1699 s->fpout = nullptr;
1702 /* Prepare for parallel or serial run */
1703 if (PAR(cr))
1705 for (int ig = 0; ig < s->ngrp; ig++)
1707 g = &(s->group[ig]);
1708 g->nat_loc = 0;
1709 g->nalloc_loc = 0;
1710 g->ind_loc = nullptr;
1713 else
1715 for (int ig = 0; ig < s->ngrp; ig++)
1717 g = &(s->group[ig]);
1718 g->nat_loc = g->nat;
1719 g->ind_loc = g->ind;
1720 /* c_ind_loc needs to be set to identity in the serial case */
1721 for (int i = 0; i < g->nat; i++)
1723 g->c_ind_loc[i] = i;
1728 /* Allocate memory to remember the past particle counts for time averaging */
1729 for (int ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
1731 g = &(s->group[ig]);
1732 for (int ic = 0; ic < eCompNR; ic++)
1734 snew(g->comp[ic].nMolPast, sc->nAverage);
1738 /* Get the initial particle concentrations and let the other nodes know */
1739 if (MASTER(cr))
1741 if (bStartFromCpt)
1743 get_initial_ioncounts_from_cpt(ir, swapstate, cr, bVerbose);
1745 else
1747 fprintf(stderr, "%s Determining initial numbers of ions per compartment.\n", SwS);
1748 get_initial_ioncounts(ir, as_rvec_array(globalState->x.data()), globalState->box, cr, mdrunOptions.rerun);
1751 /* Prepare (further) checkpoint writes ... */
1752 if (bStartFromCpt)
1754 /* Consistency check */
1755 if (swapstate->nAverage != sc->nAverage)
1757 gmx_fatal(FARGS, "%s Ion count averaging steps mismatch! checkpoint: %d, tpr: %d",
1758 SwS, swapstate->nAverage, sc->nAverage);
1761 else
1763 swapstate->nAverage = sc->nAverage;
1765 fprintf(stderr, "%s Setting pointers for checkpoint writing\n", SwS);
1766 for (int ic = 0; ic < eCompNR; ic++)
1768 for (int ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
1770 g = &s->group[ig];
1771 gs = &swapstate->ionType[ig - eSwapFixedGrpNR];
1773 gs->nMolReq_p[ic] = &(g->comp[ic].nMolReq);
1774 gs->nMolPast_p[ic] = &(g->comp[ic].nMolPast[0]);
1775 gs->inflow_net_p[ic] = &(g->comp[ic].inflow_net);
1779 /* Determine the total charge imbalance */
1780 s->deltaQ = getRequestedChargeImbalance(s);
1782 if (bVerbose)
1784 fprintf(stderr, "%s Requested charge imbalance is Q(A) - Q(B) = %g e.\n", SwS, s->deltaQ);
1786 if (!bAppend)
1788 fprintf(s->fpout, "# Requested charge imbalance is Q(A)-Q(B) = %g e.\n", s->deltaQ);
1792 if (PAR(cr))
1794 bc_initial_concentrations(cr, ir->swap);
1797 /* Update the time-averaged number of molecules for all groups and compartments */
1798 for (int ig = eSwapFixedGrpNR; ig < sc->ngrp; ig++)
1800 g = &s->group[ig];
1801 for (int ic = 0; ic < eCompNR; ic++)
1803 update_time_window(&g->comp[ic], sc->nAverage, -1);
1807 /* Initialize arrays that keep track of through which channel the ions go */
1808 detect_flux_per_channel_init(s, swapstate, bStartFromCpt);
1810 /* We need to print the legend if we open this file for the first time. */
1811 if (MASTER(cr) && !bAppend)
1813 print_ionlist_legend(ir, oenv);
1818 void finish_swapcoords(t_swapcoords *sc)
1820 if (sc->si_priv->fpout)
1822 // Close the swap output file
1823 gmx_fio_fclose(sc->si_priv->fpout);
1828 void dd_make_local_swap_groups(gmx_domdec_t *dd, t_swapcoords *sc)
1830 t_swapgrp *g;
1831 int ig;
1834 /* Make split groups, solvent group, and user-defined groups of particles
1835 * under control of the swap protocol */
1836 for (ig = 0; ig < sc->ngrp; ig++)
1838 g = &(sc->si_priv->group[ig]);
1839 dd_make_local_group_indices(dd->ga2la, g->nat, g->ind,
1840 &(g->nat_loc), &(g->ind_loc), &(g->nalloc_loc), g->c_ind_loc);
1845 /*! \brief Do we need to swap a molecule in any of the ion groups with a water molecule at this step?
1847 * From the requested and average molecule counts we determine whether a swap is needed
1848 * at this time step.
1850 static gmx_bool need_swap(t_swapcoords *sc)
1852 t_swap *s;
1853 int ic, ig;
1854 t_swapgrp *g;
1856 s = sc->si_priv;
1858 for (ig = eSwapFixedGrpNR; ig < sc->ngrp; ig++)
1860 g = &s->group[ig];
1862 for (ic = 0; ic < eCompNR; ic++)
1864 if (g->comp[ic].nMolReq - g->comp[ic].nMolAv >= sc->threshold)
1866 return TRUE;
1870 return FALSE;
1874 /*! \brief Return the index of an atom or molecule suitable for swapping.
1876 * Returns the index of an atom that is far off the compartment boundaries,
1877 * that is near to the bulk layer to/from which the swaps take place.
1878 * Other atoms of the molecule (if any) will directly follow the returned index.
1880 * \param[in] comp Structure containing compartment-specific data.
1881 * \param[in] molname Name of the molecule.
1883 * \returns Index of the first atom of the molecule chosen for a position exchange.
1885 static int get_index_of_distant_atom(
1886 t_compartment *comp,
1887 const char molname[])
1889 int ibest = -1;
1890 real d = GMX_REAL_MAX;
1893 /* comp->nat contains the original number of atoms in this compartment
1894 * prior to doing any swaps. Some of these atoms may already have been
1895 * swapped out, but then they are marked with a distance of GMX_REAL_MAX
1897 for (int iMol = 0; iMol < comp->nMolBefore; iMol++)
1899 if (comp->dist[iMol] < d)
1901 ibest = iMol;
1902 d = comp->dist[ibest];
1906 if (ibest < 0)
1908 gmx_fatal(FARGS, "Could not get index of %s atom. Compartment contains %d %s molecules before swaps.",
1909 molname, comp->nMolBefore, molname);
1912 /* Set the distance of this index to infinity such that it won't get selected again in
1913 * this time step
1915 comp->dist[ibest] = GMX_REAL_MAX;
1917 return comp->ind[ibest];
1921 /*! \brief Swaps centers of mass and makes molecule whole if broken */
1922 static void translate_positions(
1923 rvec *x,
1924 int apm,
1925 rvec old_com,
1926 rvec new_com,
1927 t_pbc *pbc)
1929 int i;
1930 rvec reference, dx, correctPBCimage;
1933 /* Use the first atom as the reference for PBC */
1934 copy_rvec(x[0], reference);
1936 for (i = 0; i < apm; i++)
1938 /* PBC distance between position and reference */
1939 pbc_dx(pbc, x[i], reference, dx);
1941 /* Add PBC distance to reference */
1942 rvec_add(reference, dx, correctPBCimage);
1944 /* Subtract old_com from correct image and add new_com */
1945 rvec_dec(correctPBCimage, old_com);
1946 rvec_inc(correctPBCimage, new_com);
1948 copy_rvec(correctPBCimage, x[i]);
1953 /*! \brief Write back the the modified local positions from the collective array to the official positions. */
1954 static void apply_modified_positions(
1955 t_swapgrp *g,
1956 rvec x[])
1958 int l, ii, cind;
1961 for (l = 0; l < g->nat_loc; l++)
1963 /* Get the right local index to write to */
1964 ii = g->ind_loc[l];
1965 /* Where is the local atom in the collective array? */
1966 cind = g->c_ind_loc[l];
1968 /* Copy the possibly modified position */
1969 copy_rvec(g->xc[cind], x[ii]);
1974 gmx_bool do_swapcoords(
1975 t_commrec *cr,
1976 gmx_int64_t step,
1977 double t,
1978 t_inputrec *ir,
1979 gmx_wallcycle *wcycle,
1980 rvec x[],
1981 matrix box,
1982 gmx_bool bVerbose,
1983 gmx_bool bRerun)
1985 t_swapcoords *sc;
1986 t_swap *s;
1987 int j, ic, ig, nswaps;
1988 int thisC, otherC; /* Index into this compartment and the other one */
1989 gmx_bool bSwap = FALSE;
1990 t_swapgrp *g, *gsol;
1991 int isol, iion;
1992 rvec com_solvent, com_particle; /* solvent and swap molecule's center of mass */
1995 wallcycle_start(wcycle, ewcSWAP);
1997 sc = ir->swap;
1998 s = sc->si_priv;
2000 set_pbc(s->pbc, ir->ePBC, box);
2002 /* Assemble the positions of the split groups, i.e. the channels.
2003 * Here we also pass a shifts array to communicate_group_positions(), so that it can make
2004 * the molecules whole even in cases where they span more than half of the box in
2005 * any dimension */
2006 for (ig = eGrpSplit0; ig <= eGrpSplit1; ig++)
2008 g = &(s->group[ig]);
2009 communicate_group_positions(cr, g->xc, g->xc_shifts, g->xc_eshifts, TRUE,
2010 x, g->nat, g->nat_loc, g->ind_loc, g->c_ind_loc, g->xc_old, box);
2012 get_center(g->xc, g->m, g->nat, g->center); /* center of split groups == channels */
2015 /* Assemble the positions of the ions (ig = 3, 4, ...). These molecules should
2016 * be small and we can always make them whole with a simple distance check.
2017 * Therefore we pass NULL as third argument. */
2018 for (ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
2020 g = &(s->group[ig]);
2021 communicate_group_positions(cr, g->xc, nullptr, nullptr, FALSE,
2022 x, g->nat, g->nat_loc, g->ind_loc, g->c_ind_loc, nullptr, nullptr);
2024 /* Determine how many ions of this type each compartment contains */
2025 sortMoleculesIntoCompartments(g, cr, sc, box, step, s->fpout, bRerun, FALSE);
2028 /* Output how many ions are in the compartments */
2029 if (MASTER(cr))
2031 print_ionlist(s, t, "");
2034 /* If we are doing a rerun, we are finished here, since we cannot perform
2035 * swaps anyway */
2036 if (bRerun)
2038 return FALSE;
2041 /* Do we have to perform a swap? */
2042 bSwap = need_swap(sc);
2043 if (bSwap)
2045 /* Since we here know that we have to perform ion/water position exchanges,
2046 * we now assemble the solvent positions */
2047 g = &(s->group[eGrpSolvent]);
2048 communicate_group_positions(cr, g->xc, nullptr, nullptr, FALSE,
2049 x, g->nat, g->nat_loc, g->ind_loc, g->c_ind_loc, nullptr, nullptr);
2051 /* Determine how many molecules of solvent each compartment contains */
2052 sortMoleculesIntoCompartments(g, cr, sc, box, step, s->fpout, bRerun, TRUE);
2054 /* Save number of solvent molecules per compartment prior to any swaps */
2055 g->comp[eCompA].nMolBefore = g->comp[eCompA].nMol;
2056 g->comp[eCompB].nMolBefore = g->comp[eCompB].nMol;
2058 for (ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
2060 g = &(s->group[ig]);
2062 for (ic = 0; ic < eCompNR; ic++)
2064 /* Determine in which compartment ions are missing and where they are too many */
2065 g->vacancy[ic] = g->comp[ic].nMolReq - g->comp[ic].nMolAv;
2067 /* Save number of ions per compartment prior to swaps */
2068 g->comp[ic].nMolBefore = g->comp[ic].nMol;
2072 /* Now actually perform the particle exchanges, one swap group after another */
2073 gsol = &s->group[eGrpSolvent];
2074 for (ig = eSwapFixedGrpNR; ig < s->ngrp; ig++)
2076 nswaps = 0;
2077 g = &s->group[ig];
2078 for (thisC = 0; thisC < eCompNR; thisC++)
2080 /* Index to the other compartment */
2081 otherC = (thisC+1) % eCompNR;
2083 while (g->vacancy[thisC] >= sc->threshold)
2085 /* Swap in an ion */
2087 /* Get the xc-index of the first atom of a solvent molecule of this compartment */
2088 isol = get_index_of_distant_atom(&gsol->comp[thisC], gsol->molname);
2090 /* Get the xc-index of a particle from the other compartment */
2091 iion = get_index_of_distant_atom(&g->comp[otherC], g->molname);
2093 get_molecule_center(&gsol->xc[isol], gsol->apm, gsol->m, com_solvent, s->pbc);
2094 get_molecule_center(&g->xc[iion], g->apm, g->m, com_particle, s->pbc);
2096 /* Subtract solvent molecule's center of mass and add swap particle's center of mass */
2097 translate_positions(&gsol->xc[isol], gsol->apm, com_solvent, com_particle, s->pbc);
2098 /* Similarly for the swap particle, subtract com_particle and add com_solvent */
2099 translate_positions(&g->xc[iion], g->apm, com_particle, com_solvent, s->pbc);
2101 /* Keep track of the changes */
2102 g->vacancy[thisC ]--;
2103 g->vacancy[otherC]++;
2104 g->comp [thisC ].nMol++;
2105 g->comp [otherC].nMol--;
2106 g->comp [thisC ].inflow_net++;
2107 g->comp [otherC].inflow_net--;
2108 /* Correct the past time window to still get the right averages from now on */
2109 g->comp [thisC ].nMolAv++;
2110 g->comp [otherC].nMolAv--;
2111 for (j = 0; j < sc->nAverage; j++)
2113 g->comp[thisC ].nMolPast[j]++;
2114 g->comp[otherC].nMolPast[j]--;
2116 /* Clear ion history */
2117 if (MASTER(cr))
2119 int iMol = iion / g->apm;
2120 g->channel_label[iMol] = eChHistPassedNone;
2121 g->comp_from[iMol] = eDomainNotset;
2123 /* That was the swap */
2124 nswaps++;
2128 if (nswaps && bVerbose)
2130 fprintf(stderr, "%s Performed %d swap%s in step %" GMX_PRId64 " for iontype %s.\n",
2131 SwS, nswaps, nswaps > 1 ? "s" : "", step, g->molname);
2135 if (s->fpout != nullptr)
2137 print_ionlist(s, t, " # after swap");
2140 /* For the solvent and user-defined swap groups, each rank writes back its
2141 * (possibly modified) local positions to the official position array. */
2142 for (ig = eGrpSolvent; ig < s->ngrp; ig++)
2144 g = &s->group[ig];
2145 apply_modified_positions(g, x);
2148 } /* end of if(bSwap) */
2150 wallcycle_stop(wcycle, ewcSWAP);
2152 return bSwap;