Construct a `DftForce`.
(self, func, args)
| 731 | """ """ |
| 732 | |
| 733 | def __init__(self, func, args): |
| 734 | """Construct a `DftForce`.""" |
| 735 | super().__init__(func, args) |
| 736 | self.nfreqs = len(args[0]) |
| 737 | self.regions = args[1] |
| 738 | self.num_components = 6 |
| 739 | |
| 740 | @property |
| 741 | def force(self): |