Merge branch 'unstable' into refactor-friction-drag

This commit is contained in:
JoePfeiffer 2022-04-13 16:49:26 -06:00
commit 45e0f40e1e

View File

@ -666,7 +666,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;
}