RainFlow 0.9.0

dotnet add package RainFlow --version 0.9.0
NuGet\Install-Package RainFlow -Version 0.9.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="RainFlow" Version="0.9.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RainFlow --version 0.9.0
#r "nuget: RainFlow, 0.9.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install RainFlow as a Cake Addin
#addin nuget:?package=RainFlow&version=0.9.0

// Install RainFlow as a Cake Tool
#tool nuget:?package=RainFlow&version=0.9.0

Performs fatigue load cycle analysis using Rainflow method according to ASTM E1049 standard.

Currently three variants of cycle counting algorithms are implemented: "RainFlow", "Rainflow simplified" and "Range pair" counting.

Usage:
---------------------------------
using static Fatigue.RainFlow;

double[] data = { -2, 1, -3, 5, -1, 3, -4, 4, -2 };
CycleCount[] res = RainFlow_Counting(data);
Console.WriteLine("RainFlow counting method");
Console.WriteLine("      Mean:  Amplitude:  Count:");
for (int i = res.GetLowerBound(0); i <= res.GetUpperBound(0); i++)
{
   Console.WriteLine(" {0,10:g5}  {1,10:g5}  {2,6}", res[i].Mean, res[i].Amplitude, res[i].Count);
}

res = RainFlow_Simplified(data);
Console.WriteLine("RainFlow simplified counting method");
Console.WriteLine(PrintCycleCounts(res));

res = RangePair_Counting(data);
Console.WriteLine("Range pair counting method");
Console.WriteLine(PrintCycleCounts(res));
---------------------------------

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.9.0 1,430 5/11/2017

Initial release.