We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: