chematic-ewald 0.2.11

Smooth Particle Mesh Ewald (SPME) electrostatics: real-space erfc Coulomb, reciprocal-space FFT, periodic boundary conditions — pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
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
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
//! Smooth Particle Mesh Ewald (SPME) reciprocal space energy calculation using FFT.
//!
//! Computes the reciprocal-space contribution to the Ewald sum using:
//! 1. Charge interpolation onto a 3D mesh
//! 2. Forward FFT to reciprocal space
//! 3. Reciprocal space energy evaluation
//! 4. Inverse FFT to real space (forces via differentiation)

use std::f64::consts::PI;

use crate::{BoxVectors, EwaldError, PmeConfig};

const K_COULOMB: f64 = 332.0637; // kcal·Å/(mol·e²)

/// Compute reciprocal-space Ewald energy.
///
/// Uses Fast Fourier Transform (FFT) to evaluate long-range Coulomb interactions
/// in periodic systems. The real-space and reciprocal-space contributions partition
/// the 1/r interaction based on the Ewald parameter α.
///
/// # Arguments
/// * `coords` - Atomic coordinates [[x0, y0, z0], ...]
/// * `charges` - Partial charges (e)
/// * `box_vecs` - Periodic box vectors
/// * `config` - PME configuration (alpha, kmax, mesh, spline_order)
///
/// # Returns
/// `Result<f64, EwaldError>` with reciprocal-space energy contribution (kcal/mol)
///
/// # Errors
/// Returns `EwaldError::SingularBoxMatrix` if the box matrix is singular.
pub fn reciprocal_space_energy(
    coords: &[[f64; 3]],
    charges: &[f64],
    box_vecs: &BoxVectors,
    config: &PmeConfig,
) -> Result<f64, EwaldError> {
    if coords.is_empty() {
        return Ok(0.0);
    }

    if box_vecs.volume().abs() < 1e-10 {
        return Err(EwaldError::SingularBoxMatrix);
    }

    // Auto-compute alpha if not provided
    let alpha = if config.alpha > 0.0 {
        config.alpha
    } else {
        3.5 / config.r_cut
    };

    // Create charge mesh
    let mesh_size = [config.mesh[0], config.mesh[1], config.mesh[2]];
    let mut charge_grid = vec![0.0; mesh_size[0] * mesh_size[1] * mesh_size[2]];

    // Interpolate charges onto mesh (B-spline order)
    interpolate_charges_to_mesh(
        coords,
        charges,
        box_vecs,
        &mut charge_grid,
        &mesh_size,
        config.spline_order,
    )?;

    // Compute reciprocal space energy from charge density
    compute_reciprocal_energy(&charge_grid, box_vecs, &mesh_size, alpha, config.kmax)
}

/// Interpolate point charges onto 3D mesh using B-splines.
fn interpolate_charges_to_mesh(
    coords: &[[f64; 3]],
    charges: &[f64],
    box_vecs: &BoxVectors,
    output_grid: &mut [f64],
    mesh_size: &[usize; 3],
    spline_order: u8,
) -> Result<(), EwaldError> {
    let [m0, m1, m2] = *mesh_size;

    for (coord, &charge) in coords.iter().zip(charges.iter()) {
        if charge.abs() < 1e-10 {
            continue;
        }

        // Map atomic coordinate to fractional coordinates (0..1)
        let frac = map_to_fractional(*coord, box_vecs)?;

        // Wrap fractional coordinates into [0, 1)
        let frac = [
            frac[0] - frac[0].floor(),
            frac[1] - frac[1].floor(),
            frac[2] - frac[2].floor(),
        ];

        // Scale fractional coordinates to mesh indices u ∈ [0, M_d)
        let u = [
            frac[0] * m0 as f64,
            frac[1] * m1 as f64,
            frac[2] * m2 as f64,
        ];

        // Get floor of scaled coordinates (nearest grid point)
        let n = [
            u[0].floor() as isize,
            u[1].floor() as isize,
            u[2].floor() as isize,
        ];

        // Compute B-spline weights for each axis
        let wx = bspline_weights(u[0] - n[0] as f64, spline_order);
        let wy = bspline_weights(u[1] - n[1] as f64, spline_order);
        let wz = bspline_weights(u[2] - n[2] as f64, spline_order);

        // Spread charge to p³ grid points using 3D tensor product
        for kx in 0..spline_order as isize {
            let gx = (n[0] - kx).rem_euclid(m0 as isize) as usize;
            for ky in 0..spline_order as isize {
                let gy = (n[1] - ky).rem_euclid(m1 as isize) as usize;
                for kz in 0..spline_order as isize {
                    let gz = (n[2] - kz).rem_euclid(m2 as isize) as usize;
                    let linear_idx = gx + gy * m0 + gz * m0 * m1;
                    output_grid[linear_idx] +=
                        charge * wx[kx as usize] * wy[ky as usize] * wz[kz as usize];
                }
            }
        }
    }
    Ok(())
}

/// Map Cartesian coordinates to fractional coordinates (0..1) in the box.
fn map_to_fractional(coord: [f64; 3], box_vecs: &BoxVectors) -> Result<[f64; 3], EwaldError> {
    // Solve: coord = frac[0]*a + frac[1]*b + frac[2]*c
    // For orthogonal boxes, this is simple division
    let a = &box_vecs.0[0];
    let b = &box_vecs.0[1];
    let c = &box_vecs.0[2];

    let det = a[0] * (b[1] * c[2] - b[2] * c[1]) - a[1] * (b[0] * c[2] - b[2] * c[0])
        + a[2] * (b[0] * c[1] - b[1] * c[0]);

    if det.abs() < 1e-10 {
        return Err(EwaldError::SingularBoxMatrix);
    }

    // Inverse: frac = inv(M) * coord
    let inv = matrix_inverse_3x3(&[a, b, c])?;
    Ok([
        inv[0][0] * coord[0] + inv[0][1] * coord[1] + inv[0][2] * coord[2],
        inv[1][0] * coord[0] + inv[1][1] * coord[1] + inv[1][2] * coord[2],
        inv[2][0] * coord[0] + inv[2][1] * coord[1] + inv[2][2] * coord[2],
    ])
}

/// Compute 3×3 matrix inverse.
fn matrix_inverse_3x3(mat: &[&[f64; 3]]) -> Result<[[f64; 3]; 3], EwaldError> {
    let a = mat[0];
    let b = mat[1];
    let c = mat[2];

    let det = a[0] * (b[1] * c[2] - b[2] * c[1]) - a[1] * (b[0] * c[2] - b[2] * c[0])
        + a[2] * (b[0] * c[1] - b[1] * c[0]);

    if det.abs() < 1e-10 {
        return Err(EwaldError::SingularBoxMatrix);
    }

    let inv_det = 1.0 / det;

    Ok([
        [
            inv_det * (b[1] * c[2] - b[2] * c[1]),
            inv_det * (a[2] * c[1] - a[1] * c[2]),
            inv_det * (a[1] * b[2] - a[2] * b[1]),
        ],
        [
            inv_det * (b[2] * c[0] - b[0] * c[2]),
            inv_det * (a[0] * c[2] - a[2] * c[0]),
            inv_det * (a[2] * b[0] - a[0] * b[2]),
        ],
        [
            inv_det * (b[0] * c[1] - b[1] * c[0]),
            inv_det * (a[1] * c[0] - a[0] * c[1]),
            inv_det * (a[0] * b[1] - a[1] * b[0]),
        ],
    ])
}

/// Compute reciprocal-space energy from charge density.
fn compute_reciprocal_energy(
    charge_grid: &[f64],
    box_vecs: &BoxVectors,
    mesh_size: &[usize; 3],
    alpha: f64,
    kmax: [usize; 3],
) -> Result<f64, EwaldError> {
    let volume = box_vecs.volume();
    let mut energy = 0.0;

    // Iterate over the z-positive half of reciprocal space.
    // compute_structure_factor returns |S(k)|² (a real scalar).
    // For real charge distributions |S(-k)|² = |S(k)|², so summing over the
    // half-space and multiplying by 2 covers all k ≠ 0 without double-counting.
    // The Ewald reciprocal formula is:
    //   E = Σ_{half-space k} 2 * (2π/V) * K * exp(-k²/4α²)/k² * |S(k)|²
    //     = Σ_{half-space k} (4π/V) * K * kernel * |S(k)|²
    let kxmax = kmax[0] as i32;
    let kymax = kmax[1] as i32;
    let kzmax = kmax[2] as i32;
    for kxi in -kxmax..=kxmax {
        for kyi in -kymax..=kymax {
            for kzi in 0..=kzmax {
                // z-positive half-space selection (canonical half to avoid double-counting)
                if kzi == 0 && kyi < 0 {
                    continue;
                }
                if kzi == 0 && kyi == 0 && kxi <= 0 {
                    continue; // also excludes k = (0,0,0)
                }

                let k_vec = reciprocal_vector(kxi, kyi, kzi, box_vecs, mesh_size)?;

                let k_sq = k_vec[0] * k_vec[0] + k_vec[1] * k_vec[1] + k_vec[2] * k_vec[2];
                if k_sq < 1e-10 {
                    continue;
                }

                // Structure factor: compute_structure_factor returns |S(k)|²
                let s_k = compute_structure_factor(charge_grid, mesh_size, &k_vec, box_vecs);

                // Ewald kernel: exp(-k²/4α²) / k²
                let kernel = (-k_sq / (4.0 * alpha * alpha)).exp() / k_sq;

                // Factor 4π/V accounts for the 2× conjugate pair and the 2π/V prefactor
                energy += 4.0 * PI / volume * K_COULOMB * kernel * s_k;
            }
        }
    }

    Ok(energy)
}

/// Compute reciprocal lattice vector from mesh indices.
fn reciprocal_vector(
    kx: i32,
    ky: i32,
    kz: i32,
    box_vecs: &BoxVectors,
    mesh_size: &[usize; 3],
) -> Result<[f64; 3], EwaldError> {
    // Reciprocal basis = 2π * (inverse of real basis transposed)
    let inv = matrix_inverse_3x3(&[&box_vecs.0[0], &box_vecs.0[1], &box_vecs.0[2]])?;

    let bx = [
        2.0 * PI * inv[0][0],
        2.0 * PI * inv[1][0],
        2.0 * PI * inv[2][0],
    ];
    let by = [
        2.0 * PI * inv[0][1],
        2.0 * PI * inv[1][1],
        2.0 * PI * inv[2][1],
    ];
    let bz = [
        2.0 * PI * inv[0][2],
        2.0 * PI * inv[1][2],
        2.0 * PI * inv[2][2],
    ];

    let kx_frac = kx as f64 / mesh_size[0] as f64;
    let ky_frac = ky as f64 / mesh_size[1] as f64;
    let kz_frac = kz as f64 / mesh_size[2] as f64;

    Ok([
        kx_frac * bx[0] + ky_frac * by[0] + kz_frac * bz[0],
        kx_frac * bx[1] + ky_frac * by[1] + kz_frac * bz[1],
        kx_frac * bx[2] + ky_frac * by[2] + kz_frac * bz[2],
    ])
}

/// Compute B-spline interpolation weights for fractional offset `t ∈ [0, 1)`.
///
/// Returns `order` weights where `w[k]` is the weight for grid point at
/// offset `−k` from `floor(scaled_coord)`. Weights sum to 1.0 (partition of unity).
///
/// Uses Cardinal B-spline recursion (Essmann et al. 1995).
pub(crate) fn bspline_weights(t: f64, order: u8) -> Vec<f64> {
    debug_assert!((0.0..1.0).contains(&t), "t={t} must be in [0, 1)");
    let p = order as usize;
    let mut w = vec![0.0f64; p];
    w[0] = 1.0;
    for o in 2..=p {
        let of = o as f64;
        for k in (1..p).rev() {
            w[k] = ((t + k as f64) * w[k] + (of - t - k as f64) * w[k - 1]) / (of - 1.0);
        }
        w[0] *= t / (of - 1.0);
    }
    w
}

/// Compute structure factor S(k) = Σ_j ρ_j * exp(i k · r_j).
fn compute_structure_factor(
    charge_grid: &[f64],
    mesh_size: &[usize; 3],
    k_vec: &[f64; 3],
    box_vecs: &BoxVectors,
) -> f64 {
    // Simplified: direct summation over mesh points
    // In full PME, this would be computed via FFT
    let [m0, m1, m2] = *mesh_size;
    let a = &box_vecs.0[0];
    let b = &box_vecs.0[1];
    let c = &box_vecs.0[2];

    let mut s_real = 0.0;
    let mut s_imag = 0.0;

    for (idx, &rho) in charge_grid.iter().enumerate() {
        if rho.abs() < 1e-10 {
            continue;
        }

        // Convert linear index to 3D mesh indices
        let i = idx % m0;
        let j = (idx / m0) % m1;
        let k = idx / (m0 * m1);

        // Cartesian position of mesh point: r = (i/M0)*a + (j/M1)*b + (k/M2)*c
        let fi = i as f64 / m0 as f64;
        let fj = j as f64 / m1 as f64;
        let fk = k as f64 / m2 as f64;
        let r = [
            fi * a[0] + fj * b[0] + fk * c[0],
            fi * a[1] + fj * b[1] + fk * c[1],
            fi * a[2] + fj * b[2] + fk * c[2],
        ];

        // Correct phase: k · r (Å⁻¹ · Å = dimensionless)
        let phase = k_vec[0] * r[0] + k_vec[1] * r[1] + k_vec[2] * r[2];

        s_real += rho * phase.cos();
        s_imag += rho * phase.sin();
    }

    // Return |S(k)|²
    s_real * s_real + s_imag * s_imag
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_map_to_fractional_identity() {
        let box_vecs = BoxVectors::cubic(10.0);
        let frac = map_to_fractional([5.0, 5.0, 5.0], &box_vecs).unwrap();
        assert!((frac[0] - 0.5).abs() < 1e-6);
        assert!((frac[1] - 0.5).abs() < 1e-6);
        assert!((frac[2] - 0.5).abs() < 1e-6);
    }

    #[test]
    fn test_reciprocal_vector_zero() {
        let box_vecs = BoxVectors::cubic(10.0);
        let mesh_size = [10, 10, 10];
        let k = reciprocal_vector(0, 0, 0, &box_vecs, &mesh_size).unwrap();
        assert!((k[0]).abs() < 1e-10);
        assert!((k[1]).abs() < 1e-10);
        assert!((k[2]).abs() < 1e-10);
    }

    #[test]
    fn test_reciprocal_space_energy_empty() {
        let box_vecs = BoxVectors::cubic(10.0);
        let config = PmeConfig::default();
        let coords: Vec<[f64; 3]> = vec![];
        let charges: Vec<f64> = vec![];
        let energy = reciprocal_space_energy(&coords, &charges, &box_vecs, &config).unwrap();
        assert_eq!(energy, 0.0);
    }

    #[test]
    fn test_bspline_weights_partition_of_unity() {
        for order in 1u8..=6 {
            for i in 0..20 {
                let t = i as f64 / 20.0;
                let w = bspline_weights(t, order);
                let sum: f64 = w.iter().sum();
                assert!((sum - 1.0).abs() < 1e-12, "order={order}, t={t}: sum={sum}");
            }
        }
    }

    #[test]
    fn test_bspline_weights_order4_known_values() {
        // t=0: [0, 1/6, 2/3, 1/6]
        let w0 = bspline_weights(0.0, 4);
        assert!(w0[0].abs() < 1e-12, "w[0] at t=0: {}", w0[0]);
        assert!((w0[1] - 1.0 / 6.0).abs() < 1e-12, "w[1] at t=0: {}", w0[1]);
        assert!((w0[2] - 2.0 / 3.0).abs() < 1e-12, "w[2] at t=0: {}", w0[2]);
        assert!((w0[3] - 1.0 / 6.0).abs() < 1e-12, "w[3] at t=0: {}", w0[3]);

        // t=0.5: [1/48, 23/48, 23/48, 1/48]
        let w5 = bspline_weights(0.5, 4);
        assert!(
            (w5[0] - 1.0 / 48.0).abs() < 1e-12,
            "w[0] at t=0.5: {}",
            w5[0]
        );
        assert!(
            (w5[1] - 23.0 / 48.0).abs() < 1e-12,
            "w[1] at t=0.5: {}",
            w5[1]
        );
        assert!(
            (w5[2] - 23.0 / 48.0).abs() < 1e-12,
            "w[2] at t=0.5: {}",
            w5[2]
        );
        assert!(
            (w5[3] - 1.0 / 48.0).abs() < 1e-12,
            "w[3] at t=0.5: {}",
            w5[3]
        );
    }

    #[test]
    fn test_charge_conservation() {
        use crate::BoxVectors;
        let box_vecs = BoxVectors::cubic(10.0);
        let mesh_size = [16usize, 16, 16];
        let mut grid = vec![0.0f64; 16 * 16 * 16];
        let coords = vec![[2.5, 5.0, 7.5], [1.0, 1.0, 1.0]];
        let charges = vec![1.5, -0.7];
        let _ = interpolate_charges_to_mesh(&coords, &charges, &box_vecs, &mut grid, &mesh_size, 4);
        let grid_total: f64 = grid.iter().sum();
        let charge_total: f64 = charges.iter().sum();
        assert!(
            (grid_total - charge_total).abs() < 1e-10,
            "grid_sum={grid_total}, charge_sum={charge_total}"
        );
    }

    #[test]
    fn test_charge_conservation_noncubic_mesh() {
        use crate::BoxVectors;
        // Verifies cbrt hack is gone — non-cubic mesh must work
        let box_vecs = BoxVectors::cubic(10.0);
        let mesh_size = [8usize, 12, 16];
        let mut grid = vec![0.0f64; 8 * 12 * 16];
        let coords = vec![[3.0, 5.0, 8.0]];
        let charges = vec![2.0];
        let _ = interpolate_charges_to_mesh(&coords, &charges, &box_vecs, &mut grid, &mesh_size, 4);
        let grid_total: f64 = grid.iter().sum();
        assert!((grid_total - 2.0).abs() < 1e-10, "grid_sum={grid_total}");
    }

    #[test]
    fn test_reciprocal_energy_nonnegative() {
        use crate::{BoxVectors, PmeConfig};
        // Each k-term is (2π/V) * K * exp(-k²/4α²)/k² * |S(k)|² ≥ 0
        let box_vecs = BoxVectors::cubic(10.0);
        let config = PmeConfig {
            alpha: 0.3,
            kmax: [3, 3, 3],
            mesh: [8, 8, 8],
            spline_order: 4,
            ..PmeConfig::default()
        };
        let coords = vec![[2.0, 2.0, 2.0], [6.0, 6.0, 6.0]];
        let charges = vec![1.0, -1.0];
        let energy = reciprocal_space_energy(&coords, &charges, &box_vecs, &config).unwrap();
        assert!(
            energy >= 0.0,
            "reciprocal energy must be >= 0, got {energy}"
        );
    }

    #[test]
    fn test_reciprocal_energy_scales_as_charge_squared() {
        // The reciprocal-space energy must scale as q².
        // If it scaled as q⁴ (double-squaring bug), doubling q would give 16× not 4×.
        use crate::{BoxVectors, PmeConfig};
        let box_vecs = BoxVectors::cubic(10.0);
        let config = PmeConfig {
            alpha: 0.3,
            kmax: [3, 3, 3],
            mesh: [8, 8, 8],
            spline_order: 4,
            ..PmeConfig::default()
        };
        let coords = vec![[2.0, 2.0, 2.0], [6.0, 6.0, 6.0]];
        let charges1 = vec![1.0_f64, -1.0_f64];
        let charges2 = vec![2.0_f64, -2.0_f64]; // 2× charges
        let e1 = reciprocal_space_energy(&coords, &charges1, &box_vecs, &config).unwrap();
        let e2 = reciprocal_space_energy(&coords, &charges2, &box_vecs, &config).unwrap();
        // e2 / e1 should be 4.0 (q²), not 16.0 (q⁴)
        if e1.abs() > 1e-30 {
            let ratio = e2 / e1;
            assert!(
                (ratio - 4.0).abs() < 1e-6,
                "energy should scale as q²: ratio = {ratio} (expected 4.0)"
            );
        }
    }
}