Merge branch 'openrocket:unstable' into generalize-automatic-tube-fin-radius

This commit is contained in:
Joe Pfeiffer 2022-04-13 11:58:43 -06:00 committed by GitHub
commit f0d7566690
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -660,7 +660,7 @@ public class FinSetCalc extends RocketComponentCalc {
// Airfoil assumed to have zero base drag
// Scale to correct reference area
cd *= cd * span * thickness / conditions.getRefArea();
cd *= span * thickness / conditions.getRefArea();
return cd;
}