Skip to content
Snippets Groups Projects
  1. May 18, 2018
  2. Apr 03, 2018
    • Joseph Weston's avatar
      improve heuristic for setting colormap limits in plotter.map · 82baedca
      Joseph Weston authored
      Previously we used the matplotlib default behavior of setting
      the colormap limits (vmin and vmax) to the limits of the plotted
      data, if they are not provided by the user. Now we set the
      colormap limits to the 2nd and 98th percentile of the input
      data, and stretch the limits by 10% on either end in an attempt
      to include all the data in the limits. If we cannot do so
      we set the limits to the percentiles plus the stretch
      and issue a warning.
      
      Also, whenever the data falls outside the colorbar limits
      (even when the latter are set by the user) we set the appropriate
      ends of the colorbar to be pointy, indicating that the data
      extends beyond the colorbar.
      
      Closes #183
      82baedca
  3. Mar 12, 2018
  4. Mar 05, 2018
  5. Feb 27, 2018
  6. Feb 26, 2018
  7. Feb 23, 2018
  8. Feb 22, 2018
  9. Feb 21, 2018
  10. Feb 08, 2018
  11. Feb 07, 2018
  12. Feb 06, 2018
    • Christoph Groth's avatar
      fix streamline color if no lines are blended · c1bcca9b
      Christoph Groth authored
      Matplotlib backends like PDF cannot display arbitrarily thin lines.
      That's why kwant.plotter.streamplot simulates thinner lines by blending
      them into the background.
      
      Previously if no lines were blended, i.e. all had the same color value
      1, the background color would be used for drawing them instead of the
      line color.
      c1bcca9b
  13. Jan 18, 2018
  14. Jan 12, 2018
  15. Jan 11, 2018
  16. Jan 10, 2018
  17. Jan 08, 2018
  18. Jan 05, 2018
  19. Dec 15, 2017
    • Dániel Varjas's avatar
      fix bug in phs_symmetrization using square root method · 79800648
      Dániel Varjas authored
      This commit fixes the bug in phs_symmetrization when it fails to produce ph eigenstates
      with PH^2 = +1 when one of the wave functions is mapped exactly onto another one by PH,
      as in this case the PH symmetrized wf's from the two are identical. This is the case
      with wfs = np.eye(2) and  particle_hole = sigma[1], the second vector returned is an
      eigenstate with eigenvalue -1 not +1. In general this can be even worse, if there are
      multiple such vector pairs some vectors may not be ph eigenstates at all.
      
      The new code uses an improved version of the matrix square root method from
      Applied Mathematics and Computation 234 (2014) 380-384.
      
      Tests are modified to clear up the random unitary generation process (using kwant.rmt).
      Tests are now guaranteed to feed orthonormal set of vectors to phs_symmetrization().
      Add extra tests for the fully off-diagonal case where the old method fails.
      79800648
Loading