-
FlexPro
- Auf einen Blick
- Features & Optionen
- Einsatzgebiete
- Alle Vorteile
- Neu in FlexPro 2021
- FlexPro gratis testen
- FlexPro View OEM Freeware
- Kaufberatung
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produkte
- News
- Support
- Unternehmen
- Jobs
- Kontakt
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
Rainflow count class divisions
- Dieses Thema hat 6 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 20 Jahren, 9 Monaten von norbert.bakkers@lr.org aktualisiert.
-
AutorBeiträge
-
Februar 27, 2004 um 1:30 am Uhr #12693norbert.bakkers@lr.orgTeilnehmer
To test the rainflow count options within FlexPro, I compared the FlexPro calculated results with some hand calculated results using a simple signal composed of 10 different sinus waves.
I calculated the rainflow counts using the absolute positive range pairs.If I use the automatic class divisions, the FlexPro results are identical to the hand calculations.
But if I set the class division by hand using either [start/end], [start/class width] or if I use [from dataset with class limit] using the class width I got from the automatic class division calculations, the results are completely different.
For all options I have used the same number of class divisions.
Because I will have to combine a number of rainflow calculations, the class width will have to be equal for all results.Am I doing something wrong?
If so, how should I continue?Februar 27, 2004 um 7:53 pm Uhr #9129Bernhard KantzTeilnehmerYou can easily explore how FlexPro computes the class division if you take a look at the FPScript code which produced by the “Counting Matrix” analysis object. The class division is a data series which is specified as the second argument to the RainflowMatrix() function. You can see the code, if you select the object, right-click and then choose Open from its context menu.
I case of automatic class division, the following code is used to produce the class division data series:
(33., Min(Signal), (Max(Signal) - Min(Signal)) / 32.)
I you choose [start, end] as [-1, 1] and set the class count to 32, then the following code is produced:
(33., -1.00000000000000, (1.00000000000000 - -1.00000000000000) / 32.)
In both cases, the FPScript data series operator (count, origin, increment) is used.
You can copy these code fragments into a formula to see which limits are actually used. Please note that the counting uses a class division with closed bounds. The means that for 32 classes, the RainflowMatrix() function needs 33 limit values.
März 23, 2004 um 1:22 am Uhr #9130norbert.bakkers@lr.orgTeilnehmerIf I calculate the rainflow counts of one dataset, the result seems to change depending on the ClassLimits. If I set the Hysteresis to be zero (everything included) and then reduce the number of class divisions while keeping the start value and end value constant, I expect the total number of cycles to be the same for every calculation. These settings should only influence the resolution of the results (position of cycle calculated in the result array) and not the calculated cycles. However, if I increase the class size over a certain amount I suddenly start ‘losing’ a lot of cycles. On the other hand, if I decrease the class size the number of cycles increases untill the class size has reached a certain size. Decreasing the class size even more does not influence the results, the total number of cycles stays constant. (Including or excluding the ‘residu’ has a neglectible influence on the outcome)
I can’t use a very small class size because this will increase the processing time too much.
Why are not all cycles included if I increase the class size over a cetain value ?März 23, 2004 um 1:48 am Uhr #9131Bernhard KantzTeilnehmerEven if you set the range filter (hysteresis) to zero, there will still be a dependency between the number of class divisions and the number of counted cycles. If you have a few large classes only, then small cycles, which completely fall into one class, are not counted. They fall through the grid of class divisions. If you increase the number of classes, then the number of counted cycles goes up until it reaches its maximum. Then, the class division is so small that all cycles are counted.
support@weisang.comMärz 23, 2004 um 7:21 pm Uhr #9132norbert.bakkers@lr.orgTeilnehmerThanks for the information. Now I know what causes the problem, I can work around it.
One more thing: My programme crashes if I change the ‘start of the class’ in the ‘class division’ using the following:
ActiveDatabase.SelectedObject.ClassDivisionParameter1 = -50
I got this by manually recording a macro.
Could this be wrong, and if so, what should it be?
It also crashes if I record the macro and then execute it.
Thank you.März 25, 2004 um 9:51 pm Uhr #8356norbert.bakkers@lr.orgTeilnehmerTo test the rainflow count options within FlexPro, I compared the FlexPro calculated results with some hand calculated results using a simple signal composed of 10 different sinus waves.
I calculated the rainflow counts using the absolute positive range pairs.If I use the automatic class divisions, the FlexPro results are identical to the hand calculations.
But if I set the class division by hand using either [start/end], [start/class width] or if I use [from dataset with class limit] using the class width I got from the automatic class division calculations, the results are completely different.
For all options I have used the same number of class divisions.
Because I will have to combine a number of rainflow calculations, the class width will have to be equal for all results.Am I doing something wrong?
If so, how should I continue?März 25, 2004 um 9:51 pm Uhr #9133Bernhard KantzTeilnehmerThe macro stops with an error if the value of ClassDivisionParameter1 is negative. This should be possible. So we will remove this issue.
-
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.