Skip to content

Commit

Permalink
update(vnav): update dragCoeff for clean config in flightmodel
Browse files Browse the repository at this point in the history
  • Loading branch information
Revyn112 committed Jan 14, 2024
1 parent 156284f commit e95b97e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class FlightModel {
let baseDrag;
switch (flapConf) {
case FlapConf.CLEAN:
baseDrag = (0.0211 * Cl ** 3) + (0.0412 * Cl ** 2) - (0.015 * Cl) + 0.0215;
baseDrag = (0.04356 * Cl ** 3) - (0.00687 * Cl ** 2) - (0.00951 * Cl) + 0.03627;
break;
case FlapConf.CONF_1:
baseDrag = (0.0385 * Cl ** 3) + (0.004 * Cl ** 2) + (0.0044 * Cl) + 0.0249;
Expand Down

0 comments on commit e95b97e

Please sign in to comment.