Whoops, don't use compressibility correction at supersonic flow

This commit is contained in:
SiboVG 2024-10-09 22:56:22 +02:00
parent ecc203b621
commit 56aee518e7

View File

@ -468,7 +468,7 @@ public class FinSetCalc extends RocketComponentCalc {
conditions.getVelocity() * conditions.getBeta()); conditions.getVelocity() * conditions.getBeta());
} }
if (mach >= CNA_SUPERSONIC) { if (mach >= CNA_SUPERSONIC) {
double vel = conditions.getVelocity() * conditions.getBeta(); double vel = conditions.getVelocity();
double k1 = K1.getValue(mach); double k1 = K1.getValue(mach);
double k2 = K2.getValue(mach); double k2 = K2.getValue(mach);
double k3 = K3.getValue(mach); double k3 = K3.getValue(mach);