(self, filename)
| 493 | f["rawdata"] = ev |
| 494 | |
| 495 | def load_eigenvectors(self, filename): |
| 496 | with h5py.File(filename, "r") as f: |
| 497 | ev = f["rawdata"][()] |
| 498 | self.set_eigenvectors(ev, 1) |
| 499 | self.mode_solver.curfield_reset() |
| 500 | |
| 501 | # The band-range-data is a list of tuples, each consisting of a (min, k-point) |
| 502 | # tuple and a (max, k-point) tuple, with each min/max pair describing the |