Split lines with many copyright years
[gromacs.git] / src / gromacs / gmxpreprocess / readrot.cpp
blob43965615c9eb972fb4a4f5411dbca4d2105c4ed4
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team.
6 * Copyright (c) 2013,2014,2015,2016,2017 by the GROMACS development team.
7 * Copyright (c) 2018,2019,2020, 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.
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.
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.
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.
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.
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.
38 #include "gmxpre.h"
40 #include <string>
42 #include "gromacs/fileio/readinp.h"
43 #include "gromacs/fileio/trrio.h"
44 #include "gromacs/fileio/warninp.h"
45 #include "gromacs/gmxpreprocess/readir.h"
46 #include "gromacs/math/vec.h"
47 #include "gromacs/math/vecdump.h"
48 #include "gromacs/mdtypes/inputrec.h"
49 #include "gromacs/mdtypes/md_enums.h"
50 #include "gromacs/topology/block.h"
51 #include "gromacs/utility/cstringutil.h"
52 #include "gromacs/utility/fatalerror.h"
53 #include "gromacs/utility/futil.h"
54 #include "gromacs/utility/path.h"
55 #include "gromacs/utility/smalloc.h"
56 #include "gromacs/utility/stringutil.h"
58 static const char* RotStr = "Enforced rotation:";
61 static char s_vec[STRLEN];
64 static void string2dvec(char buf[], dvec nums)
66 if (sscanf(buf, "%lf%lf%lf", &nums[0], &nums[1], &nums[2]) != 3)
68 gmx_fatal(FARGS, "Expected three numbers at input line %s", buf);
73 extern char** read_rotparams(std::vector<t_inpfile>* inp, t_rot* rot, warninp_t wi)
75 int g, m;
76 char** grpbuf;
77 char buf[STRLEN];
78 char warn_buf[STRLEN];
79 dvec vec;
80 t_rotgrp* rotg;
82 /* read rotation parameters */
83 printStringNoNewline(
84 inp,
85 "Output frequency for angle, torque and rotation potential energy for the whole group");
86 rot->nstrout = get_eint(inp, "rot-nstrout", 100, wi);
87 printStringNoNewline(inp,
88 "Output frequency for per-slab data (angles, torques and slab centers)");
89 rot->nstsout = get_eint(inp, "rot-nstsout", 1000, wi);
90 printStringNoNewline(inp, "Number of rotation groups");
91 rot->ngrp = get_eint(inp, "rot-ngroups", 1, wi);
93 if (rot->ngrp < 1)
95 gmx_fatal(FARGS, "rot-ngroups should be >= 1");
98 snew(rot->grp, rot->ngrp);
100 /* Read the rotation groups */
101 snew(grpbuf, rot->ngrp);
102 for (g = 0; g < rot->ngrp; g++)
104 rotg = &rot->grp[g];
105 snew(grpbuf[g], STRLEN);
106 printStringNoNewline(inp, "Rotation group name");
107 sprintf(buf, "rot-group%d", g);
108 setStringEntry(inp, buf, grpbuf[g], "");
110 printStringNoNewline(inp,
111 "Rotation potential. Can be iso, iso-pf, pm, pm-pf, rm, rm-pf, rm2, "
112 "rm2-pf, flex, flex-t, flex2, flex2-t");
113 sprintf(buf, "rot-type%d", g);
114 rotg->eType = get_eenum(inp, buf, erotg_names);
116 printStringNoNewline(inp, "Use mass-weighting of the rotation group positions");
117 sprintf(buf, "rot-massw%d", g);
118 rotg->bMassW = get_eenum(inp, buf, yesno_names);
120 printStringNoNewline(inp, "Rotation vector, will get normalized");
121 sprintf(buf, "rot-vec%d", g);
122 setStringEntry(inp, buf, s_vec, "1.0 0.0 0.0");
123 string2dvec(s_vec, vec);
124 /* Normalize the rotation vector */
125 if (dnorm(vec) != 0)
127 dsvmul(1.0 / dnorm(vec), vec, vec);
129 else
131 sprintf(warn_buf, "rot-vec%d = 0", g);
132 warning_error(wi, warn_buf);
134 fprintf(stderr, "%s Group %d (%s) normalized rot. vector: %f %f %f\n", RotStr, g,
135 erotg_names[rotg->eType], vec[0], vec[1], vec[2]);
136 for (m = 0; m < DIM; m++)
138 rotg->inputVec[m] = vec[m];
141 printStringNoNewline(inp, "Pivot point for the potentials iso, pm, rm, and rm2 (nm)");
142 sprintf(buf, "rot-pivot%d", g);
143 setStringEntry(inp, buf, s_vec, "0.0 0.0 0.0");
144 clear_dvec(vec);
145 if ((rotg->eType == erotgISO) || (rotg->eType == erotgPM) || (rotg->eType == erotgRM)
146 || (rotg->eType == erotgRM2))
148 string2dvec(s_vec, vec);
150 for (m = 0; m < DIM; m++)
152 rotg->pivot[m] = vec[m];
155 printStringNoNewline(inp, "Rotation rate (degree/ps) and force constant (kJ/(mol*nm^2))");
156 sprintf(buf, "rot-rate%d", g);
157 rotg->rate = get_ereal(inp, buf, 0.0, wi);
159 sprintf(buf, "rot-k%d", g);
160 rotg->k = get_ereal(inp, buf, 0.0, wi);
161 if (rotg->k <= 0.0)
163 sprintf(warn_buf, "rot-k%d <= 0", g);
164 warning_note(wi, warn_buf);
167 printStringNoNewline(inp, "Slab distance for flexible axis rotation (nm)");
168 sprintf(buf, "rot-slab-dist%d", g);
169 rotg->slab_dist = get_ereal(inp, buf, 1.5, wi);
170 if (rotg->slab_dist <= 0.0)
172 sprintf(warn_buf, "rot-slab-dist%d <= 0", g);
173 warning_error(wi, warn_buf);
176 printStringNoNewline(inp,
177 "Minimum value of Gaussian function for the force to be evaluated "
178 "(for flex* potentials)");
179 sprintf(buf, "rot-min-gauss%d", g);
180 rotg->min_gaussian = get_ereal(inp, buf, 1e-3, wi);
181 if (rotg->min_gaussian <= 0.0)
183 sprintf(warn_buf, "rot-min-gauss%d <= 0", g);
184 warning_error(wi, warn_buf);
187 printStringNoNewline(
188 inp, "Value of additive constant epsilon' (nm^2) for rm2* and flex2* potentials");
189 sprintf(buf, "rot-eps%d", g);
190 rotg->eps = get_ereal(inp, buf, 1e-4, wi);
191 if ((rotg->eps <= 0.0) && (rotg->eType == erotgRM2 || rotg->eType == erotgFLEX2))
193 sprintf(warn_buf, "rot-eps%d <= 0", g);
194 warning_error(wi, warn_buf);
197 printStringNoNewline(
198 inp,
199 "Fitting method to determine angle of rotation group (rmsd, norm, or potential)");
200 sprintf(buf, "rot-fit-method%d", g);
201 rotg->eFittype = get_eenum(inp, buf, erotg_fitnames);
202 printStringNoNewline(inp,
203 "For fit type 'potential', nr. of angles around the reference for "
204 "which the pot. is evaluated");
205 sprintf(buf, "rot-potfit-nsteps%d", g);
206 rotg->PotAngle_nstep = get_eint(inp, buf, 21, wi);
207 if ((rotg->eFittype == erotgFitPOT) && (rotg->PotAngle_nstep < 1))
209 sprintf(warn_buf, "rot-potfit-nsteps%d < 1", g);
210 warning_error(wi, warn_buf);
212 printStringNoNewline(
213 inp,
214 "For fit type 'potential', distance in degrees between two consecutive angles");
215 sprintf(buf, "rot-potfit-step%d", g);
216 rotg->PotAngle_step = get_ereal(inp, buf, 0.25, wi);
219 return grpbuf;
223 /* Check whether the box is unchanged */
224 static void check_box_unchanged(matrix f_box, matrix box, const char fn[], warninp_t wi)
226 int i, ii;
227 bool bSame = TRUE;
228 char warn_buf[STRLEN];
231 for (i = 0; i < DIM; i++)
233 for (ii = 0; ii < DIM; ii++)
235 if (f_box[i][ii] != box[i][ii])
237 bSame = FALSE;
241 if (!bSame)
243 sprintf(warn_buf, "%s Box size in reference file %s differs from actual box size!", RotStr, fn);
244 warning(wi, warn_buf);
245 pr_rvecs(stderr, 0, "Your box is:", box, 3);
246 pr_rvecs(stderr, 0, "Box in file:", f_box, 3);
251 /* Extract the reference positions for the rotation group(s) */
252 extern void set_reference_positions(t_rot* rot, rvec* x, matrix box, const char* fn, bool bSet, warninp_t wi)
254 int g, i, ii;
255 t_rotgrp* rotg;
256 gmx_trr_header_t header; /* Header information of reference file */
257 rvec f_box[3]; /* Box from reference file */
259 for (g = 0; g < rot->ngrp; g++)
261 rotg = &rot->grp[g];
262 fprintf(stderr, "%s group %d has %d reference positions.\n", RotStr, g, rotg->nat);
263 snew(rotg->x_ref, rotg->nat);
265 /* Construct the name for the file containing the reference positions for this group: */
266 std::string reffileString =
267 gmx::Path::concatenateBeforeExtension(fn, gmx::formatString(".%d", g));
268 const char* reffile = reffileString.c_str();
270 /* If the base filename for the reference position files was explicitly set by
271 * the user, we issue a fatal error if the group file can not be found */
272 if (bSet && !gmx_fexist(reffile))
274 gmx_fatal(FARGS,
275 "%s The file containing the reference positions was not found.\n"
276 "Expected the file '%s' for group %d.\n",
277 RotStr, reffile, g);
280 if (gmx_fexist(reffile))
282 fprintf(stderr, " Reading them from %s.\n", reffile);
283 gmx_trr_read_single_header(reffile, &header);
284 if (rotg->nat != header.natoms)
286 gmx_fatal(FARGS,
287 "Number of atoms in file %s (%d) does not match the number of atoms in "
288 "rotation group (%d)!\n",
289 reffile, header.natoms, rotg->nat);
291 gmx_trr_read_single_frame(reffile, &header.step, &header.t, &header.lambda, f_box,
292 &header.natoms, rotg->x_ref, nullptr, nullptr);
294 /* Check whether the box is unchanged and output a warning if not: */
295 check_box_unchanged(f_box, box, reffile, wi);
297 else
299 fprintf(stderr, " Saving them to %s.\n", reffile);
300 for (i = 0; i < rotg->nat; i++)
302 ii = rotg->ind[i];
303 copy_rvec(x[ii], rotg->x_ref[i]);
305 gmx_trr_write_single_frame(reffile, g, 0.0, 0.0, box, rotg->nat, rotg->x_ref, nullptr, nullptr);
311 extern void make_rotation_groups(t_rot* rot, char** rotgnames, t_blocka* grps, char** gnames)
313 int g, ig = -1, i;
314 t_rotgrp* rotg;
317 for (g = 0; g < rot->ngrp; g++)
319 rotg = &rot->grp[g];
320 ig = search_string(rotgnames[g], grps->nr, gnames);
321 rotg->nat = grps->index[ig + 1] - grps->index[ig];
323 if (rotg->nat > 0)
325 fprintf(stderr, "Rotation group %d '%s' has %d atoms\n", g, rotgnames[g], rotg->nat);
326 snew(rotg->ind, rotg->nat);
327 for (i = 0; i < rotg->nat; i++)
329 rotg->ind[i] = grps->a[grps->index[ig] + i];
332 else
334 gmx_fatal(FARGS, "Rotation group %d '%s' is empty", g, rotgnames[g]);