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
Instead of increasing the drag coefficient, it decreases by negative deflection values. Have a look at the code at L90 For testing, run the following command (-10-deg deflection):
alpha_M = [-pi/2:0.05:pi/2]'; beta_M = 0; eta = [-10]'*pi/180; figure for i = 1:length(eta) C_D = simpleWingGetCd( wing, alpha_M*[1,1], beta_M*[1,1], eta(i)*[1,1] ); plot( alpha_M, C_D ) hold on end xlabel('\alpha_M, rad'), ylabel('C_D'), grid on;
and then this (0-deg deflection):
alpha_M = [-pi/2:0.05:pi/2]'; beta_M = 0; eta = [0]'*pi/180; figure for i = 1:length(eta) C_D = simpleWingGetCd( wing, alpha_M*[1,1], beta_M*[1,1], eta(i)*[1,1] ); plot( alpha_M, C_D ) hold on end xlabel('\alpha_M, rad'), ylabel('C_D'), grid on;
You will see a decrease in the drag coefficient compared to a zero angle of attack.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Instead of increasing the drag coefficient, it decreases by negative deflection values.
Have a look at the code at L90
For testing, run the following command (-10-deg deflection):
and then this (0-deg deflection):
You will see a decrease in the drag coefficient compared to a zero angle of attack.
The text was updated successfully, but these errors were encountered: