As `load_near2far_data`, but negates the Fourier-transformed fields after they are loaded. This means that they will be *subtracted* from any future field Fourier transforms that are accumulated.
(self, near2far, n2fdata)
| 3371 | mp._load_dft_data(near2far.F, n2fdata.F) |
| 3372 | |
| 3373 | def load_minus_near2far_data(self, near2far, n2fdata): |
| 3374 | """ |
| 3375 | As `load_near2far_data`, but negates the Fourier-transformed fields after they are |
| 3376 | loaded. This means that they will be *subtracted* from any future field Fourier |
| 3377 | transforms that are accumulated. |
| 3378 | """ |
| 3379 | self.load_near2far_data(near2far, n2fdata) |
| 3380 | near2far.scale_dfts(complex(-1.0)) |
| 3381 | |
| 3382 | def add_force(self, *args, **kwargs): |
| 3383 | """ |
no test coverage detected