As `load_force`, 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, fname, force)
| 3450 | force.save_hdf5(self.fields, fname, "", self.get_filename_prefix()) |
| 3451 | |
| 3452 | def load_minus_force(self, fname, force): |
| 3453 | """ |
| 3454 | As `load_force`, but negates the Fourier-transformed fields after they are loaded. |
| 3455 | This means that they will be *subtracted* from any future field Fourier transforms |
| 3456 | that are accumulated. |
| 3457 | """ |
| 3458 | self.load_force(fname, force) |
| 3459 | force.scale_dfts(-1.0) |
| 3460 | |
| 3461 | def get_force_data(self, force): |
| 3462 | """ |
nothing calls this directly
no test coverage detected