Rename files to follow style
[alexxy/gromacs.git] / src / gromacs / mdlib / energyoutput.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5  * Copyright (c) 2001-2004, The GROMACS development team.
6  * Copyright (c) 2013,2014,2015,2016,2017 by the GROMACS development team.
7  * Copyright (c) 2018,2019,2020,2021, by the GROMACS development team, led by
8  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
9  * and including many others, as listed in the AUTHORS file in the
10  * top-level source directory and at http://www.gromacs.org.
11  *
12  * GROMACS is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU Lesser General Public License
14  * as published by the Free Software Foundation; either version 2.1
15  * of the License, or (at your option) any later version.
16  *
17  * GROMACS is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20  * Lesser General Public License for more details.
21  *
22  * You should have received a copy of the GNU Lesser General Public
23  * License along with GROMACS; if not, see
24  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
26  *
27  * If you want to redistribute modifications to GROMACS, please
28  * consider that scientific software is very special. Version
29  * control is crucial - bugs must be traceable. We will be happy to
30  * consider code for inclusion in the official distribution, but
31  * derived work must not be called official GROMACS. Details are found
32  * in the README & COPYING files - if they are missing, get the
33  * official version at http://www.gromacs.org.
34  *
35  * To help us fund GROMACS development, we humbly ask that you cite
36  * the research papers on the package. Check out http://www.gromacs.org.
37  */
38 /*! \internal \file
39  * \brief Defines code that writes energy-like quantities.
40  *
41  * \author Mark Abraham <mark.j.abraham@gmail.com>
42  * \author Paul Bauer <paul.bauer.q@gmail.com>
43  * \author Artem Zhmurov <zhmurov@gmail.com>
44  *
45  * \ingroup module_mdlib
46  */
47 #include "gmxpre.h"
48
49 #include "energyoutput.h"
50
51 #include <cfloat>
52 #include <cstdlib>
53 #include <cstring>
54
55 #include <array>
56 #include <string>
57
58 #include "gromacs/applied_forces/awh/awh.h"
59 #include "gromacs/fileio/enxio.h"
60 #include "gromacs/fileio/gmxfio.h"
61 #include "gromacs/fileio/xvgr.h"
62 #include "gromacs/gmxlib/network.h"
63 #include "gromacs/listed_forces/disre.h"
64 #include "gromacs/listed_forces/orires.h"
65 #include "gromacs/math/functions.h"
66 #include "gromacs/math/units.h"
67 #include "gromacs/math/vec.h"
68 #include "gromacs/mdlib/constr.h"
69 #include "gromacs/mdlib/ebin.h"
70 #include "gromacs/mdlib/mdebin_bar.h"
71 #include "gromacs/mdrunutility/handlerestart.h"
72 #include "gromacs/mdtypes/energyhistory.h"
73 #include "gromacs/mdtypes/fcdata.h"
74 #include "gromacs/mdtypes/group.h"
75 #include "gromacs/mdtypes/inputrec.h"
76 #include "gromacs/mdtypes/md_enums.h"
77 #include "gromacs/mdtypes/state.h"
78 #include "gromacs/pbcutil/pbc.h"
79 #include "gromacs/pulling/pull.h"
80 #include "gromacs/topology/mtop_util.h"
81 #include "gromacs/trajectory/energyframe.h"
82 #include "gromacs/utility/arraysize.h"
83 #include "gromacs/utility/enumerationhelpers.h"
84 #include "gromacs/utility/fatalerror.h"
85 #include "gromacs/utility/mdmodulesnotifiers.h"
86 #include "gromacs/utility/smalloc.h"
87 #include "gromacs/utility/stringutil.h"
88
89 #include "energydrifttracker.h"
90
91 //! Labels for energy file quantities
92 //! \{
93 static const char* conrmsd_nm[] = { "Constr. rmsd", "Constr.2 rmsd" };
94
95 static std::array<const char*, 3> boxs_nm = { "Box-X", "Box-Y", "Box-Z" };
96
97 static std::array<const char*, 6> tricl_boxs_nm = { "Box-XX", "Box-YY", "Box-ZZ",
98                                                     "Box-YX", "Box-ZX", "Box-ZY" };
99
100 static const char* vol_nm[] = { "Volume" };
101
102 static const char* dens_nm[] = { "Density" };
103
104 static const char* pv_nm[] = { "pV" };
105
106 static const char* enthalpy_nm[] = { "Enthalpy" };
107
108 static std::array<const char*, 6> boxvel_nm = { "Box-Vel-XX", "Box-Vel-YY", "Box-Vel-ZZ",
109                                                 "Box-Vel-YX", "Box-Vel-ZX", "Box-Vel-ZY" };
110
111 const char* enumValueToString(NonBondedEnergyTerms enumValue)
112 {
113     static constexpr gmx::EnumerationArray<NonBondedEnergyTerms, const char*> nonBondedEnergyTermTypeNames = {
114         "Coul-SR", "LJ-SR", "Buck-SR", "Coul-14", "LJ-14"
115     };
116     return nonBondedEnergyTermTypeNames[enumValue];
117 }
118
119 //! \}
120
121 namespace gmx
122 {
123
124 /*! \brief Energy output class
125  *
126  * This is the collection of energy averages collected during mdrun, and to
127  * be written out to the .edr file.
128  *
129  * \todo Use more std containers.
130  * \todo Remove GMX_CONSTRAINTVIR
131  * \todo Write free-energy output also to energy file (after adding more tests)
132  */
133 EnergyOutput::EnergyOutput(ener_file*                fp_ene,
134                            const gmx_mtop_t&         mtop,
135                            const t_inputrec&         inputrec,
136                            const pull_t*             pull_work,
137                            FILE*                     fp_dhdl,
138                            bool                      isRerun,
139                            const StartingBehavior    startingBehavior,
140                            const bool                simulationsShareState,
141                            const MDModulesNotifiers& mdModulesNotifiers)
142 {
143     const char*        ener_nm[F_NRE];
144     static const char* vir_nm[]   = { "Vir-XX", "Vir-XY", "Vir-XZ", "Vir-YX", "Vir-YY",
145                                     "Vir-YZ", "Vir-ZX", "Vir-ZY", "Vir-ZZ" };
146     static const char* sv_nm[]    = { "ShakeVir-XX", "ShakeVir-XY", "ShakeVir-XZ",
147                                    "ShakeVir-YX", "ShakeVir-YY", "ShakeVir-YZ",
148                                    "ShakeVir-ZX", "ShakeVir-ZY", "ShakeVir-ZZ" };
149     static const char* fv_nm[]    = { "ForceVir-XX", "ForceVir-XY", "ForceVir-XZ",
150                                    "ForceVir-YX", "ForceVir-YY", "ForceVir-YZ",
151                                    "ForceVir-ZX", "ForceVir-ZY", "ForceVir-ZZ" };
152     static const char* pres_nm[]  = { "Pres-XX", "Pres-XY", "Pres-XZ", "Pres-YX", "Pres-YY",
153                                      "Pres-YZ", "Pres-ZX", "Pres-ZY", "Pres-ZZ" };
154     static const char* surft_nm[] = { "#Surf*SurfTen" };
155     static const char* mu_nm[]    = { "Mu-X", "Mu-Y", "Mu-Z" };
156     static const char* vcos_nm[]  = { "2CosZ*Vel-X" };
157     static const char* visc_nm[]  = { "1/Viscosity" };
158     static const char* baro_nm[]  = { "Barostat" };
159
160     const SimulationGroups* groups;
161     char**                  gnm;
162     char                    buf[256];
163     const char*             bufi;
164     int                     i, j, ni, nj, n, ncon, nset;
165     bool                    bBHAM, b14;
166
167     if (EI_DYNAMICS(inputrec.eI))
168     {
169         delta_t_ = inputrec.delta_t;
170     }
171     else
172     {
173         delta_t_ = 0;
174     }
175
176     groups = &mtop.groups;
177
178     bBHAM = (mtop.ffparams.numTypes() > 0) && (mtop.ffparams.functype[0] == F_BHAM);
179     b14   = (gmx_mtop_ftype_count(mtop, F_LJ14) > 0 || gmx_mtop_ftype_count(mtop, F_LJC14_Q) > 0);
180
181     ncon         = gmx_mtop_ftype_count(mtop, F_CONSTR);
182     nset         = gmx_mtop_ftype_count(mtop, F_SETTLE);
183     bool bConstr = (ncon > 0 || nset > 0) && !isRerun;
184     bConstrVir_  = false;
185     nCrmsd_      = 0;
186     if (bConstr)
187     {
188         if (ncon > 0 && inputrec.eConstrAlg == ConstraintAlgorithm::Lincs)
189         {
190             nCrmsd_ = 1;
191         }
192         bConstrVir_ = (getenv("GMX_CONSTRAINTVIR") != nullptr);
193     }
194     else
195     {
196         nCrmsd_ = 0;
197     }
198
199     /* Energy monitoring */
200     for (auto& term : bEInd_)
201     {
202         term = false;
203     }
204
205     // Setting true only to those energy terms, that have active interactions and
206     // are not vsite terms (not VSITE2, VSITE3, VSITE3FD, VSITE3FAD, VSITE3OUT, VSITE4FD, VSITE4FDN, or VSITEN)
207     for (i = 0; i < F_NRE; i++)
208     {
209         bEner_[i] = (gmx_mtop_ftype_count(mtop, i) > 0)
210                     && ((interaction_function[i].flags & IF_VSITE) == 0);
211     }
212
213     if (!isRerun)
214     {
215         bEner_[F_EKIN] = EI_DYNAMICS(inputrec.eI);
216         bEner_[F_ETOT] = EI_DYNAMICS(inputrec.eI);
217         bEner_[F_TEMP] = EI_DYNAMICS(inputrec.eI);
218
219         bEner_[F_ECONSERVED] = integratorHasConservedEnergyQuantity(&inputrec);
220         bEner_[F_PDISPCORR]  = (inputrec.eDispCorr != DispersionCorrectionType::No);
221         bEner_[F_PRES]       = true;
222     }
223
224     bEner_[F_LJ]   = !bBHAM;
225     bEner_[F_BHAM] = bBHAM;
226     bEner_[F_EQM]  = inputrec.bQMMM;
227     bEner_[F_RF_EXCL] = (EEL_RF(inputrec.coulombtype) && inputrec.cutoff_scheme == CutoffScheme::Group);
228     bEner_[F_COUL_RECIP]   = EEL_FULL(inputrec.coulombtype);
229     bEner_[F_LJ_RECIP]     = EVDW_PME(inputrec.vdwtype);
230     bEner_[F_LJ14]         = b14;
231     bEner_[F_COUL14]       = b14;
232     bEner_[F_LJC14_Q]      = false;
233     bEner_[F_LJC_PAIRS_NB] = false;
234
235
236     bEner_[F_DVDL_COUL] = (inputrec.efep != FreeEnergyPerturbationType::No)
237                           && inputrec.fepvals->separate_dvdl[FreeEnergyPerturbationCouplingType::Coul];
238     bEner_[F_DVDL_VDW] = (inputrec.efep != FreeEnergyPerturbationType::No)
239                          && inputrec.fepvals->separate_dvdl[FreeEnergyPerturbationCouplingType::Vdw];
240     bEner_[F_DVDL_BONDED] = (inputrec.efep != FreeEnergyPerturbationType::No)
241                             && inputrec.fepvals->separate_dvdl[FreeEnergyPerturbationCouplingType::Bonded];
242     bEner_[F_DVDL_RESTRAINT] =
243             (inputrec.efep != FreeEnergyPerturbationType::No)
244             && inputrec.fepvals->separate_dvdl[FreeEnergyPerturbationCouplingType::Restraint];
245     bEner_[F_DKDL] = (inputrec.efep != FreeEnergyPerturbationType::No)
246                      && inputrec.fepvals->separate_dvdl[FreeEnergyPerturbationCouplingType::Mass];
247     bEner_[F_DVDL] = (inputrec.efep != FreeEnergyPerturbationType::No)
248                      && inputrec.fepvals->separate_dvdl[FreeEnergyPerturbationCouplingType::Fep];
249
250     bEner_[F_CONSTR]   = false;
251     bEner_[F_CONSTRNC] = false;
252     bEner_[F_SETTLE]   = false;
253
254     bEner_[F_COUL_SR] = true;
255     bEner_[F_EPOT]    = true;
256
257     bEner_[F_DISPCORR]   = (inputrec.eDispCorr != DispersionCorrectionType::No);
258     bEner_[F_DISRESVIOL] = (gmx_mtop_ftype_count(mtop, F_DISRES) > 0);
259     bEner_[F_ORIRESDEV]  = (gmx_mtop_ftype_count(mtop, F_ORIRES) > 0);
260     bEner_[F_COM_PULL]   = ((inputrec.bPull && pull_have_potential(*pull_work)) || inputrec.bRot);
261
262     MDModulesEnergyOutputToDensityFittingRequestChecker mdModulesAddOutputToDensityFittingFieldRequest;
263     mdModulesNotifiers.simulationSetupNotifier_.notify(&mdModulesAddOutputToDensityFittingFieldRequest);
264
265     bEner_[F_DENSITYFITTING] = mdModulesAddOutputToDensityFittingFieldRequest.energyOutputToDensityFitting_;
266
267
268     // Counting the energy terms that will be printed and saving their names
269     f_nre_ = 0;
270     for (i = 0; i < F_NRE; i++)
271     {
272         if (bEner_[i])
273         {
274             ener_nm[f_nre_] = interaction_function[i].longname;
275             f_nre_++;
276         }
277     }
278
279     epc_       = isRerun ? PressureCoupling::No : inputrec.epc;
280     bDiagPres_ = !TRICLINIC(inputrec.ref_p) && !isRerun;
281     ref_p_     = (inputrec.ref_p[XX][XX] + inputrec.ref_p[YY][YY] + inputrec.ref_p[ZZ][ZZ]) / DIM;
282     bTricl_    = TRICLINIC(inputrec.compress) || TRICLINIC(inputrec.deform);
283     bDynBox_   = inputrecDynamicBox(&inputrec);
284     etc_       = isRerun ? TemperatureCoupling::No : inputrec.etc;
285     bNHC_trotter_   = inputrecNvtTrotter(&inputrec) && !isRerun;
286     bPrintNHChains_ = inputrec.bPrintNHChains && !isRerun;
287     bMTTK_          = (inputrecNptTrotter(&inputrec) || inputrecNphTrotter(&inputrec)) && !isRerun;
288     bMu_            = inputrecNeedMutot(&inputrec);
289     bPres_          = !isRerun;
290
291     ebin_ = mk_ebin();
292     /* Pass NULL for unit to let get_ebin_space determine the units
293      * for interaction_function[i].longname
294      */
295     ie_ = get_ebin_space(ebin_, f_nre_, ener_nm, nullptr);
296     if (nCrmsd_)
297     {
298         /* This should be called directly after the call for ie_,
299          * such that iconrmsd_ follows directly in the list.
300          */
301         iconrmsd_ = get_ebin_space(ebin_, nCrmsd_, conrmsd_nm, "");
302     }
303     if (bDynBox_)
304     {
305         ib_    = get_ebin_space(ebin_,
306                              bTricl_ ? tricl_boxs_nm.size() : boxs_nm.size(),
307                              bTricl_ ? tricl_boxs_nm.data() : boxs_nm.data(),
308                              unit_length);
309         ivol_  = get_ebin_space(ebin_, 1, vol_nm, unit_volume);
310         idens_ = get_ebin_space(ebin_, 1, dens_nm, unit_density_SI);
311         if (bDiagPres_)
312         {
313             ipv_       = get_ebin_space(ebin_, 1, pv_nm, unit_energy);
314             ienthalpy_ = get_ebin_space(ebin_, 1, enthalpy_nm, unit_energy);
315         }
316     }
317     if (bConstrVir_)
318     {
319         isvir_ = get_ebin_space(ebin_, asize(sv_nm), sv_nm, unit_energy);
320         ifvir_ = get_ebin_space(ebin_, asize(fv_nm), fv_nm, unit_energy);
321     }
322     if (bPres_)
323     {
324         ivir_   = get_ebin_space(ebin_, asize(vir_nm), vir_nm, unit_energy);
325         ipres_  = get_ebin_space(ebin_, asize(pres_nm), pres_nm, unit_pres_bar);
326         isurft_ = get_ebin_space(ebin_, asize(surft_nm), surft_nm, unit_surft_bar);
327     }
328     if (epc_ == PressureCoupling::ParrinelloRahman || epc_ == PressureCoupling::Mttk)
329     {
330         ipc_ = get_ebin_space(ebin_, bTricl_ ? boxvel_nm.size() : DIM, boxvel_nm.data(), unit_vel);
331     }
332     if (bMu_)
333     {
334         imu_ = get_ebin_space(ebin_, asize(mu_nm), mu_nm, unit_dipole_D);
335     }
336     if (inputrec.cos_accel != 0)
337     {
338         ivcos_ = get_ebin_space(ebin_, asize(vcos_nm), vcos_nm, unit_vel);
339         ivisc_ = get_ebin_space(ebin_, asize(visc_nm), visc_nm, unit_invvisc_SI);
340     }
341
342     /* Energy monitoring */
343     for (auto& term : bEInd_)
344     {
345         term = false;
346     }
347     bEInd_[NonBondedEnergyTerms::CoulombSR] = true;
348     bEInd_[NonBondedEnergyTerms::LJSR]      = true;
349
350     if (bBHAM)
351     {
352         bEInd_[NonBondedEnergyTerms::LJSR]         = false;
353         bEInd_[NonBondedEnergyTerms::BuckinghamSR] = true;
354     }
355     if (b14)
356     {
357         bEInd_[NonBondedEnergyTerms::LJ14]      = true;
358         bEInd_[NonBondedEnergyTerms::Coulomb14] = true;
359     }
360     nEc_ = 0;
361     for (auto term : bEInd_)
362     {
363         if (term)
364         {
365             nEc_++;
366         }
367     }
368     n    = groups->groups[SimulationAtomGroupType::EnergyOutput].size();
369     nEg_ = n;
370     nE_  = (n * (n + 1)) / 2;
371
372     igrp_.resize(nE_);
373     if (nE_ > 1)
374     {
375         n = 0;
376         snew(gnm, nEc_);
377         for (int k = 0; (k < nEc_); k++)
378         {
379             snew(gnm[k], STRLEN);
380         }
381         for (i = 0; (i < gmx::ssize(groups->groups[SimulationAtomGroupType::EnergyOutput])); i++)
382         {
383             ni = groups->groups[SimulationAtomGroupType::EnergyOutput][i];
384             for (j = i; (j < gmx::ssize(groups->groups[SimulationAtomGroupType::EnergyOutput])); j++)
385             {
386                 nj    = groups->groups[SimulationAtomGroupType::EnergyOutput][j];
387                 int k = 0;
388                 for (auto key : keysOf(bEInd_))
389                 {
390                     if (bEInd_[key])
391                     {
392                         sprintf(gnm[k],
393                                 "%s:%s-%s",
394                                 enumValueToString(key),
395                                 *(groups->groupNames[ni]),
396                                 *(groups->groupNames[nj]));
397                         k++;
398                     }
399                 }
400                 igrp_[n] = get_ebin_space(ebin_, nEc_, gnm, unit_energy);
401                 n++;
402             }
403         }
404         for (int k = 0; (k < nEc_); k++)
405         {
406             sfree(gnm[k]);
407         }
408         sfree(gnm);
409
410         if (n != nE_)
411         {
412             gmx_incons("Number of energy terms wrong");
413         }
414     }
415
416     nTC_  = isRerun ? 0 : groups->groups[SimulationAtomGroupType::TemperatureCoupling].size();
417     nNHC_ = inputrec.opts.nhchainlength; /* shorthand for number of NH chains */
418     if (bMTTK_)
419     {
420         nTCP_ = 1; /* assume only one possible coupling system for barostat
421                            for now */
422     }
423     else
424     {
425         nTCP_ = 0;
426     }
427     if (etc_ == TemperatureCoupling::NoseHoover)
428     {
429         if (bNHC_trotter_)
430         {
431             mde_n_ = 2 * nNHC_ * nTC_;
432         }
433         else
434         {
435             mde_n_ = 2 * nTC_;
436         }
437         if (epc_ == PressureCoupling::Mttk)
438         {
439             mdeb_n_ = 2 * nNHC_ * nTCP_;
440         }
441     }
442     else
443     {
444         mde_n_  = nTC_;
445         mdeb_n_ = 0;
446     }
447
448     tmp_r_.resize(mde_n_);
449     // TODO redo the group name memory management to make it more clear
450     char** grpnms;
451     snew(grpnms, std::max(mde_n_, mdeb_n_)); // Just in case mdeb_n_ > mde_n_
452
453     for (i = 0; (i < nTC_); i++)
454     {
455         ni = groups->groups[SimulationAtomGroupType::TemperatureCoupling][i];
456         sprintf(buf, "T-%s", *(groups->groupNames[ni]));
457         grpnms[i] = gmx_strdup(buf);
458     }
459     itemp_ = get_ebin_space(ebin_, nTC_, grpnms, unit_temp_K);
460     for (i = 0; i < nTC_; i++)
461     {
462         sfree(grpnms[i]);
463     }
464
465     int allocated = 0;
466     if (etc_ == TemperatureCoupling::NoseHoover)
467     {
468         if (bPrintNHChains_)
469         {
470             if (bNHC_trotter_)
471             {
472                 for (i = 0; (i < nTC_); i++)
473                 {
474                     ni   = groups->groups[SimulationAtomGroupType::TemperatureCoupling][i];
475                     bufi = *(groups->groupNames[ni]);
476                     for (j = 0; (j < nNHC_); j++)
477                     {
478                         sprintf(buf, "Xi-%d-%s", j, bufi);
479                         grpnms[2 * (i * nNHC_ + j)] = gmx_strdup(buf);
480                         sprintf(buf, "vXi-%d-%s", j, bufi);
481                         grpnms[2 * (i * nNHC_ + j) + 1] = gmx_strdup(buf);
482                     }
483                 }
484                 itc_      = get_ebin_space(ebin_, mde_n_, grpnms, unit_invtime);
485                 allocated = mde_n_;
486                 if (bMTTK_)
487                 {
488                     for (i = 0; (i < nTCP_); i++)
489                     {
490                         bufi = baro_nm[0]; /* All barostat DOF's together for now. */
491                         for (j = 0; (j < nNHC_); j++)
492                         {
493                             sprintf(buf, "Xi-%d-%s", j, bufi);
494                             grpnms[2 * (i * nNHC_ + j)] = gmx_strdup(buf);
495                             sprintf(buf, "vXi-%d-%s", j, bufi);
496                             grpnms[2 * (i * nNHC_ + j) + 1] = gmx_strdup(buf);
497                         }
498                     }
499                     itcb_     = get_ebin_space(ebin_, mdeb_n_, grpnms, unit_invtime);
500                     allocated = mdeb_n_;
501                 }
502             }
503             else
504             {
505                 for (i = 0; (i < nTC_); i++)
506                 {
507                     ni   = groups->groups[SimulationAtomGroupType::TemperatureCoupling][i];
508                     bufi = *(groups->groupNames[ni]);
509                     sprintf(buf, "Xi-%s", bufi);
510                     grpnms[2 * i] = gmx_strdup(buf);
511                     sprintf(buf, "vXi-%s", bufi);
512                     grpnms[2 * i + 1] = gmx_strdup(buf);
513                 }
514                 itc_      = get_ebin_space(ebin_, mde_n_, grpnms, unit_invtime);
515                 allocated = mde_n_;
516             }
517         }
518     }
519     else if (etc_ == TemperatureCoupling::Berendsen || etc_ == TemperatureCoupling::Yes
520              || etc_ == TemperatureCoupling::VRescale)
521     {
522         for (i = 0; (i < nTC_); i++)
523         {
524             ni = groups->groups[SimulationAtomGroupType::TemperatureCoupling][i];
525             sprintf(buf, "Lamb-%s", *(groups->groupNames[ni]));
526             grpnms[i] = gmx_strdup(buf);
527         }
528         itc_      = get_ebin_space(ebin_, mde_n_, grpnms, "");
529         allocated = mde_n_;
530     }
531
532     for (i = 0; i < allocated; i++)
533     {
534         sfree(grpnms[i]);
535     }
536     sfree(grpnms);
537
538     /* Note that fp_ene should be valid on the master rank and null otherwise */
539     if (fp_ene != nullptr && startingBehavior != StartingBehavior::RestartWithAppending)
540     {
541         do_enxnms(fp_ene, &ebin_->nener, &ebin_->enm);
542     }
543
544     /* check whether we're going to write dh histograms */
545     dhc_ = nullptr;
546     if (inputrec.fepvals->separate_dhdl_file == SeparateDhdlFile::No)
547     {
548         /* Currently dh histograms are only written with dynamics */
549         if (EI_DYNAMICS(inputrec.eI))
550         {
551             snew(dhc_, 1);
552
553             mde_delta_h_coll_init(dhc_, inputrec);
554         }
555         fp_dhdl_ = nullptr;
556         dE_.resize(inputrec.fepvals->n_lambda);
557     }
558     else
559     {
560         fp_dhdl_ = fp_dhdl;
561         dE_.resize(inputrec.fepvals->n_lambda);
562     }
563     if (inputrec.bSimTemp)
564     {
565         temperatures_ = inputrec.simtempvals->temperatures;
566     }
567
568     if (EI_MD(inputrec.eI) && !simulationsShareState)
569     {
570         conservedEnergyTracker_ = std::make_unique<EnergyDriftTracker>(mtop.natoms);
571     }
572 }
573
574 EnergyOutput::~EnergyOutput()
575 {
576     done_ebin(ebin_);
577     done_mde_delta_h_coll(dhc_);
578 }
579
580 } // namespace gmx
581
582 /*! \brief Print a lambda vector to a string
583  *
584  * \param[in] fep                The inputrec's FEP input data
585  * \param[in] i                  The index of the lambda vector
586  * \param[in] get_native_lambda  Whether to print the native lambda
587  * \param[in] get_names          Whether to print the names rather than the values
588  * \param[in,out] str            The pre-allocated string buffer to print to.
589  */
590 static void print_lambda_vector(t_lambda* fep, int i, bool get_native_lambda, bool get_names, char* str)
591 {
592     int k    = 0;
593     int Nsep = 0;
594
595     for (auto j : keysOf(fep->separate_dvdl))
596     {
597         if (fep->separate_dvdl[j])
598         {
599             Nsep++;
600         }
601     }
602     str[0] = 0; /* reset the string */
603     if (Nsep > 1)
604     {
605         str += sprintf(str, "("); /* set the opening parenthesis*/
606     }
607     for (auto j : keysOf(fep->separate_dvdl))
608     {
609         if (fep->separate_dvdl[j])
610         {
611             if (!get_names)
612             {
613                 if (get_native_lambda && fep->init_lambda >= 0)
614                 {
615                     str += sprintf(str, "%.4f", fep->init_lambda);
616                 }
617                 else
618                 {
619                     str += sprintf(str, "%.4f", fep->all_lambda[j][i]);
620                 }
621             }
622             else
623             {
624                 str += sprintf(str, "%s", enumValueToStringSingular(j));
625             }
626             /* print comma for the next item */
627             if (k < Nsep - 1)
628             {
629                 str += sprintf(str, ", ");
630             }
631             k++;
632         }
633     }
634     if (Nsep > 1)
635     {
636         /* and add the closing parenthesis */
637         sprintf(str, ")");
638     }
639 }
640
641 FILE* open_dhdl(const char* filename, const t_inputrec* ir, const gmx_output_env_t* oenv)
642 {
643     FILE*       fp;
644     const char *dhdl = "dH/d\\lambda", *deltag = "\\DeltaH", *lambda = "\\lambda",
645                *lambdastate = "\\lambda state";
646     int         i, nsets, nsets_de, nsetsbegin;
647     int         n_lambda_terms = 0;
648     t_lambda*   fep            = ir->fepvals.get(); /* for simplicity */
649     t_expanded* expand         = ir->expandedvals.get();
650     char        lambda_vec_str[STRLEN], lambda_name_str[STRLEN];
651
652     int  nsets_dhdl = 0;
653     int  s          = 0;
654     int  nsetsextend;
655     bool write_pV = false;
656
657     /* count the number of different lambda terms */
658     for (auto i : keysOf(fep->separate_dvdl))
659     {
660         if (fep->separate_dvdl[i])
661         {
662             n_lambda_terms++;
663         }
664     }
665
666     std::string title, label_x, label_y;
667     if (fep->n_lambda == 0)
668     {
669         title   = gmx::formatString("%s", dhdl);
670         label_x = gmx::formatString("Time (ps)");
671         label_y = gmx::formatString("%s (%s %s)", dhdl, unit_energy, "[\\lambda]\\S-1\\N");
672     }
673     else
674     {
675         title   = gmx::formatString("%s and %s", dhdl, deltag);
676         label_x = gmx::formatString("Time (ps)");
677         label_y = gmx::formatString(
678                 "%s and %s (%s %s)", dhdl, deltag, unit_energy, "[\\8l\\4]\\S-1\\N");
679     }
680     fp = gmx_fio_fopen(filename, "w+");
681     xvgr_header(fp, title.c_str(), label_x, label_y, exvggtXNY, oenv);
682
683     std::string buf;
684     if (!(ir->bSimTemp))
685     {
686         buf = gmx::formatString("T = %g (K) ", ir->opts.ref_t[0]);
687     }
688     if ((ir->efep != FreeEnergyPerturbationType::SlowGrowth)
689         && (ir->efep != FreeEnergyPerturbationType::Expanded))
690     {
691         if ((fep->init_lambda >= 0) && (n_lambda_terms == 1))
692         {
693             /* compatibility output */
694             buf += gmx::formatString("%s = %.4f", lambda, fep->init_lambda);
695         }
696         else
697         {
698             print_lambda_vector(fep, fep->init_fep_state, true, false, lambda_vec_str);
699             print_lambda_vector(fep, fep->init_fep_state, true, true, lambda_name_str);
700             buf += gmx::formatString(
701                     "%s %d: %s = %s", lambdastate, fep->init_fep_state, lambda_name_str, lambda_vec_str);
702         }
703     }
704     xvgr_subtitle(fp, buf.c_str(), oenv);
705
706
707     nsets_dhdl = 0;
708     if (fep->dhdl_derivatives == DhDlDerivativeCalculation::Yes)
709     {
710         nsets_dhdl = n_lambda_terms;
711     }
712     /* count the number of delta_g states */
713     nsets_de = fep->lambda_stop_n - fep->lambda_start_n;
714
715     nsets = nsets_dhdl + nsets_de; /* dhdl + fep differences */
716
717     if (fep->n_lambda > 0 && (expand->elmcmove > LambdaMoveCalculation::No))
718     {
719         nsets += 1; /*add fep state for expanded ensemble */
720     }
721
722     if (fep->edHdLPrintEnergy != FreeEnergyPrintEnergy::No)
723     {
724         nsets += 1; /* add energy to the dhdl as well */
725     }
726
727     nsetsextend = nsets;
728     if ((ir->epc != PressureCoupling::No) && (fep->n_lambda > 0) && (fep->init_lambda < 0))
729     {
730         nsetsextend += 1; /* for PV term, other terms possible if required for
731                              the reduced potential (only needed with foreign
732                              lambda, and only output when init_lambda is not
733                              set in order to maintain compatibility of the
734                              dhdl.xvg file) */
735         write_pV = true;
736     }
737     std::vector<std::string> setname(nsetsextend);
738
739     if (expand->elmcmove > LambdaMoveCalculation::No)
740     {
741         /* state for the fep_vals, if we have alchemical sampling */
742         setname[s++] = "Thermodynamic state";
743     }
744
745     if (fep->edHdLPrintEnergy != FreeEnergyPrintEnergy::No)
746     {
747         std::string energy;
748         switch (fep->edHdLPrintEnergy)
749         {
750             case FreeEnergyPrintEnergy::Potential:
751                 energy = gmx::formatString("%s (%s)", "Potential Energy", unit_energy);
752                 break;
753             case FreeEnergyPrintEnergy::Total:
754             case FreeEnergyPrintEnergy::Yes:
755             default: energy = gmx::formatString("%s (%s)", "Total Energy", unit_energy);
756         }
757         setname[s++] = energy;
758     }
759
760     if (fep->dhdl_derivatives == DhDlDerivativeCalculation::Yes)
761     {
762         for (auto i : keysOf(fep->separate_dvdl))
763         {
764             if (fep->separate_dvdl[i])
765             {
766                 std::string derivative;
767                 if ((fep->init_lambda >= 0) && (n_lambda_terms == 1))
768                 {
769                     /* compatibility output */
770                     derivative = gmx::formatString("%s %s %.4f", dhdl, lambda, fep->init_lambda);
771                 }
772                 else
773                 {
774                     double lam = fep->init_lambda;
775                     if (fep->init_lambda < 0)
776                     {
777                         lam = fep->all_lambda[i][fep->init_fep_state];
778                     }
779                     derivative = gmx::formatString("%s %s = %.4f", dhdl, enumValueToStringSingular(i), lam);
780                 }
781                 setname[s++] = derivative;
782             }
783         }
784     }
785
786     if (fep->n_lambda > 0)
787     {
788         /* g_bar has to determine the lambda values used in this simulation
789          * from this xvg legend.
790          */
791
792         if (expand->elmcmove > LambdaMoveCalculation::No)
793         {
794             nsetsbegin = 1; /* for including the expanded ensemble */
795         }
796         else
797         {
798             nsetsbegin = 0;
799         }
800
801         if (fep->edHdLPrintEnergy != FreeEnergyPrintEnergy::No)
802         {
803             nsetsbegin += 1;
804         }
805         nsetsbegin += nsets_dhdl;
806
807         for (i = fep->lambda_start_n; i < fep->lambda_stop_n; i++)
808         {
809             print_lambda_vector(fep, i, false, false, lambda_vec_str);
810             std::string buf;
811             if ((fep->init_lambda >= 0) && (n_lambda_terms == 1))
812             {
813                 /* for compatible dhdl.xvg files */
814                 buf = gmx::formatString("%s %s %s", deltag, lambda, lambda_vec_str);
815             }
816             else
817             {
818                 buf = gmx::formatString("%s %s to %s", deltag, lambda, lambda_vec_str);
819             }
820
821             if (ir->bSimTemp)
822             {
823                 /* print the temperature for this state if doing simulated annealing */
824                 buf += gmx::formatString(
825                         "T = %g (%s)", ir->simtempvals->temperatures[s - (nsetsbegin)], unit_temp_K);
826             }
827             setname[s++] = buf;
828         }
829         if (write_pV)
830         {
831             setname[s++] = gmx::formatString("pV (%s)", unit_energy);
832         }
833
834         xvgrLegend(fp, setname, oenv);
835     }
836
837     return fp;
838 }
839
840 namespace gmx
841 {
842
843 void EnergyOutput::addDataAtEnergyStep(bool                    bDoDHDL,
844                                        bool                    bSum,
845                                        double                  time,
846                                        real                    tmass,
847                                        const gmx_enerdata_t*   enerd,
848                                        const t_lambda*         fep,
849                                        const t_expanded*       expand,
850                                        const matrix            box,
851                                        PTCouplingArrays        ptCouplingArrays,
852                                        int                     fep_state,
853                                        const tensor            svir,
854                                        const tensor            fvir,
855                                        const tensor            vir,
856                                        const tensor            pres,
857                                        const gmx_ekindata_t*   ekind,
858                                        const rvec              mu_tot,
859                                        const gmx::Constraints* constr)
860 {
861     int  j, k, kk, n, gid;
862     real crmsd[2], tmp6[6];
863     real bs[tricl_boxs_nm.size()], vol, dens, enthalpy;
864     real eee[static_cast<int>(NonBondedEnergyTerms::Count)];
865     gmx::EnumerationArray<FreeEnergyPerturbationCouplingType, double> store_dhdl;
866     real                                                              store_energy = 0;
867     real                                                              tmp;
868     real pv = 0.0; // static analyzer warns about uninitialized variable warnings here.
869
870     /* Do NOT use the box in the state variable, but the separate box provided
871      * as an argument. This is because we sometimes need to write the box from
872      * the last timestep to match the trajectory frames.
873      */
874     add_ebin_indexed(ebin_, ie_, gmx::ArrayRef<bool>(bEner_), enerd->term, bSum);
875     if (nCrmsd_)
876     {
877         crmsd[0] = constr->rmsd();
878         add_ebin(ebin_, iconrmsd_, nCrmsd_, crmsd, false);
879     }
880     if (bDynBox_)
881     {
882         int nboxs;
883         if (bTricl_)
884         {
885             bs[0] = box[XX][XX];
886             bs[1] = box[YY][YY];
887             bs[2] = box[ZZ][ZZ];
888             bs[3] = box[YY][XX];
889             bs[4] = box[ZZ][XX];
890             bs[5] = box[ZZ][YY];
891             nboxs = tricl_boxs_nm.size();
892         }
893         else
894         {
895             bs[0] = box[XX][XX];
896             bs[1] = box[YY][YY];
897             bs[2] = box[ZZ][ZZ];
898             nboxs = boxs_nm.size();
899         }
900         vol  = box[XX][XX] * box[YY][YY] * box[ZZ][ZZ];
901         dens = (tmass * gmx::c_amu) / (vol * gmx::c_nano * gmx::c_nano * gmx::c_nano);
902         add_ebin(ebin_, ib_, nboxs, bs, bSum);
903         add_ebin(ebin_, ivol_, 1, &vol, bSum);
904         add_ebin(ebin_, idens_, 1, &dens, bSum);
905
906         if (bDiagPres_)
907         {
908             /* This is pV (in kJ/mol).  The pressure is the reference pressure,
909                not the instantaneous pressure */
910             pv = vol * ref_p_ / gmx::c_presfac;
911
912             add_ebin(ebin_, ipv_, 1, &pv, bSum);
913             enthalpy = pv + enerd->term[F_ETOT];
914             add_ebin(ebin_, ienthalpy_, 1, &enthalpy, bSum);
915         }
916     }
917     if (bConstrVir_)
918     {
919         add_ebin(ebin_, isvir_, 9, svir[0], bSum);
920         add_ebin(ebin_, ifvir_, 9, fvir[0], bSum);
921     }
922     if (bPres_)
923     {
924         add_ebin(ebin_, ivir_, 9, vir[0], bSum);
925         add_ebin(ebin_, ipres_, 9, pres[0], bSum);
926         tmp = (pres[ZZ][ZZ] - (pres[XX][XX] + pres[YY][YY]) * 0.5) * box[ZZ][ZZ];
927         add_ebin(ebin_, isurft_, 1, &tmp, bSum);
928     }
929     if (epc_ == PressureCoupling::ParrinelloRahman || epc_ == PressureCoupling::Mttk)
930     {
931         tmp6[0] = ptCouplingArrays.boxv[XX][XX];
932         tmp6[1] = ptCouplingArrays.boxv[YY][YY];
933         tmp6[2] = ptCouplingArrays.boxv[ZZ][ZZ];
934         tmp6[3] = ptCouplingArrays.boxv[YY][XX];
935         tmp6[4] = ptCouplingArrays.boxv[ZZ][XX];
936         tmp6[5] = ptCouplingArrays.boxv[ZZ][YY];
937         add_ebin(ebin_, ipc_, bTricl_ ? 6 : 3, tmp6, bSum);
938     }
939     if (bMu_)
940     {
941         add_ebin(ebin_, imu_, 3, mu_tot, bSum);
942     }
943     if (ekind && ekind->cosacc.cos_accel != 0)
944     {
945         vol  = box[XX][XX] * box[YY][YY] * box[ZZ][ZZ];
946         dens = (tmass * gmx::c_amu) / (vol * gmx::c_nano * gmx::c_nano * gmx::c_nano);
947         add_ebin(ebin_, ivcos_, 1, &(ekind->cosacc.vcos), bSum);
948         /* 1/viscosity, unit 1/(kg m^-1 s^-1) */
949         tmp = 1
950               / (ekind->cosacc.cos_accel / (ekind->cosacc.vcos * gmx::c_pico) * dens
951                  * gmx::square(box[ZZ][ZZ] * gmx::c_nano / (2 * M_PI)));
952         add_ebin(ebin_, ivisc_, 1, &tmp, bSum);
953     }
954     if (nE_ > 1)
955     {
956         n = 0;
957         for (int i = 0; (i < nEg_); i++)
958         {
959             for (j = i; (j < nEg_); j++)
960             {
961                 gid = GID(i, j, nEg_);
962                 for (k = kk = 0; (k < static_cast<int>(NonBondedEnergyTerms::Count)); k++)
963                 {
964                     if (bEInd_[k])
965                     {
966                         eee[kk++] = enerd->grpp.energyGroupPairTerms[k][gid];
967                     }
968                 }
969                 add_ebin(ebin_, igrp_[n], nEc_, eee, bSum);
970                 n++;
971             }
972         }
973     }
974
975     if (ekind)
976     {
977         for (int i = 0; (i < nTC_); i++)
978         {
979             tmp_r_[i] = ekind->tcstat[i].T;
980         }
981         add_ebin(ebin_, itemp_, nTC_, tmp_r_.data(), bSum);
982
983         if (etc_ == TemperatureCoupling::NoseHoover)
984         {
985             /* whether to print Nose-Hoover chains: */
986             if (bPrintNHChains_)
987             {
988                 if (bNHC_trotter_)
989                 {
990                     for (int i = 0; (i < nTC_); i++)
991                     {
992                         for (j = 0; j < nNHC_; j++)
993                         {
994                             k                 = i * nNHC_ + j;
995                             tmp_r_[2 * k]     = ptCouplingArrays.nosehoover_xi[k];
996                             tmp_r_[2 * k + 1] = ptCouplingArrays.nosehoover_vxi[k];
997                         }
998                     }
999                     add_ebin(ebin_, itc_, mde_n_, tmp_r_.data(), bSum);
1000
1001                     if (bMTTK_)
1002                     {
1003                         for (int i = 0; (i < nTCP_); i++)
1004                         {
1005                             for (j = 0; j < nNHC_; j++)
1006                             {
1007                                 k                 = i * nNHC_ + j;
1008                                 tmp_r_[2 * k]     = ptCouplingArrays.nhpres_xi[k];
1009                                 tmp_r_[2 * k + 1] = ptCouplingArrays.nhpres_vxi[k];
1010                             }
1011                         }
1012                         add_ebin(ebin_, itcb_, mdeb_n_, tmp_r_.data(), bSum);
1013                     }
1014                 }
1015                 else
1016                 {
1017                     for (int i = 0; (i < nTC_); i++)
1018                     {
1019                         tmp_r_[2 * i]     = ptCouplingArrays.nosehoover_xi[i];
1020                         tmp_r_[2 * i + 1] = ptCouplingArrays.nosehoover_vxi[i];
1021                     }
1022                     add_ebin(ebin_, itc_, mde_n_, tmp_r_.data(), bSum);
1023                 }
1024             }
1025         }
1026         else if (etc_ == TemperatureCoupling::Berendsen || etc_ == TemperatureCoupling::Yes
1027                  || etc_ == TemperatureCoupling::VRescale)
1028         {
1029             for (int i = 0; (i < nTC_); i++)
1030             {
1031                 tmp_r_[i] = ekind->tcstat[i].lambda;
1032             }
1033             add_ebin(ebin_, itc_, nTC_, tmp_r_.data(), bSum);
1034         }
1035     }
1036
1037     ebin_increase_count(1, ebin_, bSum);
1038
1039     // BAR + thermodynamic integration values
1040     if ((fp_dhdl_ || dhc_) && bDoDHDL)
1041     {
1042         const auto& foreignTerms = enerd->foreignLambdaTerms;
1043         for (int i = 0; i < foreignTerms.numLambdas(); i++)
1044         {
1045             /* zero for simulated tempering */
1046             dE_[i] = foreignTerms.deltaH(i);
1047             if (!temperatures_.empty())
1048             {
1049                 GMX_RELEASE_ASSERT(gmx::ssize(temperatures_) > fep_state,
1050                                    "Number of lambdas in state is bigger then in input record");
1051                 GMX_RELEASE_ASSERT(
1052                         gmx::ssize(temperatures_) >= foreignTerms.numLambdas(),
1053                         "Number of lambdas in energy data is bigger then in input record");
1054                 /* MRS: is this right, given the way we have defined the exchange probabilities? */
1055                 /* is this even useful to have at all? */
1056                 dE_[i] += (temperatures_[i] / temperatures_[fep_state] - 1.0) * enerd->term[F_EKIN];
1057             }
1058         }
1059
1060         if (fp_dhdl_)
1061         {
1062             fprintf(fp_dhdl_, "%.4f", time);
1063             /* the current free energy state */
1064
1065             /* print the current state if we are doing expanded ensemble */
1066             if (expand->elmcmove > LambdaMoveCalculation::No)
1067             {
1068                 fprintf(fp_dhdl_, " %4d", fep_state);
1069             }
1070             /* total energy (for if the temperature changes */
1071
1072             if (fep->edHdLPrintEnergy != FreeEnergyPrintEnergy::No)
1073             {
1074                 switch (fep->edHdLPrintEnergy)
1075                 {
1076                     case FreeEnergyPrintEnergy::Potential:
1077                         store_energy = enerd->term[F_EPOT];
1078                         break;
1079                     case FreeEnergyPrintEnergy::Total:
1080                     case FreeEnergyPrintEnergy::Yes:
1081                     default: store_energy = enerd->term[F_ETOT];
1082                 }
1083                 fprintf(fp_dhdl_, " %#.8g", store_energy);
1084             }
1085
1086             if (fep->dhdl_derivatives == DhDlDerivativeCalculation::Yes)
1087             {
1088                 for (auto i : keysOf(fep->separate_dvdl))
1089                 {
1090                     if (fep->separate_dvdl[i])
1091                     {
1092                         /* assumes F_DVDL is first */
1093                         fprintf(fp_dhdl_, " %#.8g", enerd->term[F_DVDL + static_cast<int>(i)]);
1094                     }
1095                 }
1096             }
1097             for (int i = fep->lambda_start_n; i < fep->lambda_stop_n; i++)
1098             {
1099                 fprintf(fp_dhdl_, " %#.8g", dE_[i]);
1100             }
1101             if (bDynBox_ && bDiagPres_ && (epc_ != PressureCoupling::No)
1102                 && foreignTerms.numLambdas() > 0 && (fep->init_lambda < 0))
1103             {
1104                 fprintf(fp_dhdl_, " %#.8g", pv); /* PV term only needed when
1105                                                          there are alternate state
1106                                                          lambda and we're not in
1107                                                          compatibility mode */
1108             }
1109             fprintf(fp_dhdl_, "\n");
1110             /* and the binary free energy output */
1111         }
1112         if (dhc_ && bDoDHDL)
1113         {
1114             int idhdl = 0;
1115             for (auto i : keysOf(fep->separate_dvdl))
1116             {
1117                 if (fep->separate_dvdl[i])
1118                 {
1119                     /* assumes F_DVDL is first */
1120                     store_dhdl[idhdl] = enerd->term[F_DVDL + static_cast<int>(i)];
1121                     idhdl += 1;
1122                 }
1123             }
1124             store_energy = enerd->term[F_ETOT];
1125             /* store_dh is dE */
1126             mde_delta_h_coll_add_dh(dhc_,
1127                                     static_cast<double>(fep_state),
1128                                     store_energy,
1129                                     pv,
1130                                     store_dhdl,
1131                                     dE_.data() + fep->lambda_start_n,
1132                                     time);
1133         }
1134     }
1135
1136     if (conservedEnergyTracker_)
1137     {
1138         conservedEnergyTracker_->addPoint(
1139                 time, bEner_[F_ECONSERVED] ? enerd->term[F_ECONSERVED] : enerd->term[F_ETOT]);
1140     }
1141 }
1142
1143 void EnergyOutput::recordNonEnergyStep()
1144 {
1145     ebin_increase_count(1, ebin_, false);
1146 }
1147
1148 void EnergyOutput::printHeader(FILE* log, int64_t steps, double time)
1149 {
1150     char buf[22];
1151
1152     fprintf(log,
1153             "   %12s   %12s\n"
1154             "   %12s   %12.5f\n\n",
1155             "Step",
1156             "Time",
1157             gmx_step_str(steps, buf),
1158             time);
1159 }
1160
1161 void EnergyOutput::printStepToEnergyFile(ener_file* fp_ene,
1162                                          bool       bEne,
1163                                          bool       bDR,
1164                                          bool       bOR,
1165                                          FILE*      log,
1166                                          int64_t    step,
1167                                          double     time,
1168                                          t_fcdata*  fcd,
1169                                          gmx::Awh*  awh)
1170 {
1171     t_enxframe fr;
1172     init_enxframe(&fr);
1173     fr.t       = time;
1174     fr.step    = step;
1175     fr.nsteps  = ebin_->nsteps;
1176     fr.dt      = delta_t_;
1177     fr.nsum    = ebin_->nsum;
1178     fr.nre     = (bEne) ? ebin_->nener : 0;
1179     fr.ener    = ebin_->e;
1180     int ndisre = bDR ? fcd->disres->npair : 0;
1181     /* these are for the old-style blocks (1 subblock, only reals), because
1182        there can be only one per ID for these */
1183     int   nr[enxNR];
1184     int   id[enxNR];
1185     real* block[enxNR];
1186     /* Optional additional old-style (real-only) blocks. */
1187     for (int i = 0; i < enxNR; i++)
1188     {
1189         nr[i] = 0;
1190     }
1191
1192     if (bOR && fcd->orires->nr > 0)
1193     {
1194         t_oriresdata& orires = *fcd->orires;
1195         diagonalize_orires_tensors(&orires);
1196         nr[enxOR]     = orires.nr;
1197         block[enxOR]  = orires.otav;
1198         id[enxOR]     = enxOR;
1199         nr[enxORI]    = (orires.oinsl != orires.otav) ? orires.nr : 0;
1200         block[enxORI] = orires.oinsl;
1201         id[enxORI]    = enxORI;
1202         nr[enxORT]    = orires.nex * 12;
1203         block[enxORT] = orires.eig;
1204         id[enxORT]    = enxORT;
1205     }
1206
1207     /* whether we are going to write anything out: */
1208     if (fr.nre || ndisre || nr[enxOR] || nr[enxORI])
1209     {
1210         /* the old-style blocks go first */
1211         fr.nblock = 0;
1212         for (int i = 0; i < enxNR; i++)
1213         {
1214             if (nr[i] > 0)
1215             {
1216                 fr.nblock = i + 1;
1217             }
1218         }
1219         add_blocks_enxframe(&fr, fr.nblock);
1220         for (int b = 0; b < fr.nblock; b++)
1221         {
1222             add_subblocks_enxblock(&(fr.block[b]), 1);
1223             fr.block[b].id        = id[b];
1224             fr.block[b].sub[0].nr = nr[b];
1225 #if !GMX_DOUBLE
1226             fr.block[b].sub[0].type = xdr_datatype_float;
1227             fr.block[b].sub[0].fval = block[b];
1228 #else
1229             fr.block[b].sub[0].type  = xdr_datatype_double;
1230             fr.block[b].sub[0].dval  = block[b];
1231 #endif
1232         }
1233
1234         /* check for disre block & fill it. */
1235         if (ndisre > 0)
1236         {
1237             int db = fr.nblock;
1238             fr.nblock += 1;
1239             add_blocks_enxframe(&fr, fr.nblock);
1240
1241             add_subblocks_enxblock(&(fr.block[db]), 2);
1242             const t_disresdata& disres = *fcd->disres;
1243             fr.block[db].id            = enxDISRE;
1244             fr.block[db].sub[0].nr     = ndisre;
1245             fr.block[db].sub[1].nr     = ndisre;
1246 #if !GMX_DOUBLE
1247             fr.block[db].sub[0].type = xdr_datatype_float;
1248             fr.block[db].sub[1].type = xdr_datatype_float;
1249             fr.block[db].sub[0].fval = disres.rt;
1250             fr.block[db].sub[1].fval = disres.rm3tav;
1251 #else
1252             fr.block[db].sub[0].type = xdr_datatype_double;
1253             fr.block[db].sub[1].type = xdr_datatype_double;
1254             fr.block[db].sub[0].dval = disres.rt;
1255             fr.block[db].sub[1].dval = disres.rm3tav;
1256 #endif
1257         }
1258         /* here we can put new-style blocks */
1259
1260         /* Free energy perturbation blocks */
1261         if (dhc_)
1262         {
1263             mde_delta_h_coll_handle_block(dhc_, &fr, fr.nblock);
1264         }
1265
1266         /* we can now free & reset the data in the blocks */
1267         if (dhc_)
1268         {
1269             mde_delta_h_coll_reset(dhc_);
1270         }
1271
1272         /* AWH bias blocks. */
1273         if (awh != nullptr) // TODO: add boolean flag.
1274         {
1275             awh->writeToEnergyFrame(step, &fr);
1276         }
1277
1278         /* do the actual I/O */
1279         do_enx(fp_ene, &fr);
1280         if (fr.nre)
1281         {
1282             /* We have stored the sums, so reset the sum history */
1283             reset_ebin_sums(ebin_);
1284         }
1285     }
1286     free_enxframe(&fr);
1287     if (log)
1288     {
1289         if (bOR && fcd->orires->nr > 0)
1290         {
1291             print_orires_log(log, fcd->orires);
1292         }
1293
1294         fprintf(log, "   Energies (%s)\n", unit_energy);
1295         pr_ebin(log, ebin_, ie_, f_nre_ + nCrmsd_, 5, eprNORMAL, true);
1296         fprintf(log, "\n");
1297     }
1298 }
1299
1300 void EnergyOutput::printAnnealingTemperatures(FILE* log, const SimulationGroups* groups, const t_grpopts* opts)
1301 {
1302     if (log)
1303     {
1304         if (opts)
1305         {
1306             for (int i = 0; i < opts->ngtc; i++)
1307             {
1308                 if (opts->annealing[i] != SimulatedAnnealing::No)
1309                 {
1310                     fprintf(log,
1311                             "Current ref_t for group %s: %8.1f\n",
1312                             *(groups->groupNames[groups->groups[SimulationAtomGroupType::TemperatureCoupling][i]]),
1313                             opts->ref_t[i]);
1314                 }
1315             }
1316             fprintf(log, "\n");
1317         }
1318     }
1319 }
1320
1321 void EnergyOutput::printAverages(FILE* log, const SimulationGroups* groups)
1322 {
1323     if (ebin_->nsum_sim <= 0)
1324     {
1325         if (log)
1326         {
1327             fprintf(log, "Not enough data recorded to report energy averages\n");
1328         }
1329         return;
1330     }
1331     if (log)
1332     {
1333
1334         char buf1[22], buf2[22];
1335
1336         fprintf(log, "\t<======  ###############  ==>\n");
1337         fprintf(log, "\t<====  A V E R A G E S  ====>\n");
1338         fprintf(log, "\t<==  ###############  ======>\n\n");
1339
1340         fprintf(log,
1341                 "\tStatistics over %s steps using %s frames\n",
1342                 gmx_step_str(ebin_->nsteps_sim, buf1),
1343                 gmx_step_str(ebin_->nsum_sim, buf2));
1344         fprintf(log, "\n");
1345
1346         fprintf(log, "   Energies (%s)\n", unit_energy);
1347         pr_ebin(log, ebin_, ie_, f_nre_ + nCrmsd_, 5, eprAVER, true);
1348         fprintf(log, "\n");
1349
1350         if (bDynBox_)
1351         {
1352             pr_ebin(log, ebin_, ib_, bTricl_ ? tricl_boxs_nm.size() : boxs_nm.size(), 5, eprAVER, true);
1353             fprintf(log, "\n");
1354         }
1355         if (bConstrVir_)
1356         {
1357             fprintf(log, "   Constraint Virial (%s)\n", unit_energy);
1358             pr_ebin(log, ebin_, isvir_, 9, 3, eprAVER, false);
1359             fprintf(log, "\n");
1360             fprintf(log, "   Force Virial (%s)\n", unit_energy);
1361             pr_ebin(log, ebin_, ifvir_, 9, 3, eprAVER, false);
1362             fprintf(log, "\n");
1363         }
1364         if (bPres_)
1365         {
1366             fprintf(log, "   Total Virial (%s)\n", unit_energy);
1367             pr_ebin(log, ebin_, ivir_, 9, 3, eprAVER, false);
1368             fprintf(log, "\n");
1369             fprintf(log, "   Pressure (%s)\n", unit_pres_bar);
1370             pr_ebin(log, ebin_, ipres_, 9, 3, eprAVER, false);
1371             fprintf(log, "\n");
1372         }
1373         if (bMu_)
1374         {
1375             fprintf(log, "   Total Dipole (%s)\n", unit_dipole_D);
1376             pr_ebin(log, ebin_, imu_, 3, 3, eprAVER, false);
1377             fprintf(log, "\n");
1378         }
1379
1380         if (nE_ > 1)
1381         {
1382             int padding = 8 - strlen(unit_energy);
1383             fprintf(log, "%*sEpot (%s)   ", padding, "", unit_energy);
1384             for (auto key : keysOf(bEInd_))
1385             {
1386                 if (bEInd_[key])
1387                 {
1388                     fprintf(log, "%12s   ", enumValueToString(key));
1389                 }
1390             }
1391             fprintf(log, "\n");
1392
1393             int n = 0;
1394             for (int i = 0; (i < nEg_); i++)
1395             {
1396                 int ni = groups->groups[SimulationAtomGroupType::EnergyOutput][i];
1397                 for (int j = i; (j < nEg_); j++)
1398                 {
1399                     int nj = groups->groups[SimulationAtomGroupType::EnergyOutput][j];
1400                     int padding =
1401                             14 - (strlen(*(groups->groupNames[ni])) + strlen(*(groups->groupNames[nj])));
1402                     fprintf(log, "%*s%s-%s", padding, "", *(groups->groupNames[ni]), *(groups->groupNames[nj]));
1403                     pr_ebin(log, ebin_, igrp_[n], nEc_, nEc_, eprAVER, false);
1404                     n++;
1405                 }
1406             }
1407             fprintf(log, "\n");
1408         }
1409         if (nTC_ > 1)
1410         {
1411             pr_ebin(log, ebin_, itemp_, nTC_, 4, eprAVER, true);
1412             fprintf(log, "\n");
1413         }
1414     }
1415 }
1416
1417 void EnergyOutput::fillEnergyHistory(energyhistory_t* enerhist) const
1418 {
1419     const t_ebin* const ebin = ebin_;
1420
1421     enerhist->nsteps     = ebin->nsteps;
1422     enerhist->nsum       = ebin->nsum;
1423     enerhist->nsteps_sim = ebin->nsteps_sim;
1424     enerhist->nsum_sim   = ebin->nsum_sim;
1425
1426     if (ebin->nsum > 0)
1427     {
1428         /* This will only actually resize the first time */
1429         enerhist->ener_ave.resize(ebin->nener);
1430         enerhist->ener_sum.resize(ebin->nener);
1431
1432         for (int i = 0; i < ebin->nener; i++)
1433         {
1434             enerhist->ener_ave[i] = ebin->e[i].eav;
1435             enerhist->ener_sum[i] = ebin->e[i].esum;
1436         }
1437     }
1438
1439     if (ebin->nsum_sim > 0)
1440     {
1441         /* This will only actually resize the first time */
1442         enerhist->ener_sum_sim.resize(ebin->nener);
1443
1444         for (int i = 0; i < ebin->nener; i++)
1445         {
1446             enerhist->ener_sum_sim[i] = ebin->e_sim[i].esum;
1447         }
1448     }
1449     if (dhc_)
1450     {
1451         mde_delta_h_coll_update_energyhistory(dhc_, enerhist);
1452     }
1453 }
1454
1455 void EnergyOutput::restoreFromEnergyHistory(const energyhistory_t& enerhist)
1456 {
1457     unsigned int nener = static_cast<unsigned int>(ebin_->nener);
1458
1459     if ((enerhist.nsum > 0 && nener != enerhist.ener_sum.size())
1460         || (enerhist.nsum_sim > 0 && nener != enerhist.ener_sum_sim.size()))
1461     {
1462         gmx_fatal(FARGS,
1463                   "Mismatch between number of energies in run input (%u) and checkpoint file (%zu "
1464                   "or %zu).",
1465                   nener,
1466                   enerhist.ener_sum.size(),
1467                   enerhist.ener_sum_sim.size());
1468     }
1469
1470     ebin_->nsteps     = enerhist.nsteps;
1471     ebin_->nsum       = enerhist.nsum;
1472     ebin_->nsteps_sim = enerhist.nsteps_sim;
1473     ebin_->nsum_sim   = enerhist.nsum_sim;
1474
1475     for (int i = 0; i < ebin_->nener; i++)
1476     {
1477         ebin_->e[i].eav      = (enerhist.nsum > 0 ? enerhist.ener_ave[i] : 0);
1478         ebin_->e[i].esum     = (enerhist.nsum > 0 ? enerhist.ener_sum[i] : 0);
1479         ebin_->e_sim[i].esum = (enerhist.nsum_sim > 0 ? enerhist.ener_sum_sim[i] : 0);
1480     }
1481     if (dhc_)
1482     {
1483         mde_delta_h_coll_restore_energyhistory(dhc_, enerhist.deltaHForeignLambdas.get());
1484     }
1485 }
1486
1487 int EnergyOutput::numEnergyTerms() const
1488 {
1489     return ebin_->nener;
1490 }
1491
1492 void EnergyOutput::printEnergyConservation(FILE* fplog, int simulationPart, bool usingMdIntegrator) const
1493 {
1494     if (fplog == nullptr)
1495     {
1496         return;
1497     }
1498
1499     if (conservedEnergyTracker_)
1500     {
1501         std::string partName = formatString("simulation part #%d", simulationPart);
1502         fprintf(fplog, "\n%s\n", conservedEnergyTracker_->energyDriftString(partName).c_str());
1503     }
1504     else if (usingMdIntegrator)
1505     {
1506         fprintf(fplog,
1507                 "\nCannot report drift of the conserved energy quantity because simulations share "
1508                 "state\n\n");
1509     }
1510 }
1511
1512 } // namespace gmx