Fixed include statements such that double precision version of genborn.c
[gromacs/rigid-bodies.git] / src / mdlib / constr.c
blob4d2dcb84e3203f7fab0d649106de37d7b4710846
1 /* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
3 *
4 * This source code is part of
5 *
6 * G R O M A C S
7 *
8 * GROningen MAchine for Chemical Simulations
9 *
10 * VERSION 3.2.0
11 * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
12 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
13 * Copyright (c) 2001-2004, The GROMACS development team,
14 * check out http://www.gromacs.org for more information.
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version 2
19 * of the License, or (at your option) any later version.
21 * If you want to redistribute modifications, please consider that
22 * scientific software is very special. Version control is crucial -
23 * bugs must be traceable. We will be happy to consider code for
24 * inclusion in the official distribution, but derived work must not
25 * be called official GROMACS. Details are found in the README & COPYING
26 * files - if they are missing, get the official version at www.gromacs.org.
28 * To help us fund GROMACS development, we humbly ask that you cite
29 * the papers on the package - you can find them in the top README file.
31 * For more info, check our website at http://www.gromacs.org
33 * And Hey:
34 * GROwing Monsters And Cloning Shrimps
36 #ifdef HAVE_CONFIG_H
37 #include <config.h>
38 #endif
40 #include "confio.h"
41 #include "constr.h"
42 #include "copyrite.h"
43 #include "invblock.h"
44 #include "main.h"
45 #include "mdrun.h"
46 #include "nrnb.h"
47 #include "smalloc.h"
48 #include "vec.h"
49 #include "physics.h"
50 #include "names.h"
51 #include "txtdump.h"
52 #include "domdec.h"
53 #include "pdbio.h"
54 #include "partdec.h"
55 #include "splitter.h"
56 #include "mtop_util.h"
57 #include "gmxfio.h"
59 typedef struct gmx_constr {
60 int ncon_tot; /* The total number of constraints */
61 int nflexcon; /* The number of flexible constraints */
62 int n_at2con_mt; /* The size of at2con = #moltypes */
63 t_blocka *at2con_mt; /* A list of atoms to constraints */
64 gmx_lincsdata_t lincsd; /* LINCS data */
65 gmx_shakedata_t shaked; /* SHAKE data */
66 gmx_settledata_t settled; /* SETTLE data */
67 int nblocks; /* The number of SHAKE blocks */
68 int *sblock; /* The SHAKE blocks */
69 int sblock_nalloc;/* The allocation size of sblock */
70 real *lagr; /* Lagrange multipliers for SHAKE */
71 int lagr_nalloc; /* The allocation size of lagr */
72 int maxwarn; /* The maximum number of warnings */
73 int warncount_lincs;
74 int warncount_settle;
75 gmx_edsam_t ed; /* The essential dynamics data */
77 gmx_mtop_t *warn_mtop; /* Only used for printing warnings */
78 } t_gmx_constr;
80 typedef struct {
81 atom_id iatom[3];
82 atom_id blocknr;
83 } t_sortblock;
85 static t_vetavars *init_vetavars(real veta,real vetanew, t_inputrec *ir, gmx_ekindata_t *ekind, bool bPscal)
87 t_vetavars *vars;
88 double g;
89 int i;
91 snew(vars,1);
92 snew(vars->vscale_nhc,ir->opts.ngtc);
93 /* first, set the alpha integrator variable */
94 if ((ir->opts.nrdf[0] > 0) && bPscal)
96 vars->alpha = 1.0 + DIM/((double)ir->opts.nrdf[0]);
97 } else {
98 vars->alpha = 1.0;
100 g = 0.5*veta*ir->delta_t;
101 vars->rscale = exp(g)*series_sinhx(g);
102 g = -0.25*vars->alpha*veta*ir->delta_t;
103 vars->vscale = exp(g)*series_sinhx(g);
104 vars->rvscale = vars->vscale*vars->rscale;
105 vars->veta = vetanew;
106 if ((ekind==NULL) || (!bPscal))
108 for (i=0;i<ir->opts.ngtc;i++)
110 vars->vscale_nhc[i] = 1;
112 } else {
113 for (i=0;i<ir->opts.ngtc;i++)
115 vars->vscale_nhc[i] = ekind->tcstat[i].vscale_nhc;
118 return vars;
121 static void free_vetavars(t_vetavars *vars)
123 sfree(vars->vscale_nhc);
124 sfree(vars);
127 static int pcomp(const void *p1, const void *p2)
129 int db;
130 atom_id min1,min2,max1,max2;
131 t_sortblock *a1=(t_sortblock *)p1;
132 t_sortblock *a2=(t_sortblock *)p2;
134 db=a1->blocknr-a2->blocknr;
136 if (db != 0)
137 return db;
139 min1=min(a1->iatom[1],a1->iatom[2]);
140 max1=max(a1->iatom[1],a1->iatom[2]);
141 min2=min(a2->iatom[1],a2->iatom[2]);
142 max2=max(a2->iatom[1],a2->iatom[2]);
144 if (min1 == min2)
145 return max1-max2;
146 else
147 return min1-min2;
150 static int icomp(const void *p1, const void *p2)
152 atom_id *a1=(atom_id *)p1;
153 atom_id *a2=(atom_id *)p2;
155 return (*a1)-(*a2);
158 int n_flexible_constraints(struct gmx_constr *constr)
160 int nflexcon;
162 if (constr)
163 nflexcon = constr->nflexcon;
164 else
165 nflexcon = 0;
167 return nflexcon;
170 void too_many_constraint_warnings(int eConstrAlg,int warncount)
172 const char *abort="- aborting to avoid logfile runaway.\n"
173 "This normally happens when your system is not sufficiently equilibrated,"
174 "or if you are changing lambda too fast in free energy simulations.\n";
176 gmx_fatal(FARGS,
177 "Too many %s warnings (%d)\n"
178 "If you know what you are doing you can %s"
179 "set the environment variable GMX_MAXCONSTRWARN to -1,\n"
180 "but normally it is better to fix the problem",
181 (eConstrAlg == econtLINCS) ? "LINCS" : "SETTLE",warncount,
182 (eConstrAlg == econtLINCS) ?
183 "adjust the lincs warning threshold in your mdp file\nor " : "\n");
186 static void write_constr_pdb(const char *fn,const char *title,
187 gmx_mtop_t *mtop,
188 int start,int homenr,t_commrec *cr,
189 rvec x[],matrix box)
191 char fname[STRLEN],format[STRLEN];
192 FILE *out;
193 int dd_ac0=0,dd_ac1=0,i,ii,resnr;
194 gmx_domdec_t *dd;
195 char *anm,*resnm;
197 dd = NULL;
198 if (PAR(cr)) {
199 sprintf(fname,"%s_n%d.pdb",fn,cr->sim_nodeid);
200 if (DOMAINDECOMP(cr)) {
201 dd = cr->dd;
202 dd_get_constraint_range(dd,&dd_ac0,&dd_ac1);
203 start = 0;
204 homenr = dd_ac1;
206 } else {
207 sprintf(fname,"%s.pdb",fn);
209 sprintf(format,"%s\n",pdbformat);
211 out = gmx_fio_fopen(fname,"w");
213 fprintf(out,"TITLE %s\n",title);
214 gmx_write_pdb_box(out,-1,box);
215 for(i=start; i<start+homenr; i++) {
216 if (dd) {
217 if (i >= dd->nat_home && i < dd_ac0)
218 continue;
219 ii = dd->gatindex[i];
220 } else {
221 ii = i;
223 gmx_mtop_atominfo_global(mtop,ii,&anm,&resnr,&resnm);
224 fprintf(out,format,"ATOM",(ii+1)%100000,
225 anm,resnm,' ',(resnr+1)%10000,' ',
226 10*x[i][XX],10*x[i][YY],10*x[i][ZZ]);
228 fprintf(out,"TER\n");
230 gmx_fio_fclose(out);
233 static void dump_confs(FILE *fplog,gmx_large_int_t step,gmx_mtop_t *mtop,
234 int start,int homenr,t_commrec *cr,
235 rvec x[],rvec xprime[],matrix box)
237 char buf[256],buf2[22];
239 char *env=getenv("GMX_SUPPRESS_DUMP");
240 if (env)
241 return;
243 sprintf(buf,"step%sb",gmx_step_str(step,buf2));
244 write_constr_pdb(buf,"initial coordinates",
245 mtop,start,homenr,cr,x,box);
246 sprintf(buf,"step%sc",gmx_step_str(step,buf2));
247 write_constr_pdb(buf,"coordinates after constraining",
248 mtop,start,homenr,cr,xprime,box);
249 if (fplog)
251 fprintf(fplog,"Wrote pdb files with previous and current coordinates\n");
253 fprintf(stderr,"Wrote pdb files with previous and current coordinates\n");
256 static void pr_sortblock(FILE *fp,const char *title,int nsb,t_sortblock sb[])
258 int i;
260 fprintf(fp,"%s\n",title);
261 for(i=0; (i<nsb); i++)
262 fprintf(fp,"i: %5d, iatom: (%5d %5d %5d), blocknr: %5d\n",
263 i,sb[i].iatom[0],sb[i].iatom[1],sb[i].iatom[2],
264 sb[i].blocknr);
267 bool constrain(FILE *fplog,bool bLog,bool bEner,
268 struct gmx_constr *constr,
269 t_idef *idef,t_inputrec *ir,gmx_ekindata_t *ekind,
270 t_commrec *cr,
271 gmx_large_int_t step,int delta_step,
272 t_mdatoms *md,
273 rvec *x,rvec *xprime,rvec *min_proj,matrix box,
274 real lambda,real *dvdlambda,
275 rvec *v,tensor *vir,
276 t_nrnb *nrnb,int econq,bool bPscal,real veta, real vetanew)
278 bool bOK,bDump;
279 int start,homenr,nrend;
280 int i,j,d;
281 int ncons,error;
282 tensor rmdr;
283 rvec *vstor;
284 real invdt,vir_fac,t;
285 t_ilist *settle;
286 int nsettle;
287 t_pbc pbc;
288 char buf[22];
289 t_vetavars *vetavar;
291 if (econq == econqForceDispl && !EI_ENERGY_MINIMIZATION(ir->eI))
293 gmx_incons("constrain called for forces displacements while not doing energy minimization, can not do this while the LINCS and SETTLE constraint connection matrices are mass weighted");
296 bOK = TRUE;
297 bDump = FALSE;
299 start = md->start;
300 homenr = md->homenr;
301 nrend = start+homenr;
303 /* set constants for pressure control integration */
304 vetavar = init_vetavars(veta,vetanew,ir,ekind,bPscal);
306 if (ir->delta_t == 0)
308 invdt = 0;
310 else
312 invdt = 1/ir->delta_t;
315 if (ir->efep != efepNO && EI_DYNAMICS(ir->eI))
317 /* Set the constraint lengths for the step at which this configuration
318 * is meant to be. The invmasses should not be changed.
320 lambda += delta_step*ir->delta_lambda;
323 if (vir != NULL)
325 clear_mat(rmdr);
328 where();
329 if (constr->lincsd)
331 bOK = constrain_lincs(fplog,bLog,bEner,ir,step,constr->lincsd,md,cr,
332 x,xprime,min_proj,box,lambda,dvdlambda,
333 invdt,v,vir!=NULL,rmdr,
334 econq,nrnb,
335 constr->maxwarn,&constr->warncount_lincs);
336 if (!bOK && constr->maxwarn >= 0)
338 if (fplog != NULL)
340 fprintf(fplog,"Constraint error in algorithm %s at step %s\n",
341 econstr_names[econtLINCS],gmx_step_str(step,buf));
343 bDump = TRUE;
347 if (constr->nblocks > 0)
349 switch (econq) {
350 case (econqCoord):
351 bOK = bshakef(fplog,constr->shaked,
352 homenr,md->invmass,constr->nblocks,constr->sblock,
353 idef,ir,box,x,xprime,nrnb,
354 constr->lagr,lambda,dvdlambda,
355 invdt,v,vir!=NULL,rmdr,constr->maxwarn>=0,econq,vetavar);
356 break;
357 case (econqVeloc):
358 bOK = bshakef(fplog,constr->shaked,
359 homenr,md->invmass,constr->nblocks,constr->sblock,
360 idef,ir,box,x,min_proj,nrnb,
361 constr->lagr,lambda,dvdlambda,
362 invdt,NULL,vir!=NULL,rmdr,constr->maxwarn>=0,econq,vetavar);
363 break;
364 default:
365 gmx_fatal(FARGS,"Internal error, SHAKE called for constraining something else than coordinates");
366 break;
369 if (!bOK && constr->maxwarn >= 0)
371 if (fplog != NULL)
373 fprintf(fplog,"Constraint error in algorithm %s at step %s\n",
374 econstr_names[econtSHAKE],gmx_step_str(step,buf));
376 bDump = TRUE;
380 settle = &idef->il[F_SETTLE];
381 if (settle->nr > 0)
383 nsettle = settle->nr/2;
385 switch (econq)
387 case econqCoord:
388 csettle(constr->settled,
389 nsettle,settle->iatoms,x[0],xprime[0],
390 invdt,v[0],vir!=NULL,rmdr,&error,vetavar);
391 inc_nrnb(nrnb,eNR_SETTLE,nsettle);
392 if (v != NULL)
394 inc_nrnb(nrnb,eNR_CONSTR_V,nsettle*3);
396 if (vir != NULL)
398 inc_nrnb(nrnb,eNR_CONSTR_VIR,nsettle*3);
401 bOK = (error < 0);
402 if (!bOK && constr->maxwarn >= 0)
404 char buf[256];
405 sprintf(buf,
406 "\nstep " gmx_large_int_pfmt ": Water molecule starting at atom %d can not be "
407 "settled.\nCheck for bad contacts and/or reduce the timestep if appropriate.\n",
408 step,ddglatnr(cr->dd,settle->iatoms[error*2+1]));
409 if (fplog)
411 fprintf(fplog,"%s",buf);
413 fprintf(stderr,"%s",buf);
414 constr->warncount_settle++;
415 if (constr->warncount_settle > constr->maxwarn)
417 too_many_constraint_warnings(-1,constr->warncount_settle);
419 bDump = TRUE;
420 break;
421 case econqVeloc:
422 case econqDeriv:
423 case econqForce:
424 case econqForceDispl:
425 settle_proj(fplog,constr->settled,econq,
426 nsettle,settle->iatoms,x,
427 xprime,min_proj,vir!=NULL,rmdr,vetavar);
428 /* This is an overestimate */
429 inc_nrnb(nrnb,eNR_SETTLE,nsettle);
430 break;
431 case econqDeriv_FlexCon:
432 /* Nothing to do, since the are no flexible constraints in settles */
433 break;
434 default:
435 gmx_incons("Unknown constraint quantity for settle");
440 free_vetavars(vetavar);
442 if (vir != NULL)
444 switch (econq)
446 case econqCoord:
447 vir_fac = 0.5/(ir->delta_t*ir->delta_t);
448 break;
449 case econqVeloc:
450 vir_fac = 0.5/ir->delta_t;
451 break;
452 case econqForce:
453 case econqForceDispl:
454 vir_fac = 0.5;
455 break;
456 default:
457 vir_fac = 0;
458 gmx_incons("Unsupported constraint quantity for virial");
461 if (EI_VV(ir->eI))
463 vir_fac *= 2; /* only constraining over half the distance here */
465 for(i=0; i<DIM; i++)
467 for(j=0; j<DIM; j++)
469 (*vir)[i][j] = vir_fac*rmdr[i][j];
474 if (bDump)
476 dump_confs(fplog,step,constr->warn_mtop,start,homenr,cr,x,xprime,box);
479 if (econq == econqCoord)
481 if (ir->ePull == epullCONSTRAINT)
483 if (EI_DYNAMICS(ir->eI))
485 t = ir->init_t + (step + delta_step)*ir->delta_t;
487 else
489 t = ir->init_t;
491 set_pbc(&pbc,ir->ePBC,box);
492 pull_constraint(ir->pull,md,&pbc,cr,ir->delta_t,t,x,xprime,v,*vir);
494 if (constr->ed && delta_step > 0)
496 /* apply the essential dynamcs constraints here */
497 do_edsam(ir,step,md,cr,xprime,v,box,constr->ed);
501 return bOK;
504 real *constr_rmsd_data(struct gmx_constr *constr)
506 if (constr->lincsd)
507 return lincs_rmsd_data(constr->lincsd);
508 else
509 return NULL;
512 real constr_rmsd(struct gmx_constr *constr,bool bSD2)
514 if (constr->lincsd)
515 return lincs_rmsd(constr->lincsd,bSD2);
516 else
517 return 0;
520 static void make_shake_sblock_pd(struct gmx_constr *constr,
521 t_idef *idef,t_mdatoms *md)
523 int i,j,m,ncons;
524 int bstart,bnr;
525 t_blocka sblocks;
526 t_sortblock *sb;
527 t_iatom *iatom;
528 atom_id *inv_sblock;
530 /* Since we are processing the local topology,
531 * the F_CONSTRNC ilist has been concatenated to the F_CONSTR ilist.
533 ncons = idef->il[F_CONSTR].nr/3;
535 init_blocka(&sblocks);
536 gen_sblocks(NULL,md->start,md->start+md->homenr,idef,&sblocks,FALSE);
539 bstart=(idef->nodeid > 0) ? blocks->multinr[idef->nodeid-1] : 0;
540 nblocks=blocks->multinr[idef->nodeid] - bstart;
542 bstart = 0;
543 constr->nblocks = sblocks.nr;
544 if (debug)
545 fprintf(debug,"ncons: %d, bstart: %d, nblocks: %d\n",
546 ncons,bstart,constr->nblocks);
548 /* Calculate block number for each atom */
549 inv_sblock = make_invblocka(&sblocks,md->nr);
551 done_blocka(&sblocks);
553 /* Store the block number in temp array and
554 * sort the constraints in order of the sblock number
555 * and the atom numbers, really sorting a segment of the array!
557 #ifdef DEBUGIDEF
558 pr_idef(fplog,0,"Before Sort",idef);
559 #endif
560 iatom=idef->il[F_CONSTR].iatoms;
561 snew(sb,ncons);
562 for(i=0; (i<ncons); i++,iatom+=3) {
563 for(m=0; (m<3); m++)
564 sb[i].iatom[m] = iatom[m];
565 sb[i].blocknr = inv_sblock[iatom[1]];
568 /* Now sort the blocks */
569 if (debug) {
570 pr_sortblock(debug,"Before sorting",ncons,sb);
571 fprintf(debug,"Going to sort constraints\n");
574 qsort(sb,ncons,(size_t)sizeof(*sb),pcomp);
576 if (debug) {
577 pr_sortblock(debug,"After sorting",ncons,sb);
580 iatom=idef->il[F_CONSTR].iatoms;
581 for(i=0; (i<ncons); i++,iatom+=3)
582 for(m=0; (m<3); m++)
583 iatom[m]=sb[i].iatom[m];
584 #ifdef DEBUGIDEF
585 pr_idef(fplog,0,"After Sort",idef);
586 #endif
588 j=0;
589 snew(constr->sblock,constr->nblocks+1);
590 bnr=-2;
591 for(i=0; (i<ncons); i++) {
592 if (sb[i].blocknr != bnr) {
593 bnr=sb[i].blocknr;
594 constr->sblock[j++]=3*i;
597 /* Last block... */
598 constr->sblock[j++] = 3*ncons;
600 if (j != (constr->nblocks+1)) {
601 fprintf(stderr,"bstart: %d\n",bstart);
602 fprintf(stderr,"j: %d, nblocks: %d, ncons: %d\n",
603 j,constr->nblocks,ncons);
604 for(i=0; (i<ncons); i++)
605 fprintf(stderr,"i: %5d sb[i].blocknr: %5u\n",i,sb[i].blocknr);
606 for(j=0; (j<=constr->nblocks); j++)
607 fprintf(stderr,"sblock[%3d]=%5d\n",j,(int)constr->sblock[j]);
608 gmx_fatal(FARGS,"DEATH HORROR: "
609 "sblocks does not match idef->il[F_CONSTR]");
611 sfree(sb);
612 sfree(inv_sblock);
615 static void make_shake_sblock_dd(struct gmx_constr *constr,
616 t_ilist *ilcon,t_block *cgs,
617 gmx_domdec_t *dd)
619 int ncons,c,cg;
620 t_iatom *iatom;
622 if (dd->ncg_home+1 > constr->sblock_nalloc) {
623 constr->sblock_nalloc = over_alloc_dd(dd->ncg_home+1);
624 srenew(constr->sblock,constr->sblock_nalloc);
627 ncons = ilcon->nr/3;
628 iatom = ilcon->iatoms;
629 constr->nblocks = 0;
630 cg = 0;
631 for(c=0; c<ncons; c++) {
632 if (c == 0 || iatom[1] >= cgs->index[cg+1]) {
633 constr->sblock[constr->nblocks++] = 3*c;
634 while (iatom[1] >= cgs->index[cg+1])
635 cg++;
637 iatom += 3;
639 constr->sblock[constr->nblocks] = 3*ncons;
642 t_blocka make_at2con(int start,int natoms,
643 t_ilist *ilist,t_iparams *iparams,
644 bool bDynamics,int *nflexiblecons)
646 int *count,ncon,con,con_tot,nflexcon,ftype,i,a;
647 t_iatom *ia;
648 t_blocka at2con;
649 bool bFlexCon;
651 snew(count,natoms);
652 nflexcon = 0;
653 for(ftype=F_CONSTR; ftype<=F_CONSTRNC; ftype++) {
654 ncon = ilist[ftype].nr/3;
655 ia = ilist[ftype].iatoms;
656 for(con=0; con<ncon; con++) {
657 bFlexCon = (iparams[ia[0]].constr.dA == 0 &&
658 iparams[ia[0]].constr.dB == 0);
659 if (bFlexCon)
660 nflexcon++;
661 if (bDynamics || !bFlexCon) {
662 for(i=1; i<3; i++) {
663 a = ia[i] - start;
664 count[a]++;
667 ia += 3;
670 *nflexiblecons = nflexcon;
672 at2con.nr = natoms;
673 at2con.nalloc_index = at2con.nr+1;
674 snew(at2con.index,at2con.nalloc_index);
675 at2con.index[0] = 0;
676 for(a=0; a<natoms; a++) {
677 at2con.index[a+1] = at2con.index[a] + count[a];
678 count[a] = 0;
680 at2con.nra = at2con.index[natoms];
681 at2con.nalloc_a = at2con.nra;
682 snew(at2con.a,at2con.nalloc_a);
684 /* The F_CONSTRNC constraints have constraint numbers
685 * that continue after the last F_CONSTR constraint.
687 con_tot = 0;
688 for(ftype=F_CONSTR; ftype<=F_CONSTRNC; ftype++) {
689 ncon = ilist[ftype].nr/3;
690 ia = ilist[ftype].iatoms;
691 for(con=0; con<ncon; con++) {
692 bFlexCon = (iparams[ia[0]].constr.dA == 0 &&
693 iparams[ia[0]].constr.dB == 0);
694 if (bDynamics || !bFlexCon) {
695 for(i=1; i<3; i++) {
696 a = ia[i] - start;
697 at2con.a[at2con.index[a]+count[a]++] = con_tot;
700 con_tot++;
701 ia += 3;
705 sfree(count);
707 return at2con;
710 void set_constraints(struct gmx_constr *constr,
711 gmx_localtop_t *top,t_inputrec *ir,
712 t_mdatoms *md,t_commrec *cr)
714 t_idef *idef;
715 int ncons;
716 t_ilist *settle;
717 int iO,iH;
719 idef = &top->idef;
721 if (constr->ncon_tot > 0)
723 /* We are using the local topology,
724 * so there are only F_CONSTR constraints.
726 ncons = idef->il[F_CONSTR].nr/3;
728 /* With DD we might also need to call LINCS with ncons=0 for
729 * communicating coordinates to other nodes that do have constraints.
731 if (ir->eConstrAlg == econtLINCS)
733 set_lincs(idef,md,EI_DYNAMICS(ir->eI),cr,constr->lincsd);
735 if (ir->eConstrAlg == econtSHAKE)
737 if (cr->dd)
739 make_shake_sblock_dd(constr,&idef->il[F_CONSTR],&top->cgs,cr->dd);
741 else
743 make_shake_sblock_pd(constr,idef,md);
745 if (ncons > constr->lagr_nalloc)
747 constr->lagr_nalloc = over_alloc_dd(ncons);
748 srenew(constr->lagr,constr->lagr_nalloc);
751 constr->shaked = shake_init();
755 if (idef->il[F_SETTLE].nr > 0 && constr->settled == NULL)
757 settle = &idef->il[F_SETTLE];
758 iO = settle->iatoms[1];
759 iH = settle->iatoms[1]+1;
760 constr->settled =
761 settle_init(md->massT[iO],md->massT[iH],
762 md->invmass[iO],md->invmass[iH],
763 idef->iparams[settle->iatoms[0]].settle.doh,
764 idef->iparams[settle->iatoms[0]].settle.dhh);
767 /* Make a selection of the local atoms for essential dynamics */
768 if (constr->ed && cr->dd)
770 dd_make_local_ed_indices(cr->dd,constr->ed);
774 static void constr_recur(t_blocka *at2con,
775 t_ilist *ilist,t_iparams *iparams,bool bTopB,
776 int at,int depth,int nc,int *path,
777 real r0,real r1,real *r2max,
778 int *count)
780 int ncon1;
781 t_iatom *ia1,*ia2;
782 int c,con,a1;
783 bool bUse;
784 t_iatom *ia;
785 real len,rn0,rn1;
787 (*count)++;
789 ncon1 = ilist[F_CONSTR].nr/3;
790 ia1 = ilist[F_CONSTR].iatoms;
791 ia2 = ilist[F_CONSTRNC].iatoms;
793 /* Loop over all constraints connected to this atom */
794 for(c=at2con->index[at]; c<at2con->index[at+1]; c++) {
795 con = at2con->a[c];
796 /* Do not walk over already used constraints */
797 bUse = TRUE;
798 for(a1=0; a1<depth; a1++) {
799 if (con == path[a1])
800 bUse = FALSE;
802 if (bUse) {
803 ia = constr_iatomptr(ncon1,ia1,ia2,con);
804 /* Flexible constraints currently have length 0, which is incorrect */
805 if (!bTopB)
806 len = iparams[ia[0]].constr.dA;
807 else
808 len = iparams[ia[0]].constr.dB;
809 /* In the worst case the bond directions alternate */
810 if (nc % 2 == 0) {
811 rn0 = r0 + len;
812 rn1 = r1;
813 } else {
814 rn0 = r0;
815 rn1 = r1 + len;
817 /* Assume angles of 120 degrees between all bonds */
818 if (rn0*rn0 + rn1*rn1 + rn0*rn1 > *r2max) {
819 *r2max = rn0*rn0 + rn1*rn1 + r0*rn1;
820 if (debug) {
821 fprintf(debug,"Found longer constraint distance: r0 %5.3f r1 %5.3f rmax %5.3f\n", rn0,rn1,sqrt(*r2max));
822 for(a1=0; a1<depth; a1++)
823 fprintf(debug," %d %5.3f",
824 path[a1],
825 iparams[constr_iatomptr(ncon1,ia1,ia2,con)[0]].constr.dA);
826 fprintf(debug," %d %5.3f\n",con,len);
829 /* Limit the number of recursions to 1000*nc,
830 * so a call does not take more than a second,
831 * even for highly connected systems.
833 if (depth + 1 < nc && *count < 1000*nc) {
834 if (ia[1] == at)
835 a1 = ia[2];
836 else
837 a1 = ia[1];
838 /* Recursion */
839 path[depth] = con;
840 constr_recur(at2con,ilist,iparams,
841 bTopB,a1,depth+1,nc,path,rn0,rn1,r2max,count);
842 path[depth] = -1;
848 static real constr_r_max_moltype(FILE *fplog,
849 gmx_moltype_t *molt,t_iparams *iparams,
850 t_inputrec *ir)
852 int natoms,nflexcon,*path,at,count;
854 t_blocka at2con;
855 real r0,r1,r2maxA,r2maxB,rmax,lam0,lam1;
857 if (molt->ilist[F_CONSTR].nr == 0 &&
858 molt->ilist[F_CONSTRNC].nr == 0) {
859 return 0;
862 natoms = molt->atoms.nr;
864 at2con = make_at2con(0,natoms,molt->ilist,iparams,
865 EI_DYNAMICS(ir->eI),&nflexcon);
866 snew(path,1+ir->nProjOrder);
867 for(at=0; at<1+ir->nProjOrder; at++)
868 path[at] = -1;
870 r2maxA = 0;
871 for(at=0; at<natoms; at++) {
872 r0 = 0;
873 r1 = 0;
875 count = 0;
876 constr_recur(&at2con,molt->ilist,iparams,
877 FALSE,at,0,1+ir->nProjOrder,path,r0,r1,&r2maxA,&count);
879 if (ir->efep == efepNO) {
880 rmax = sqrt(r2maxA);
881 } else {
882 r2maxB = 0;
883 for(at=0; at<natoms; at++) {
884 r0 = 0;
885 r1 = 0;
886 count = 0;
887 constr_recur(&at2con,molt->ilist,iparams,
888 TRUE,at,0,1+ir->nProjOrder,path,r0,r1,&r2maxB,&count);
890 lam0 = ir->init_lambda;
891 if (EI_DYNAMICS(ir->eI))
892 lam0 += ir->init_step*ir->delta_lambda;
893 rmax = (1 - lam0)*sqrt(r2maxA) + lam0*sqrt(r2maxB);
894 if (EI_DYNAMICS(ir->eI)) {
895 lam1 = ir->init_lambda + (ir->init_step + ir->nsteps)*ir->delta_lambda;
896 rmax = max(rmax,(1 - lam1)*sqrt(r2maxA) + lam1*sqrt(r2maxB));
900 done_blocka(&at2con);
901 sfree(path);
903 return rmax;
906 real constr_r_max(FILE *fplog,gmx_mtop_t *mtop,t_inputrec *ir)
908 int mt;
909 real rmax;
911 rmax = 0;
912 for(mt=0; mt<mtop->nmoltype; mt++) {
913 rmax = max(rmax,
914 constr_r_max_moltype(fplog,&mtop->moltype[mt],
915 mtop->ffparams.iparams,ir));
918 if (fplog)
919 fprintf(fplog,"Maximum distance for %d constraints, at 120 deg. angles, all-trans: %.3f nm\n",1+ir->nProjOrder,rmax);
921 return rmax;
924 gmx_constr_t init_constraints(FILE *fplog,
925 gmx_mtop_t *mtop,t_inputrec *ir,
926 gmx_edsam_t ed,t_state *state,
927 t_commrec *cr)
929 int ncon,nset,nmol,settle_type,i,natoms,mt,nflexcon;
930 struct gmx_constr *constr;
931 char *env;
932 t_ilist *ilist;
933 gmx_mtop_ilistloop_t iloop;
935 ncon =
936 gmx_mtop_ftype_count(mtop,F_CONSTR) +
937 gmx_mtop_ftype_count(mtop,F_CONSTRNC);
938 nset = gmx_mtop_ftype_count(mtop,F_SETTLE);
940 if (ncon+nset == 0 && ir->ePull != epullCONSTRAINT && ed == NULL)
942 return NULL;
945 snew(constr,1);
947 constr->ncon_tot = ncon;
948 constr->nflexcon = 0;
949 if (ncon > 0)
951 constr->n_at2con_mt = mtop->nmoltype;
952 snew(constr->at2con_mt,constr->n_at2con_mt);
953 for(mt=0; mt<mtop->nmoltype; mt++)
955 constr->at2con_mt[mt] = make_at2con(0,mtop->moltype[mt].atoms.nr,
956 mtop->moltype[mt].ilist,
957 mtop->ffparams.iparams,
958 EI_DYNAMICS(ir->eI),&nflexcon);
959 for(i=0; i<mtop->nmolblock; i++)
961 if (mtop->molblock[i].type == mt)
963 constr->nflexcon += mtop->molblock[i].nmol*nflexcon;
968 if (constr->nflexcon > 0)
970 if (fplog)
972 fprintf(fplog,"There are %d flexible constraints\n",
973 constr->nflexcon);
974 if (ir->fc_stepsize == 0)
976 fprintf(fplog,"\n"
977 "WARNING: step size for flexible constraining = 0\n"
978 " All flexible constraints will be rigid.\n"
979 " Will try to keep all flexible constraints at their original length,\n"
980 " but the lengths may exhibit some drift.\n\n");
981 constr->nflexcon = 0;
984 if (constr->nflexcon > 0)
986 please_cite(fplog,"Hess2002");
990 if (ir->eConstrAlg == econtLINCS)
992 constr->lincsd = init_lincs(fplog,mtop,
993 constr->nflexcon,constr->at2con_mt,
994 DOMAINDECOMP(cr) && cr->dd->bInterCGcons,
995 ir->nLincsIter,ir->nProjOrder);
998 if (ir->eConstrAlg == econtSHAKE) {
999 if (DOMAINDECOMP(cr) && cr->dd->bInterCGcons)
1001 gmx_fatal(FARGS,"SHAKE is not supported with domain decomposition and constraint that cross charge group boundaries, use LINCS");
1003 if (constr->nflexcon)
1005 gmx_fatal(FARGS,"For this system also velocities and/or forces need to be constrained, this can not be done with SHAKE, you should select LINCS");
1007 please_cite(fplog,"Ryckaert77a");
1008 if (ir->bShakeSOR)
1010 please_cite(fplog,"Barth95a");
1015 if (nset > 0) {
1016 please_cite(fplog,"Miyamoto92a");
1018 /* Check that we have only one settle type */
1019 settle_type = -1;
1020 iloop = gmx_mtop_ilistloop_init(mtop);
1021 while (gmx_mtop_ilistloop_next(iloop,&ilist,&nmol))
1023 for (i=0; i<ilist[F_SETTLE].nr; i+=2)
1025 if (settle_type == -1)
1027 settle_type = ilist[F_SETTLE].iatoms[i];
1029 else if (ilist[F_SETTLE].iatoms[i] != settle_type)
1031 gmx_fatal(FARGS,"More than one settle type.\n"
1032 "Suggestion: change the least use settle constraints into 3 normal constraints.");
1038 constr->maxwarn = 999;
1039 env = getenv("GMX_MAXCONSTRWARN");
1040 if (env)
1042 constr->maxwarn = 0;
1043 sscanf(env,"%d",&constr->maxwarn);
1044 if (fplog)
1046 fprintf(fplog,
1047 "Setting the maximum number of constraint warnings to %d\n",
1048 constr->maxwarn);
1050 if (MASTER(cr))
1052 fprintf(stderr,
1053 "Setting the maximum number of constraint warnings to %d\n",
1054 constr->maxwarn);
1057 if (constr->maxwarn < 0 && fplog)
1059 fprintf(fplog,"maxwarn < 0, will not stop on constraint errors\n");
1061 constr->warncount_lincs = 0;
1062 constr->warncount_settle = 0;
1064 /* Initialize the essential dynamics sampling.
1065 * Put the pointer to the ED struct in constr */
1066 constr->ed = ed;
1067 if (ed != NULL)
1069 init_edsam(mtop,ir,cr,ed,state->x,state->box);
1072 constr->warn_mtop = mtop;
1074 return constr;
1077 t_blocka *atom2constraints_moltype(gmx_constr_t constr)
1079 return constr->at2con_mt;
1083 bool inter_charge_group_constraints(gmx_mtop_t *mtop)
1085 const gmx_moltype_t *molt;
1086 const t_block *cgs;
1087 const t_ilist *il;
1088 int mb;
1089 int nat,*at2cg,cg,a,ftype,i;
1090 bool bInterCG;
1092 bInterCG = FALSE;
1093 for(mb=0; mb<mtop->nmolblock && !bInterCG; mb++) {
1094 molt = &mtop->moltype[mtop->molblock[mb].type];
1096 if (molt->ilist[F_CONSTR].nr > 0 ||
1097 molt->ilist[F_CONSTRNC].nr > 0) {
1098 cgs = &molt->cgs;
1099 snew(at2cg,molt->atoms.nr);
1100 for(cg=0; cg<cgs->nr; cg++) {
1101 for(a=cgs->index[cg]; a<cgs->index[cg+1]; a++)
1102 at2cg[a] = cg;
1105 for(ftype=F_CONSTR; ftype<=F_CONSTRNC; ftype++) {
1106 il = &molt->ilist[ftype];
1107 for(i=0; i<il->nr && !bInterCG; i+=3) {
1108 if (at2cg[il->iatoms[i+1]] != at2cg[il->iatoms[i+2]])
1109 bInterCG = TRUE;
1112 sfree(at2cg);
1116 return bInterCG;