3 * This source code is part of
7 * GROningen MAchine for Chemical Simulations
10 * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
11 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
12 * Copyright (c) 2001-2004, The GROMACS development team,
13 * check out http://www.gromacs.org for more information.
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
20 * If you want to redistribute modifications, please consider that
21 * scientific software is very special. Version control is crucial -
22 * bugs must be traceable. We will be happy to consider code for
23 * inclusion in the official distribution, but derived work must not
24 * be called official GROMACS. Details are found in the README & COPYING
25 * files - if they are missing, get the official version at www.gromacs.org.
27 * To help us fund GROMACS development, we humbly ask that you cite
28 * the papers on the package - you can find them in the top README file.
30 * For more info, check our website at http://www.gromacs.org
33 * Green Red Orange Magenta Azure Cyan Skyblue
50 #include "gmx_fatal.h"
57 int gmx_rotacf(int argc
,char *argv
[])
59 const char *desc
[] = {
60 "g_rotacf calculates the rotational correlation function",
61 "for molecules. Three atoms (i,j,k) must be given in the index",
62 "file, defining two vectors ij and jk. The rotational acf",
63 "is calculated as the autocorrelation function of the vector",
64 "n = ij x jk, i.e. the cross product of the two vectors.",
65 "Since three atoms span a plane, the order of the three atoms",
66 "does not matter. Optionally, controlled by the -d switch, you can",
67 "calculate the rotational correlation function for linear molecules",
68 "by specifying two atoms (i,j) in the index file.",
71 "g_rotacf -P 1 -nparm 2 -fft -n index -o rotacf-x-P1",
72 "-fa expfit-x-P1 -beginfit 2.5 -endfit 20.0[PAR]",
73 "This will calculate the rotational correlation function using a first",
74 "order Legendre polynomial of the angle of a vector defined by the index",
75 "file. The correlation function will be fitted from 2.5 ps till 20.0 ps",
76 "to a two parameter exponential.",
81 static gmx_bool bVec
= FALSE
,bAver
=TRUE
;
84 { "-d", FALSE
, etBOOL
, {&bVec
},
85 "Use index doublets (vectors) for correlation function instead of triplets (planes)" },
86 { "-aver",FALSE
, etBOOL
, {&bAver
},
87 "Average over molecules" }
98 int i
,m
,teller
,n_alloc
,natoms
,nvec
,ai
,aj
,ak
;
101 gmx_rmpbc_t gpbc
=NULL
;
105 { efTRX
, "-f", NULL
, ffREAD
},
106 { efTPX
, NULL
, NULL
, ffREAD
},
107 { efNDX
, NULL
, NULL
, ffREAD
},
108 { efXVG
, "-o", "rotacf", ffWRITE
}
110 #define NFILE asize(fnm)
116 CopyRight(stderr
,argv
[0]);
118 ppa
= add_acf_pargs(&npargs
,pa
);
120 parse_common_args(&argc
,argv
,PCA_CAN_VIEW
| PCA_CAN_TIME
| PCA_BE_NICE
,
121 NFILE
,fnm
,npargs
,ppa
,asize(desc
),desc
,0,NULL
,&oenv
);
123 rd_index(ftp2fn(efNDX
,NFILE
,fnm
),1,&isize
,&index
,&grpname
);
130 if (((isize
% 3) != 0) && !bVec
)
131 gmx_fatal(FARGS
,"number of index elements not multiple of 3, "
132 "these can not be atom triplets\n");
133 if (((isize
% 2) != 0) && bVec
)
134 gmx_fatal(FARGS
,"number of index elements not multiple of 2, "
135 "these can not be atom doublets\n");
137 top
=read_top(ftp2fn(efTPX
,NFILE
,fnm
),&ePBC
);
140 for (i
=0; (i
<nvec
); i
++)
144 natoms
=read_first_x(oenv
,&status
,ftp2fn(efTRX
,NFILE
,fnm
),&t
,&x
,box
);
147 gpbc
= gmx_rmpbc_init(&(top
->idef
),ePBC
,natoms
,box
);
149 /* Start the loop over frames */
153 if (teller
>= n_alloc
) {
155 for (i
=0; (i
<nvec
); i
++)
156 srenew(c1
[i
],DIM
*n_alloc
);
160 /* Remove periodicity */
161 gmx_rmpbc_copy(gpbc
,natoms
,box
,x
,x_s
);
163 /* Compute crossproducts for all vectors, if triplets.
164 * else, just get the vectors in case of doublets.
167 for (i
=0; (i
<nvec
); i
++) {
171 rvec_sub(x_s
[ai
],x_s
[aj
],xij
);
172 rvec_sub(x_s
[aj
],x_s
[ak
],xjk
);
174 for(m
=0; (m
<DIM
); m
++)
175 c1
[i
][DIM
*teller
+m
]=n
[m
];
179 for (i
=0; (i
<nvec
); i
++) {
182 rvec_sub(x_s
[ai
],x_s
[aj
],n
);
183 for(m
=0; (m
<DIM
); m
++)
184 c1
[i
][DIM
*teller
+m
]=n
[m
];
187 /* Increment loop counter */
189 } while (read_next_x(oenv
,status
,&t
,natoms
,x
,box
));
191 fprintf(stderr
,"\nDone with trajectory\n");
193 gmx_rmpbc_done(gpbc
);
196 /* Autocorrelation function */
198 fprintf(stderr
,"Not enough frames for correlation function\n");
200 dt
=(t1
- t0
)/(teller
-1);
204 do_autocorr(ftp2fn(efXVG
,NFILE
,fnm
),oenv
,"Rotational Correlation Function",
205 teller
,nvec
,c1
,dt
,mode
,bAver
);
208 do_view(oenv
,ftp2fn(efXVG
,NFILE
,fnm
),NULL
);