Catch bug of negative fin area weight

This commit is contained in:
SiboVG 2022-11-30 15:15:04 +01:00
parent 7ffaabcda4
commit 458a5a0605

View File

@ -644,7 +644,7 @@ public abstract class FinSet extends ExternalComponent implements AxialPositiona
// calculate marginal area
final double delta_x = (cur.x - prev.x);
final double y_avg = (cur.y + prev.y)*0.5;
final double y_avg = (cur.y + prev.y)*0.5; // TODO: MEDIUM: what if one of the points is below the x-axis? (can produce negative area)
double area_increment = delta_x*y_avg;
if( MathUtil.equals( 0, area_increment)){
prev = cur;
@ -662,6 +662,11 @@ public abstract class FinSet extends ExternalComponent implements AxialPositiona
prev=cur;
}
// Negative weight => make positive. TODO: This is NOT a correct solution, but at least it won't throw an exception...
if (centroidSum.weight < 0) {
centroidSum = new Coordinate(centroidSum.x, -centroidSum.y, centroidSum.z, Math.abs(centroidSum.weight));
}
return centroidSum;
}