As `load_flux_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, flux, fdata)
| 3649 | load_mode_data = load_flux_data |
| 3650 | |
| 3651 | def load_minus_flux_data(self, flux, fdata): |
| 3652 | """ |
| 3653 | As `load_flux_data`, but negates the Fourier-transformed fields after they are |
| 3654 | loaded. This means that they will be *subtracted* from any future field Fourier |
| 3655 | transforms that are accumulated. |
| 3656 | """ |
| 3657 | self.load_flux_data(flux, fdata) |
| 3658 | flux.scale_dfts(complex(-1.0)) |
| 3659 | |
| 3660 | load_minus_mode_data = load_minus_flux_data |
| 3661 |