mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Lower zero-lift drag
This commit is contained in:
parent
6ef3b4ae01
commit
c4444a908a
@ -310,11 +310,7 @@ pub fn lift_coefficient(aspect_ratio: f32, planform_area: f32, aoa: f32) -> f32
|
|||||||
|
|
||||||
/// The zero-lift profile drag coefficient is the parasite drag on the wings
|
/// The zero-lift profile drag coefficient is the parasite drag on the wings
|
||||||
/// at the angle of attack which generates no lift
|
/// at the angle of attack which generates no lift
|
||||||
pub fn zero_lift_drag_coefficient(planform_area: f32) -> f32 {
|
pub fn zero_lift_drag_coefficient(planform_area: f32) -> f32 { planform_area * 0.004 }
|
||||||
// TODO: verify that it's correct to multiply by planform
|
|
||||||
// avg value for Harris' hawk (Parabuteo unicinctus) [1]
|
|
||||||
planform_area * 0.02
|
|
||||||
}
|
|
||||||
|
|
||||||
/// The change in lift over change in angle of attack¹. Multiplying by angle
|
/// The change in lift over change in angle of attack¹. Multiplying by angle
|
||||||
/// of attack gives the lift coefficient (for a finite wing, not aerofoil).
|
/// of attack gives the lift coefficient (for a finite wing, not aerofoil).
|
||||||
|
Loading…
Reference in New Issue
Block a user