Skip to content

Releases: loganbvh/superscreen

v0.10.5

18 Jan 18:31
deee6ae
Compare
Choose a tag to compare

What's Changed

  • Make progress bar optional in solve() by @loganbvh in #109
  • Check shape of applied_field by @loganbvh in #110
  • Option to disable progress bar in Device.mutual_inductance_matrix() by @loganbvh in #111

Full Changelog: v0.10.4...v0.10.5

v0.10.4

13 Oct 14:55
799f545
Compare
Choose a tag to compare

What's Changed

  • Fix bug when saving Solution with terminal_currents by @loganbvh in #108

Full Changelog: v0.10.3...v0.10.4

v0.10.3

04 Oct 18:38
9661fb0
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.10.2...v0.10.3

v0.10.2

19 Sep 23:48
23835f6
Compare
Choose a tag to compare

What's Changed

  • bug fix in Solution.screening_field_at_position() by @loganbvh in #106

Full Changelog: v0.10.1...v0.10.2

v0.10.1

08 Sep 23:51
053026a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.10.0...v0.10.1

v0.10.0

03 Aug 21:35
7bf7f78
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.9.2...v0.10.0

v0.9.2

10 Jul 21:29
e2f6117
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.9.1...v0.9.2

v0.9.1

17 May 19:27
66f3efa
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.9.0...v0.9.1

v0.9.0

17 May 00:21
e2c0475
Compare
Choose a tag to compare

SuperScreen v0.9.0 is a significant update intended to improve the CPU/memory efficiency and ergonomics of the package. The major upgrades are contained in the following Pull Requests: #96, #99.

Major changes

  1. Rather than creating a single mesh containing all films in a device, each film now gets its own mesh and finite element operators.

    • This approach avoids meshing large vacuum regions between films, which is costly.
    • This approach also means that films with transport terminals can exist in the same superscreen.Device as films without terminals. As a result, the superscreen.TransportDevice class is no longer needed and has been removed.
    • It is no longer necessary to explicitly define a bounding box around the film(s) being modeled. A suitable bounding box is automatically generated for each film within superscreen.Device.make_mesh().
  2. Reduced memory footprint and improved performance using numba JIT compiled functions.

    • Several costly numerical operations have been migrated from numpy/scipy to custom numba just-in-time (JIT) compiled functions. The numba functions are automatically performed in parallel on multiple CPU cores and avoid the allocation of large intermediate arrays, which can cause significant memory usage in numpy/scipy.
    • For devices with multiple films, the inductive coupling between films is now calculated using the supercurrent density and a numba implementation of the Biot-Savart law, rather than the stream function and Ampere's law. The new approach is both more robust for closely-stacked films and avoids storage of large temporary arrays.
    • The default for superscreen.Device.solve_dtype has been changed from float64 to float32.
  3. The linear system describing the magnetic response of each film is now LU factored only once per call to superscreen.solve().

    • This dramatically speeds up self-consistent simulations involving multiple films and makes the solver code more modular.
    • The portions of the model that are independent of the applied field can be pre-factorized using superscreen.factorize_model(), which returns a superscreen.FactorizedModel object that can be saved for future use. A superscreen.FactorizedModel instance can be passed directly to superscreen.solve().
  4. As a result of the above optimizations, GPU support using jax and parallel processing with shared memory using ray no longer seem to add much value to the package, so they have been removed.

    • The gpu argument to superscreen.solve() has been removed, along with the (optional) dependency on jax.
    • superscreen.solve_many() has been removed, along with the dependency on ray.
  5. All IO operations, including writing superscreen.Device and superscreen.Solution objects to disk, are now performed using the HDF5 file format via h5py.

    • All objects within superscreen that can be serialized to disk now have .to_hdf5() and .from_hdf5() methods.
  6. SuperScreen has dropped support for Python 3.7, which will reach end-of-life in June 2023.

    • Added support for Python 3.11, which was being blocked by the dependency on ray.

v0.8.2

06 May 18:46
2afa15a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.8.1...v0.8.2