Skip to content

Releases: iamlikeme/rainflow

v3.2.0

17 Apr 07:04
5fc6822
Compare
Choose a tag to compare

Changed

  • (#68, #70) Dropped support for Python 2.7 and 3.6.
  • (#66) importlib.metadata no longer used to evaluate rainflow.__version__.

v3.1.1

28 Dec 13:54
64b0ddf
Compare
Choose a tag to compare

Fixed

  • (#62) Due to floating point accuracy count_cycles sometimes returned
    more bins than what was specified by argument nbins. Thank you
    Kyle6699 for reporting the bug and
    providing a test case.

v3.1.0

16 Nov 19:38
2381b69
Compare
Choose a tag to compare

Changed

  • (#56) extract_cycles now returns no cycles for very short time series
    (containing zero or one reversals). Contributed by
    denis-jasselette-jc.
  • (#57) Dropped tests for Python 3.4 and 3.5 due to the extra work required
    to make the CI and tests work for these old versions.

v3.0.1

18 Nov 19:56
df5d11f
Compare
Choose a tag to compare

Fixed

  • (#48) Fix: count_cycles returning repeated bins due to round-off errors.

Added

  • (#51) Run CI tests for Python 3.9

v3.0.0

20 Apr 19:40
ea05238
Compare
Choose a tag to compare

Changed

  • (#35) By default, the first and the last points in the time series are treated as reversals.
  • (#37) Function reversals now yields index and value of each reversal, instead of value only.
  • (#38) Function extract_cycles now yields range, mean, count, start index and end index for each cycle instead of low, high and count.
  • (#43) Arguments binsize and nbins to count_cycles produce bins which include the right edge and exclude the left edge.

Removed

  • (#35) Removed optional arguments left and right to functions reversals, extract_cycles and count_cycles. The new behaviour correspods to left=True and right=True.

v2.2.0

23 Oct 20:35
14c12b1
Compare
Choose a tag to compare
  • Added optional arguments nbins and binsize to count_cycles

v2.1.2

14 Jun 20:02
7725ea2
Compare
Choose a tag to compare
  • Changed license to MIT
  • extract_cycles returns remaining half-cycles in the order of cycle start

v2.1.1

17 Apr 20:04
Compare
Choose a tag to compare
  • The first and the last point in the time series can be treated as reversals
    by setting arguments left and right to True
  • Function get_round_function renamed to _get_round_function.
    The leading underscore indicates that this is an implementation detail.

2.0.0

25 Feb 15:20
64bf3bd
Compare
Choose a tag to compare

extract_cycles now yields cycle lows and highs.

1.0.2

06 Dec 18:56
Compare
Choose a tag to compare

Corrected README.md