ReferencePME.cpp 25.9 KB
Newer Older
1
/*
2
 * Reference implementation of PME reciprocal space interactions.
3
 *
4
5
6
 * Copyright (c) 2009, Erik Lindahl, Rossen Apostolov, Szilard Pall
 * All rights reserved.
 * Contact: lindahl@cbr.su.se Stockholm University, Sweden.
7
8
 *
 * Redistribution and use in source and binary forms, with or without
9
10
 * modification, are permitted provided that the following conditions are met:
 *
11
12
13
14
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer. Redistributions in binary
 * form must reproduce the above copyright notice, this list of conditions and
 * the following disclaimer in the documentation and/or other materials provided
15
 * with the distribution.
16
17
 * Neither the name of the author/university nor the names of its contributors may
 * be used to endorse or promote products derived from this software without
18
19
 * specific prior written permission.
 *
20
21
22
23
24
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
26
 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
27
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29
30
31
32
33
34
35
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <math.h>
#include <stdio.h>
#include <stdlib.h>

36
#include "ReferencePME.h"
37
38
#include "fftpack.h"

39
40
using std::vector;
using OpenMM::RealVec;
41
42
43
44
45
46

typedef int    ivec[3];


struct pme
{
Peter Eastman's avatar
Peter Eastman committed
47
48
    int          natoms;
    RealOpenMM       ewaldcoeff;
49

Peter Eastman's avatar
Peter Eastman committed
50
    t_complex *  grid;                 /* Memory for the grid we spread charges on.
51
52
53
                                        * Element (i,j,k) is accessed as:
                                        * grid[i*ngrid[1]*ngrid[2] + j*ngrid[2] + k]
                                        */
Peter Eastman's avatar
Peter Eastman committed
54
55
    int          ngrid[3];             /* Total grid dimensions (all data is complex!) */
    fftpack_t    fftplan;              /* Handle to fourier transform setup  */
56

Peter Eastman's avatar
Peter Eastman committed
57
    int          order;                /* PME interpolation order. Almost always 4 */
58

59
    /* Data for bspline interpolation, see the Essman PME paper */
Peter Eastman's avatar
Peter Eastman committed
60
61
62
    RealOpenMM *     bsplines_moduli[3];   /* 3 pointers, to x/y/z bspline moduli, each of length ngrid[x/y/z]   */
    RealOpenMM *     bsplines_theta[3];    /* each of x/y/z has length order*natoms */
    RealOpenMM *     bsplines_dtheta[3];   /* each of x/y/z has length order*natoms */
63

Peter Eastman's avatar
Peter Eastman committed
64
    ivec *       particleindex;        /* Array of length natoms. Each element is
65
66
67
                                        * an ivec (3 ints) that specify the grid
                                        * indices for that particular atom. Updated every step!
                                        */
68
    rvec *       particlefraction;     /* Array of length natoms. Fractional offset in the grid for
69
70
                                        * each atom in all three dimensions.
                                        */
71

72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
    /* Further explanation of index/fraction:
     *
     * Assume we have a cell of size 10*10*10nm, and a total grid dimension of 100*100*100 cells.
     * In other words, each cell is 0.1*0.1*0.1 nm.
     *
     * If particle i has coordinates { 0.543 , 6.235 , -0.73 }, we will get:
     *
     * particleindex[i]    = { 5 , 62 , 92 }         (-0.73 + 10 = 9.27, we always apply PBC for grid calculations!)
     * particlefraction[i] = { 0.43 , 0.35 , 0.7 }   ( this is the fraction of the cell length where the atom is)
     *
     * (The reason for precaculating / storing these is that it gets a bit more complex for triclinic cells :-)
     *
     * In the current code version we might assume that a particle is not more than a whole box length away from
     * the central cell, i.e., in this case we would assume all coordinates fall in -10 nm < x,y,z < 20 nm.
     */
87

Peter Eastman's avatar
Peter Eastman committed
88
    RealOpenMM       epsilon_r;             /* Dielectric coefficient to use, typically 1.0 */
89
};
90
91
92
93
94
95
96


/* Internal setup routines */



/* Only called once from init_pme(), performance does not matter! */
97
static void
98
99
pme_calculate_bsplines_moduli(pme_t pme)
{
Peter Eastman's avatar
Peter Eastman committed
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
    int       nmax;
    int       i,j,k,l,d;
    int       order;
    int       ndata;
    RealOpenMM *  data;
    RealOpenMM *  ddata;
    RealOpenMM *  bsplines_data;
    RealOpenMM    div;
    RealOpenMM    sc,ss,arg;

    nmax = 0;
    for(d=0;d<3;d++)
    {
        nmax = (pme->ngrid[d] > nmax) ? pme->ngrid[d] : nmax;
        pme->bsplines_moduli[d] = (RealOpenMM *) malloc(sizeof(RealOpenMM)*pme->ngrid[d]);
115
    }
116

Peter Eastman's avatar
Peter Eastman committed
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
    order = pme->order;

    /* temp storage in this routine */
    data          = (RealOpenMM *) malloc(sizeof(RealOpenMM)*order);
    ddata         = (RealOpenMM *) malloc(sizeof(RealOpenMM)*order);
    bsplines_data = (RealOpenMM *) malloc(sizeof(RealOpenMM)*nmax);

    data[order-1]=0;
    data[1]=0;
    data[0]=1;

    for(k=3;k<order;k++)
    {
        div=(RealOpenMM) (1.0/(k-1.0));
        data[k-1]=0;
        for(l=1;l<(k-1);l++)
        {
            data[k-l-1]=div*(l*data[k-l-2]+(k-l)*data[k-l-1]);
        }
        data[0]=div*data[0];
    }

    /* differentiate */
    ddata[0]=-data[0];
    for(k=1;k<order;k++)
    {
        ddata[k]=data[k-1]-data[k];
    }

    div=(RealOpenMM) (1.0/(order-1));
    data[order-1]=0;

    for(l=1;l<(order-1);l++)
    {
        data[order-l-1]=div*(l*data[order-l-2]+(order-l)*data[order-l-1]);
    }
    data[0]=div*data[0];

    for(i=0;i<nmax;i++)
    {
        bsplines_data[i]=0;
    }
    for(i=1;i<=order;i++)
    {
        bsplines_data[i]=data[i-1];
    }

    /* Evaluate the actual bspline moduli for X/Y/Z */
    for(d=0;d<3;d++)
    {
        ndata = pme->ngrid[d];
        for(i=0;i<ndata;i++)
        {
            sc=ss=0;
            for(j=0;j<ndata;j++)
            {
                arg=(RealOpenMM) ((2.0*M_PI*i*j)/ndata);
                sc+=bsplines_data[j]*cos(arg);
                ss+=bsplines_data[j]*sin(arg);
            }
            pme->bsplines_moduli[d][i]=sc*sc+ss*ss;
        }
        for(i=0;i<ndata;i++)
        {
            if(pme->bsplines_moduli[d][i]<1.0e-7)
            {
                pme->bsplines_moduli[d][i]=(pme->bsplines_moduli[d][i-1]+pme->bsplines_moduli[d][i+1])/2;
            }
        }
    }

    /* Release temp storage */
    free(data);
    free(ddata);
    free(bsplines_data);
192
193
194
195
196
197
}



static void
pme_update_grid_index_and_fraction(pme_t    pme,
198
                                   vector<RealVec>& atomCoordinates,
Peter Eastman's avatar
Peter Eastman committed
199
                                   const RealOpenMM   periodicBoxSize[3])
200
{
Peter Eastman's avatar
Peter Eastman committed
201
202
203
204
205
206
207
208
209
210
    int    i;
    int    d;
    RealOpenMM t;
    int    ti;

    for(i=0;i<pme->natoms;i++)
    {
        for(d=0;d<3;d++)
        {
            /* Index calculation (Look mom, no conditionals!):
211
212
213
214
             *
             * Both for Cuda and modern CPUs it is nice to avoid conditionals, but we still need to apply periodic boundary conditions.
             * Instead of having loops to add/subtract the box dimension, we do it this way:
             *
Peter Eastman's avatar
Peter Eastman committed
215
             * 1. First add the box size, to make sure this atom coordinate isnt -0.1 or something.
216
             *    After this we assume all fractional box positions are *positive*.
217
             *    The reason for this is that we always want to round coordinates _down_ to get
218
219
220
             *    their grid index, and when taking the integer part of -3.4 we would get -3, not -4 as we want.
             *    Since we anyway need the grid indices to fall in the central box, it is more convenient
             *    to first manipulate the coordinates to be positive.
Peter Eastman's avatar
Peter Eastman committed
221
             * 2. Convert to integer grid index
222
223
224
225
226
227
228
229
             *    Since we have added a whole box unit in step 1, this index might actually be larger than
             *    the grid dimension. Examples, assuming 10*10*10nm box and grid dimension 100*100*100 (spacing 0.1 nm):
             *
             *    coordinate is { 0.543 , 6.235 , -0.73 }
             *
             *    x[i][d]/box[d]                      becomes   { 0.0543 , 0.6235 , -0.073 }
             *    (x[i][d]/box[d] + 1.0)              becomes   { 1.0543 , 1.6235 , 0.927 }
             *    (x[i][d]/box[d] + 1.0)*ngrid[d]     becomes   { 105.43 , 162.35 , 92.7 }
230
             *
231
232
233
234
             *    integer part is now { 105 , 162 , 92 }
             *
             *    The fraction is calculates as t-ti, which becomes { 0.43 , 0.35 , 0.7 }
             *
Peter Eastman's avatar
Peter Eastman committed
235
             * 3. Take the first integer index part (which can be larger than the grid) modulo the grid dimension
236
             *
237
             *    Now we get { 5 , 62 , 92 }
238
239
240
241
242
243
244
             *
             *    Voila, both index and fraction, entirely without conditionals. The one limitation here is that
             *    we only add one box length, so if the particle had a coordinate <=-10.0, we would be screwed.
             *    In principle we can of course add 100.0, but that just moves the problem, it doesnt solve it.
             *    In practice, MD programs will apply PBC to reset particles inside the central box to avoid
             *    numerical problems, so this shouldnt cause any problems.
             *    (And, by adding 100.0 box lengths, we would lose a bit of numerical accuracy here!)
Peter Eastman's avatar
Peter Eastman committed
245
             */
246
247
248
            RealOpenMM coord = atomCoordinates[i][d];
            coord -= floor(coord/periodicBoxSize[d])*periodicBoxSize[d];
            t  = (coord / periodicBoxSize[d])*pme->ngrid[d];
Peter Eastman's avatar
Peter Eastman committed
249
250
251
252
253
254
            ti = (int) t;

            pme->particlefraction[i][d] = t - ti;
            pme->particleindex[i][d]    = ti % pme->ngrid[d];
        }
    }
255
256
257
}


258
/* Ugly bspline calculation taken from Tom Dardens reference equations.
259
260
261
262
 * This probably very sub-optimal in Cuda? Separate kernel?
 *
 * In practice, it might help to require order=4 for the cuda port.
 */
263
static void
264
265
pme_update_bsplines(pme_t    pme)
{
Peter Eastman's avatar
Peter Eastman committed
266
267
268
269
270
    int       i,j,k,l;
    int       order;
    RealOpenMM    dr,div;
    RealOpenMM *  data;
    RealOpenMM *  ddata;
271

Peter Eastman's avatar
Peter Eastman committed
272
    order = pme->order;
273
274

    for(i=0; (i<pme->natoms); i++)
Peter Eastman's avatar
Peter Eastman committed
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
    {
        for(j=0; j<3; j++)
        {
            /* dr is relative offset from lower cell limit */
            dr = pme->particlefraction[i][j];

            data  = &(pme->bsplines_theta[j][i*order]);
            ddata = &(pme->bsplines_dtheta[j][i*order]);
            data[order-1] = 0;
            data[1]       = dr;
            data[0]       = 1-dr;

            for(k=3; k<order; k++)
            {
                div = (RealOpenMM) (1.0/(k-1.0));
                data[k-1] = div*dr*data[k-2];
                for(l=1; l<(k-1); l++)
                {
                    data[k-l-1] = div*((dr+l)*data[k-l-2]+(k-l-dr)*data[k-l-1]);
                }
                data[0] = div*(1-dr)*data[0];
            }

            /* differentiate */
            ddata[0] = -data[0];

            for(k=1; k<order; k++)
            {
                ddata[k] = data[k-1]-data[k];
            }

            div           = (RealOpenMM) (1.0/(order-1));
            data[order-1] = div*dr*data[order-2];

            for(l=1; l<(order-1); l++)
            {
                data[order-l-1] = div*((dr+l)*data[order-l-2]+(order-l-dr)*data[order-l-1]);
            }
            data[0] = div*(1-dr)*data[0];
        }
315
316
317
318
319
320
    }
}


static void
pme_grid_spread_charge(pme_t      pme,
Peter Eastman's avatar
Peter Eastman committed
321
                       RealOpenMM **   atomParameters)
322
323
{
        static const int   QIndex = 2; // atom charges are stored in atomParameters[atomID][2]
Peter Eastman's avatar
Peter Eastman committed
324
325
326
327
328
329
330
331
332
333
334
335
    int       order;
    int       i;
    int       ix,iy,iz;
    int       x0index,y0index,z0index;
    int       xindex,yindex,zindex;
    int       index;
    RealOpenMM    q;
    RealOpenMM *  thetax;
    RealOpenMM *  thetay;
    RealOpenMM *  thetaz;

    order = pme->order;
336

337
    /* Reset the grid */
Peter Eastman's avatar
Peter Eastman committed
338
339
340
341
    for(i=0;i<pme->ngrid[0]*pme->ngrid[1]*pme->ngrid[2];i++)
    {
        pme->grid[i].re = pme->grid[i].im = 0;
    }
342

Peter Eastman's avatar
Peter Eastman committed
343
344
345
    for(i=0;i<pme->natoms;i++)
    {
        q = atomParameters[i][QIndex];
346

347
        /* Grid index for the actual atom position */
Peter Eastman's avatar
Peter Eastman committed
348
349
350
        x0index = pme->particleindex[i][0];
        y0index = pme->particleindex[i][1];
        z0index = pme->particleindex[i][2];
351

352
        /* Bspline factors for this atom in each dimension , calculated from fractional coordinates */
Peter Eastman's avatar
Peter Eastman committed
353
354
355
        thetax  = &(pme->bsplines_theta[0][i*order]);
        thetay  = &(pme->bsplines_theta[1][i*order]);
        thetaz  = &(pme->bsplines_theta[2][i*order]);
356

357
358
359
        /* Loop over norder*norder*norder (typically 4*4*4) neighbor cells.
         *
         * As a neat optimization, we only spread in the forward direction, but apply PBC!
360
         *
361
         * Since we are going to do an FFT on the grid, it doesnt matter where the data is,
362
         * in frequency space the result will be the same.
363
364
365
366
367
         *
         * So, the influence function (bsplines) will probably be something like (0.15,0.35,0.35,0.15),
         * with largest weight 2-3 steps forward (you dont need to understand that for the implementation :-)
         * Effectively, you can look at this as translating the entire grid.
         *
368
         * Why do we do this stupid thing?
369
         *
370
         * 1) The loops get much simpler
371
372
373
         * 2) Just looking forward will hopefully get us more cache hits
         * 3) When we parallelize things, we only need to communicate in one direction instead of two!
         */
374

Peter Eastman's avatar
Peter Eastman committed
375
376
        for(ix=0;ix<order;ix++)
        {
377
            /* Calculate index, apply PBC so we spread to index 0/1/2 when a particle is close to the upper limit of the grid */
Peter Eastman's avatar
Peter Eastman committed
378
            xindex = (x0index + ix) % pme->ngrid[0];
379

Peter Eastman's avatar
Peter Eastman committed
380
381
382
            for(iy=0;iy<order;iy++)
            {
                yindex = (y0index + iy) % pme->ngrid[1];
383

Peter Eastman's avatar
Peter Eastman committed
384
385
386
387
                for(iz=0;iz<order;iz++)
                {
                    /* Can be optimized, but we keep it simple here */
                    zindex               = (z0index + iz) % pme->ngrid[2];
388
                    /* Calculate index in the charge grid */
Peter Eastman's avatar
Peter Eastman committed
389
                    index                = xindex*pme->ngrid[1]*pme->ngrid[2] + yindex*pme->ngrid[2] + zindex;
390
                    /* Add the charge times the bspline spread/interpolation factors to this grid position */
Peter Eastman's avatar
Peter Eastman committed
391
392
393
394
395
                    pme->grid[index].re += q*thetax[ix]*thetay[iy]*thetaz[iz];
                }
            }
        }
    }
396
397
398
399
400
401
}



static void
pme_reciprocal_convolution(pme_t     pme,
Peter Eastman's avatar
Peter Eastman committed
402
403
404
                           const RealOpenMM    periodicBoxSize[3],
                           RealOpenMM *  energy,
                           RealOpenMM    pme_virial[3][3])
405
{
Peter Eastman's avatar
Peter Eastman committed
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
    int kx,ky,kz;
    int nx,ny,nz;
    RealOpenMM mx,my,mz;
    RealOpenMM mhx,mhy,mhz,m2;
    RealOpenMM one_4pi_eps;
    RealOpenMM virxx,virxy,virxz,viryy,viryz,virzz;
    RealOpenMM bx,by,bz;
    RealOpenMM d1,d2;
    RealOpenMM eterm,vfactor,struct2,ets2;
    RealOpenMM esum;
    RealOpenMM factor;
    RealOpenMM denom;
    RealOpenMM boxfactor;
    RealOpenMM maxkx,maxky,maxkz;

    t_complex *ptr;

    nx = pme->ngrid[0];
    ny = pme->ngrid[1];
    nz = pme->ngrid[2];

    one_4pi_eps = (RealOpenMM) (ONE_4PI_EPS0/pme->epsilon_r);
    factor = (RealOpenMM) (M_PI*M_PI/(pme->ewaldcoeff*pme->ewaldcoeff));
    boxfactor = (RealOpenMM) (M_PI*periodicBoxSize[0]*periodicBoxSize[1]*periodicBoxSize[2]);

    esum = 0;
    virxx = 0;
    virxy = 0;
    virxz = 0;
    viryy = 0;
    viryz = 0;
    virzz = 0;

    maxkx = (RealOpenMM) ((nx+1)/2);
    maxky = (RealOpenMM) ((ny+1)/2);
    maxkz = (RealOpenMM) ((nz+1)/2);
442
443
444
445

    for(kx=0;kx<nx;kx++)
    {
        /* Calculate frequency. Grid indices in the upper half correspond to negative frequencies! */
Peter Eastman's avatar
Peter Eastman committed
446
        mx  = (RealOpenMM) ((kx<maxkx) ? kx : (kx-nx));
447
448
449
450
451
452
        mhx = mx/periodicBoxSize[0];
        bx  = boxfactor*pme->bsplines_moduli[0][kx];

        for(ky=0;ky<ny;ky++)
        {
            /* Calculate frequency. Grid indices in the upper half correspond to negative frequencies! */
Peter Eastman's avatar
Peter Eastman committed
453
            my  = (RealOpenMM) ((ky<maxky) ? ky : (ky-ny));
454
455
            mhy = my/periodicBoxSize[1];
            by  = pme->bsplines_moduli[1][ky];
456

Peter Eastman's avatar
Peter Eastman committed
457
458
            for(kz=0;kz<nz;kz++)
            {
459
460
461
462
463
464
465
466
                /* If the net charge of the system is 0.0, there will not be any DC (direct current, zero frequency) component. However,
                 * we can still handle charged systems through a charge correction, in which case the DC
                 * component should be excluded from recprocal space. We will anyway run into problems below when dividing with the
                 * frequency if it is zero...
                 *
                 * In cuda you could probably work around this by setting something to 0.0 instead, but the short story is that we
                 * should skip the zero frequency case!
                 */
Peter Eastman's avatar
Peter Eastman committed
467
468
469
470
                if (kx==0 && ky==0 && kz==0)
                {
                    continue;
                }
471
472

                /* Calculate frequency. Grid indices in the upper half correspond to negative frequencies! */
Peter Eastman's avatar
Peter Eastman committed
473
474
                mz        = (RealOpenMM) ((kz<maxkz) ? kz : (kz-nz));
                mhz       = mz/periodicBoxSize[2];
475
476

                /* Pointer to the grid cell in question */
Peter Eastman's avatar
Peter Eastman committed
477
                ptr       = pme->grid + kx*ny*nz + ky*nz + kz;
478
479

                /* Get grid data for this frequency */
Peter Eastman's avatar
Peter Eastman committed
480
481
                d1        = ptr->re;
                d2        = ptr->im;
482

483
                /* Calculate the convolution - see the Essman/Darden paper for the equation! */
Peter Eastman's avatar
Peter Eastman committed
484
485
486
                m2        = mhx*mhx+mhy*mhy+mhz*mhz;
                bz        = pme->bsplines_moduli[2][kz];
                denom     = m2*bx*by*bz;
487

Peter Eastman's avatar
Peter Eastman committed
488
                eterm     = one_4pi_eps*exp(-factor*m2)/denom;
489
490

                /* write back convolution data to grid */
Peter Eastman's avatar
Peter Eastman committed
491
492
                ptr->re   = d1*eterm;
                ptr->im   = d2*eterm;
493

Peter Eastman's avatar
Peter Eastman committed
494
                struct2   = (d1*d1+d2*d2);
495

Peter Eastman's avatar
Peter Eastman committed
496
497
498
                /* Long-range PME contribution to the energy for this frequency */
                ets2      = eterm*struct2;
                esum     += ets2;
499

Peter Eastman's avatar
Peter Eastman committed
500
501
502
                /* PME long-range contribution to atomic virial. Since it is symmetric, we only calculate half the matrix inside this loop. */
                vfactor   = (factor*m2+1)*2/m2;
                virxx    += ets2*(vfactor*mhx*mhx-1);
503
504
                virxy    += ets2*vfactor*mhx*mhy;
                virxz    += ets2*vfactor*mhx*mhz;
Peter Eastman's avatar
Peter Eastman committed
505
                viryy    += ets2*(vfactor*mhy*mhy-1);
506
                viryz    += ets2*vfactor*mhy*mhz;
Peter Eastman's avatar
Peter Eastman committed
507
508
509
510
511
512
513
514
515
516
                virzz    += ets2*(vfactor*mhz*mhz-1);
            }
        }
    }
    pme_virial[0][0] = (RealOpenMM) (0.25*virxx);
    pme_virial[1][1] = (RealOpenMM) (0.25*viryy);
    pme_virial[2][2] = (RealOpenMM) (0.25*virzz);
    pme_virial[0][1] = pme_virial[1][0] = (RealOpenMM) (0.25*virxy);
    pme_virial[0][2] = pme_virial[2][0] = (RealOpenMM) (0.25*virxz);
    pme_virial[1][2] = pme_virial[2][1] = (RealOpenMM) (0.25*viryz);
517

518
    /* The factor 0.5 is nothing special, but it is better to have it here than inside the loop :-) */
519
    *energy = (RealOpenMM) (0.5*esum);
520
521
522
523
524
}


static void
pme_grid_interpolate_force(pme_t      pme,
Peter Eastman's avatar
Peter Eastman committed
525
526
                           const RealOpenMM     periodicBoxSize[3],
                           RealOpenMM **   atomParameters,
527
                           vector<RealVec>&   forces)
528
529
{
        static const int   QIndex = 2; // atom charges are stored in atomParameters[atomID][2]
Peter Eastman's avatar
Peter Eastman committed
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
    int       i;
    int       ix,iy,iz;
    int       x0index,y0index,z0index;
    int       xindex,yindex,zindex;
    int       index;
    int       order;
    RealOpenMM    q;
    RealOpenMM *  thetax;
    RealOpenMM *  thetay;
    RealOpenMM *  thetaz;
    RealOpenMM *  dthetax;
    RealOpenMM *  dthetay;
    RealOpenMM *  dthetaz;
    RealOpenMM    tx,ty,tz;
    RealOpenMM    dtx,dty,dtz;
    RealOpenMM    fx,fy,fz;
    RealOpenMM    gridvalue;
    int       nx,ny,nz;

    nx    = pme->ngrid[0];
    ny    = pme->ngrid[1];
    nz    = pme->ngrid[2];

    order = pme->order;
554

555
    /* This is almost identical to the charge spreading routine! */
556

Peter Eastman's avatar
Peter Eastman committed
557
558
559
    for(i=0;i<pme->natoms;i++)
    {
        fx = fy = fz = 0;
560

Peter Eastman's avatar
Peter Eastman committed
561
        q = atomParameters[i][QIndex];
562

563
        /* Grid index for the actual atom position */
Peter Eastman's avatar
Peter Eastman committed
564
565
566
        x0index = pme->particleindex[i][0];
        y0index = pme->particleindex[i][1];
        z0index = pme->particleindex[i][2];
567

568
        /* Bspline factors for this atom in each dimension , calculated from fractional coordinates */
Peter Eastman's avatar
Peter Eastman committed
569
570
571
572
573
574
        thetax  = &(pme->bsplines_theta[0][i*order]);
        thetay  = &(pme->bsplines_theta[1][i*order]);
        thetaz  = &(pme->bsplines_theta[2][i*order]);
        dthetax = &(pme->bsplines_dtheta[0][i*order]);
        dthetay = &(pme->bsplines_dtheta[1][i*order]);
        dthetaz = &(pme->bsplines_dtheta[2][i*order]);
575

Peter Eastman's avatar
Peter Eastman committed
576
        /* See pme_grid_spread_charge() for comments about the order here, and only interpolation in one direction */
577

578
579
580
        /* Since we will add order^3 (typically 4*4*4=64) terms to the force on each particle, we use temporary fx/fy/fz
         * variables, and only add it to memory forces[] at the end.
         */
Peter Eastman's avatar
Peter Eastman committed
581
582
583
        for(ix=0;ix<order;ix++)
        {
            xindex = (x0index + ix) % pme->ngrid[0];
584
            /* Get both the bspline factor and its derivative with respect to the x coordinate! */
Peter Eastman's avatar
Peter Eastman committed
585
586
            tx     = thetax[ix];
            dtx    = dthetax[ix];
587

Peter Eastman's avatar
Peter Eastman committed
588
589
590
            for(iy=0;iy<order;iy++)
            {
                yindex = (y0index + iy) % pme->ngrid[1];
591
                /* bspline + derivative wrt y */
Peter Eastman's avatar
Peter Eastman committed
592
593
                ty     = thetay[iy];
                dty    = dthetay[iy];
594

Peter Eastman's avatar
Peter Eastman committed
595
596
597
598
                for(iz=0;iz<order;iz++)
                {
                    /* Can be optimized, but we keep it simple here */
                    zindex               = (z0index + iz) % pme->ngrid[2];
599
                    /* bspline + derivative wrt z */
Peter Eastman's avatar
Peter Eastman committed
600
601
602
                    tz                   = thetaz[iz];
                    dtz                  = dthetaz[iz];
                    index                = xindex*pme->ngrid[1]*pme->ngrid[2] + yindex*pme->ngrid[2] + zindex;
603

604
605
                    /* Get the fft+convoluted+ifft:d data from the grid, which must be real by definition */
                    /* Checking that the imaginary part is indeed zero might be a good check :-) */
Peter Eastman's avatar
Peter Eastman committed
606
607
608
609
610
611
612
613
614
                    gridvalue            = pme->grid[index].re;

                    /* The d component of the force is calculated by taking the derived bspline in dimension d, normal bsplines in the other two */
                    fx                  += dtx*ty*tz*gridvalue;
                    fy                  += tx*dty*tz*gridvalue;
                    fz                  += tx*ty*dtz*gridvalue;
                }
            }
        }
615
        /* Update memory force, note that we multiply by charge and some box stuff */
Peter Eastman's avatar
Peter Eastman committed
616
617
618
619
        forces[i][0] -= q*fx*nx/periodicBoxSize[0];
        forces[i][1] -= q*fy*ny/periodicBoxSize[1];
        forces[i][2] -= q*fz*nz/periodicBoxSize[2];
    }
620
621
622
623
624
625
}



/* EXPORTED ROUTINES */

626
int
627
pme_init(pme_t *       ppme,
Peter Eastman's avatar
Peter Eastman committed
628
629
630
631
         RealOpenMM        ewaldcoeff,
         int           natoms,
         const int           ngrid[3],
         int           pme_order,
632
633
634
635
         RealOpenMM        epsilon_r)
{
    pme_t pme;
    int   d;
636

637
638
639
640
641
    pme = (pme_t) malloc(sizeof(struct pme));

    pme->order       = pme_order;
    pme->epsilon_r   = epsilon_r;
    pme->ewaldcoeff  = ewaldcoeff;
Peter Eastman's avatar
Peter Eastman committed
642
    pme->natoms      = natoms;
643

644
    for(d=0;d<3;d++)
Peter Eastman's avatar
Peter Eastman committed
645
646
647
648
649
    {
        pme->ngrid[d]            = ngrid[d];
        pme->bsplines_theta[d]   = (RealOpenMM *)malloc(sizeof(RealOpenMM)*pme_order*natoms);
        pme->bsplines_dtheta[d]  = (RealOpenMM *)malloc(sizeof(RealOpenMM)*pme_order*natoms);
    }
650

Peter Eastman's avatar
Peter Eastman committed
651
652
    pme->particlefraction = (rvec *)malloc(sizeof(rvec)*natoms);
    pme->particleindex    = (ivec *)malloc(sizeof(ivec)*natoms);
653

Peter Eastman's avatar
Peter Eastman committed
654
655
    /* Allocate charge grid storage */
    pme->grid        = (t_complex *)malloc(sizeof(t_complex)*ngrid[0]*ngrid[1]*ngrid[2]);
656

Peter Eastman's avatar
Peter Eastman committed
657
    fftpack_init_3d(&pme->fftplan,ngrid[0],ngrid[1],ngrid[2]);
658

Peter Eastman's avatar
Peter Eastman committed
659
660
    /* Setup bspline moduli (see Essman paper) */
    pme_calculate_bsplines_moduli(pme);
661

Peter Eastman's avatar
Peter Eastman committed
662
    *ppme = pme;
663

664
665
666
667
668
669
670
671
    return 0;
}





int pme_exec(pme_t       pme,
672
673
             vector<RealVec>&   atomCoordinates,
             vector<RealVec>&   forces,
Peter Eastman's avatar
Peter Eastman committed
674
675
676
677
             RealOpenMM **   atomParameters,
             const RealOpenMM      periodicBoxSize[3],
             RealOpenMM *    energy,
             RealOpenMM      pme_virial[3][3])
678
679
{
    /* Routine is called with coordinates in x, a box, and charges in q */
680

681
682
683
684
    /* Before we can do the actual interpolation, we need to recalculate and update
     * the indices for each particle in the charge grid (initialized in pme_init()),
     * and what its fractional offset in this grid cell is.
     */
685

Peter Eastman's avatar
Peter Eastman committed
686
    /* Update charge grid indices and fractional offsets for each atom.
687
     * The indices/fractions are stored internally in the pme datatype
688
     */
Peter Eastman's avatar
Peter Eastman committed
689
    pme_update_grid_index_and_fraction(pme,atomCoordinates,periodicBoxSize);
690

Peter Eastman's avatar
Peter Eastman committed
691
692
    /* Calculate bsplines (and their differentials) from current fractional coordinates, store in pme structure */
    pme_update_bsplines(pme);
693

Peter Eastman's avatar
Peter Eastman committed
694
695
    /* Spread the charges on grid (using newly calculated bsplines in the pme structure) */
    pme_grid_spread_charge(pme,atomParameters);
696

Peter Eastman's avatar
Peter Eastman committed
697
698
    /* do 3d-fft */
    fftpack_exec_3d(pme->fftplan,FFTPACK_FORWARD,pme->grid,pme->grid);
699

Peter Eastman's avatar
Peter Eastman committed
700
701
    /* solve in k-space */
    pme_reciprocal_convolution(pme,periodicBoxSize,energy,pme_virial);
702

Peter Eastman's avatar
Peter Eastman committed
703
704
    /* do 3d-invfft */
    fftpack_exec_3d(pme->fftplan,FFTPACK_BACKWARD,pme->grid,pme->grid);
705

Peter Eastman's avatar
Peter Eastman committed
706
707
    /* Get the particle forces from the grid and bsplines in the pme structure */
    pme_grid_interpolate_force(pme,periodicBoxSize,atomParameters,forces);
708
709
710
711
712
713
714
715
716

    return 0;
}



int
pme_destroy(pme_t    pme)
{
Peter Eastman's avatar
Peter Eastman committed
717
    int d;
718

Peter Eastman's avatar
Peter Eastman committed
719
    free(pme->grid);
720

Peter Eastman's avatar
Peter Eastman committed
721
722
723
724
725
726
    for(d=0;d<3;d++)
    {
        free(pme->bsplines_moduli[d]);
        free(pme->bsplines_theta[d]);
        free(pme->bsplines_dtheta[d]);
    }
727

Peter Eastman's avatar
Peter Eastman committed
728
729
    free(pme->particlefraction);
    free(pme->particleindex);
730

Peter Eastman's avatar
Peter Eastman committed
731
    fftpack_destroy(pme->fftplan);
732

Peter Eastman's avatar
Peter Eastman committed
733
734
    /* destroy structure itself */
    free(pme);
735

Peter Eastman's avatar
Peter Eastman committed
736
    return 0;
737
}