Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Request to add adjusted drag model to induced_drag_aircraft.py #585

Open
danielenriquez59 opened this issue May 6, 2022 · 0 comments
Open

Comments

@danielenriquez59
Copy link
Contributor

danielenriquez59 commented May 6, 2022

Currently induced_drag is calculated via the standard induced drag equation:

CDi = k*CL^2

there should be an option to utilize the adjusted drag model:
CDi = k*(CL-CL0)^2

as it can affect drag predictions significantly.

Maybe make an try statement:

       try : 
            cdi_v_wing = K*cdp_wing*(cl_wing - wing.cl0)**2 #adjusted drag model
        except :
            cdi_v_wing = K*cdp_wing*(cl_wing**2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant