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-2008, The GROMACS development team.
6 * Copyright (c) 2013,2014,2015,2017,2018,2019, by the GROMACS development team, led by
7 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8 * and including many others, as listed in the AUTHORS file in the
9 * top-level source directory and at http://www.gromacs.org.
11 * GROMACS is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 2.1
14 * of the License, or (at your option) any later version.
16 * GROMACS is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with GROMACS; if not, see
23 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 * If you want to redistribute modifications to GROMACS, please
27 * consider that scientific software is very special. Version
28 * control is crucial - bugs must be traceable. We will be happy to
29 * consider code for inclusion in the official distribution, but
30 * derived work must not be called official GROMACS. Details are found
31 * in the README & COPYING files - if they are missing, get the
32 * official version at http://www.gromacs.org.
34 * To help us fund GROMACS development, we humbly ask that you cite
35 * the research papers on the package. Check out http://www.gromacs.org.
48 #include "gromacs/fileio/confio.h"
49 #include "gromacs/gmxlib/network.h"
50 #include "gromacs/gmxlib/nrnb.h"
51 #include "gromacs/math/units.h"
52 #include "gromacs/math/vec.h"
53 #include "gromacs/mdlib/qmmm.h"
54 #include "gromacs/mdtypes/forcerec.h"
55 #include "gromacs/mdtypes/md_enums.h"
56 #include "gromacs/utility/fatalerror.h"
57 #include "gromacs/utility/smalloc.h"
59 // When not built in a configuration with QMMM support, much of this
60 // code is unreachable by design. Tell clang not to warn about it.
61 #pragma GCC diagnostic push
62 #pragma GCC diagnostic ignored "-Wmissing-noreturn"
64 /* ORCA interface routines */
66 void init_orca(t_QMrec
*qm
)
73 gmx_fatal(FARGS
, "Cannot call ORCA unless linked against it. Use cmake -DGMX_QMMM_PROGRAM=ORCA, and ensure that linking will work correctly.");
76 /* ORCA settings on the system */
77 buf
= getenv("GMX_QM_ORCA_BASENAME");
80 snew(qm
->orca_basename
, 200);
81 sscanf(buf
, "%s", qm
->orca_basename
);
85 gmx_fatal(FARGS
, "$GMX_QM_ORCA_BASENAME is not set\n");
88 /* ORCA directory on the system */
90 buf
= getenv("GMX_ORCA_PATH");
94 snew(qm
->orca_dir
, 200);
95 sscanf(buf
, "%s", qm
->orca_dir
);
99 gmx_fatal(FARGS
, "$GMX_ORCA_PATH not set, check manual\n");
102 fprintf(stderr
, "Setting ORCA path to: %s...\n", qm
->orca_dir
);
103 fprintf(stderr
, "ORCA initialised...\n\n");
104 /* since we append the output to the BASENAME.out file,
105 we should delete an existent old out-file here. */
106 sprintf(buf
, "%s.out", qm
->orca_basename
);
111 static void write_orca_input(const t_forcerec
*fr
, t_QMrec
*qm
, t_MMrec
*mm
)
115 FILE *out
, *pcFile
, *addInputFile
;
116 char *buf
, *orcaInput
, *addInputFilename
, *pcFilename
;
120 /* write the first part of the input-file */
121 snew(orcaInput
, 200);
122 sprintf(orcaInput
, "%s.inp", qm
->orca_basename
);
123 out
= fopen(orcaInput
, "w");
125 snew(addInputFilename
, 200);
126 sprintf(addInputFilename
, "%s.ORCAINFO", qm
->orca_basename
);
127 addInputFile
= fopen(addInputFilename
, "r");
129 fprintf(out
, "#input-file generated by GROMACS\n");
131 fprintf(out
, "!EnGrad TightSCF\n");
133 /* here we include the insertion of the additional orca-input */
135 if (addInputFile
!= nullptr)
137 while (!feof(addInputFile
))
139 if (fgets(buf
, 200, addInputFile
) != nullptr)
147 gmx_fatal(FARGS
, "No information on the calculation given in %s\n", addInputFilename
);
150 fclose(addInputFile
);
152 /* write charge and multiplicity */
153 fprintf(out
, "*xyz %2d%2d\n", qm
->QMcharge
, qm
->multiplicity
);
155 /* write the QM coordinates */
156 for (i
= 0; i
< qm
->nrQMatoms
; i
++)
159 if (qm
->atomicnumberQM
[i
] == 0)
165 atomNr
= qm
->atomicnumberQM
[i
];
167 fprintf(out
, "%3d %10.7f %10.7f %10.7f\n",
175 /* write the MM point charge data */
176 if (QMMMrec
->QMMMscheme
!= eQMMMschemeoniom
&& mm
->nrMMatoms
)
178 /* name of the point charge file */
179 snew(pcFilename
, 200);
180 sprintf(pcFilename
, "%s.pc", qm
->orca_basename
);
181 fprintf(out
, "%s%s%s\n", "%pointcharges \"", pcFilename
, "\"");
182 pcFile
= fopen(pcFilename
, "w");
183 fprintf(pcFile
, "%d\n", mm
->nrMMatoms
);
184 for (i
= 0; i
< mm
->nrMMatoms
; i
++)
186 fprintf(pcFile
, "%8.4f %10.7f %10.7f %10.7f\n",
192 fprintf(pcFile
, "\n");
198 } /* write_orca_input */
200 static real
read_orca_output(rvec QMgrad
[], rvec MMgrad
[], const t_forcerec
*fr
,
201 t_QMrec
*qm
, t_MMrec
*mm
)
206 buf
[300], orca_pcgradFilename
[300], orca_engradFilename
[300];
216 /* the energy and gradients for the QM part are stored in the engrad file
217 * and the gradients for the point charges are stored in the pc file.
219 sprintf(orca_engradFilename
, "%s.engrad", qm
->orca_basename
);
220 engrad
= fopen(orca_engradFilename
, "r");
221 /* we read the energy and the gradient for the qm-atoms from the engrad file
223 /* we can skip the first seven lines
225 for (j
= 0; j
< 7; j
++)
227 if (fgets(buf
, 300, engrad
) == nullptr)
229 gmx_fatal(FARGS
, "Unexpected end of ORCA output");
232 /* now comes the energy
234 if (fgets(buf
, 300, engrad
) == nullptr)
236 gmx_fatal(FARGS
, "Unexpected end of ORCA output");
239 sscanf(buf
, "%lf\n", &QMener
);
241 sscanf(buf
, "%f\n", &QMener
);
243 /* we can skip the next three lines
245 for (j
= 0; j
< 3; j
++)
247 if (fgets(buf
, 300, engrad
) == nullptr)
249 gmx_fatal(FARGS
, "Unexpected end of ORCA output");
252 /* next lines contain the gradients of the QM atoms
253 * now comes the gradient, one value per line:
254 * (atom1 x \n atom1 y \n atom1 z \n atom2 x ...
257 for (i
= 0; i
< 3*qm
->nrQMatoms
; i
++)
260 if (fgets(buf
, 300, engrad
) == nullptr)
262 gmx_fatal(FARGS
, "Unexpected end of ORCA output");
267 sscanf(buf
, "%lf\n", &QMgrad
[k
][XX
]);
271 sscanf(buf
, "%lf\n", &QMgrad
[k
][YY
]);
275 sscanf(buf
, "%lf\n", &QMgrad
[k
][ZZ
]);
280 sscanf(buf
, "%f\n", &QMgrad
[k
][XX
]);
284 sscanf(buf
, "%f\n", &QMgrad
[k
][YY
]);
288 sscanf(buf
, "%f\n", &QMgrad
[k
][ZZ
]);
293 /* write the MM point charge data
295 if (QMMMrec
->QMMMscheme
!= eQMMMschemeoniom
&& mm
->nrMMatoms
)
297 sprintf(orca_pcgradFilename
, "%s.pcgrad", qm
->orca_basename
);
298 pcgrad
= fopen(orca_pcgradFilename
, "r");
300 /* we read the gradient for the mm-atoms from the pcgrad file
302 /* we can skip the first line
304 if (fgets(buf
, 300, pcgrad
) == nullptr)
306 gmx_fatal(FARGS
, "Unexpected end of ORCA output");
308 for (i
= 0; i
< mm
->nrMMatoms
; i
++)
310 if (fgets(buf
, 300, pcgrad
) == nullptr)
312 gmx_fatal(FARGS
, "Unexpected end of ORCA output");
315 sscanf(buf
, "%lf%lf%lf\n",
320 sscanf(buf
, "%f%f%f\n",
331 static void do_orca(char *orca_dir
, char *basename
)
334 /* make the call to the orca binary through system()
335 * The location of the binary is set through the
340 sprintf(buf
, "%s/%s %s.inp >> %s.out",
345 fprintf(stderr
, "Calling '%s'\n", buf
);
346 if (system(buf
) != 0)
348 gmx_fatal(FARGS
, "Call to '%s' failed\n", buf
);
352 real
call_orca(const t_forcerec
*fr
,
353 t_QMrec
*qm
, t_MMrec
*mm
, rvec f
[], rvec fshift
[])
355 /* normal orca jobs */
368 sprintf(exe
, "%s", "orca");
369 snew(QMgrad
, qm
->nrQMatoms
);
370 snew(MMgrad
, mm
->nrMMatoms
);
372 write_orca_input(fr
, qm
, mm
);
373 do_orca(qm
->orca_dir
, qm
->orca_basename
);
374 QMener
= read_orca_output(QMgrad
, MMgrad
, fr
, qm
, mm
);
375 /* put the QMMM forces in the force array and to the fshift
377 for (i
= 0; i
< qm
->nrQMatoms
; i
++)
379 for (j
= 0; j
< DIM
; j
++)
381 f
[i
][j
] = HARTREE_BOHR2MD
*QMgrad
[i
][j
];
382 fshift
[i
][j
] = HARTREE_BOHR2MD
*QMgrad
[i
][j
];
385 for (i
= 0; i
< mm
->nrMMatoms
; i
++)
387 for (j
= 0; j
< DIM
; j
++)
389 f
[i
+qm
->nrQMatoms
][j
] = HARTREE_BOHR2MD
*MMgrad
[i
][j
];
390 fshift
[i
+qm
->nrQMatoms
][j
] = HARTREE_BOHR2MD
*MMgrad
[i
][j
];
393 QMener
= QMener
*HARTREE2KJ
*AVOGADRO
;
399 /* end of orca sub routines */
401 #pragma GCC diagnostic pop