rainflow
Rainflow counting fatigue analysis.
Syntax
R = rainflow(signal,numbins,minrange,maxrange,output)
Inputs
- signal
- The stress history.
- numbins
- Total number of bins specified.
- minrange
- Minimum value a bin can have for its range of real time data.
- maxrange
- Maximum value a bin can have for its range of real time data.
- output
- Indicate the type of data returned.
Outputs
- R
- The reduced stress history.
Example
Compute the rainflow output of a stress history.
h = [0,1,2,3,4,5,6,5,4,3,4,5,6,7,8,9,10];
R = rainflow(h, 3, 2.5, 8.5, 1)
R = [Matrix] 1 x 3
3.50000 5.50000 7.50000
Comments
A gate input to control hysteresis slope reversal and remove points due to external noise is currently unsupported.