1 /* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
4 * This source code is part of
8 * GROningen MAchine for Chemical Simulations
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
34 * GROningen Mixture of Alchemy and Childrens' Stories
54 typedef struct gmx_rmpbc
{
62 static t_graph
*gmx_rmpbc_get_graph(gmx_rmpbc_t gpbc
,int ePBC
,int natoms
)
67 if (ePBC
== epbcNONE
|| gpbc
->idef
->ntypes
<= 0)
73 for(i
=0; i
<gpbc
->ngraph
; i
++)
75 if (natoms
== gpbc
->graph
[i
].natoms
)
82 /* We'd like to check with the number of atoms in the topology,
83 * but we don't have that available.
84 * So we check against the number of atoms that gmx_rmpbc_init
87 if (natoms
> gpbc
->natoms_init
)
89 gmx_fatal(FARGS
,"Structure or trajectory file has more atoms (%d) than the topology (%d)",natoms
,gpbc
->natoms_init
);
92 srenew(gpbc
->graph
,gpbc
->ngraph
);
93 gr
= &gpbc
->graph
[gpbc
->ngraph
-1];
95 gr
->gr
= mk_graph(NULL
,gpbc
->idef
,0,natoms
,FALSE
,FALSE
);
101 gmx_rmpbc_t
gmx_rmpbc_init(t_idef
*idef
,int ePBC
,int natoms
,
108 gpbc
->natoms_init
= natoms
;
110 /* This sets pbc when we now it,
111 * otherwise we guess it from the instantaneous box in the trajectory.
116 if (gpbc
->idef
->ntypes
<= 0)
120 "WARNING: if there are broken molecules in the trajectory file,\n"
121 " they can not be made whole without a run input file\n\n");
127 void gmx_rmpbc_done(gmx_rmpbc_t gpbc
)
131 for(i
=0; i
<gpbc
->ngraph
; i
++)
133 done_graph(gpbc
->graph
[i
].gr
);
135 if (gpbc
->graph
!= NULL
)
141 static int gmx_rmpbc_ePBC(gmx_rmpbc_t gpbc
,matrix box
)
149 return guess_ePBC(box
);
153 void gmx_rmpbc(gmx_rmpbc_t gpbc
,int natoms
,matrix box
,rvec x
[])
158 ePBC
= gmx_rmpbc_ePBC(gpbc
,box
);
159 gr
= gmx_rmpbc_get_graph(gpbc
,ePBC
,natoms
);
162 mk_mshift(stdout
,gr
,ePBC
,box
,x
);
167 void gmx_rmpbc_copy(gmx_rmpbc_t gpbc
,int natoms
,matrix box
,rvec x
[],rvec x_s
[])
173 ePBC
= gmx_rmpbc_ePBC(gpbc
,box
);
174 gr
= gmx_rmpbc_get_graph(gpbc
,ePBC
,natoms
);
177 mk_mshift(stdout
,gr
,ePBC
,box
,x
);
178 shift_x(gr
,box
,x
,x_s
);
182 for(i
=0; i
<natoms
; i
++)
184 copy_rvec(x
[i
],x_s
[i
]);
189 void gmx_rmpbc_trxfr(gmx_rmpbc_t gpbc
,t_trxframe
*fr
)
194 if (fr
->bX
&& fr
->bBox
)
196 ePBC
= gmx_rmpbc_ePBC(gpbc
,fr
->box
);
197 gr
= gmx_rmpbc_get_graph(gpbc
,ePBC
,fr
->natoms
);
200 mk_mshift(stdout
,gr
,ePBC
,fr
->box
,fr
->x
);
201 shift_x(gr
,fr
->box
,fr
->x
,fr
->x
);
206 void rm_gropbc(t_atoms
*atoms
,rvec x
[],matrix box
)
211 /* check periodic boundary */
212 for(n
=1;(n
<atoms
->nr
);n
++)
214 for(m
=DIM
-1; m
>=0; m
--)
216 dist
= x
[n
][m
]-x
[n
-1][m
];
217 if (fabs(dist
) > 0.9*box
[m
][m
])
223 x
[n
][d
] -= box
[m
][d
];
230 x
[n
][d
] += box
[m
][d
];