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
When calculating the CP in Line 43 in simpleWingLoadParams.m sin(Phi) is used. This causes a great error when the sweep angle is large.
phi = deg2rad(30); error = tan(phi) - sin(phi) error = 0.0774
This was tested using the wing from the new/eVTOL "TiltrotorAircraft": The C_m0 is closer to the values calculated with tornado:
(without applying moment correction) using sin(phi) C_m0 = -0,259 using tan(Phi) C_m0 = -0.2516
C_m0 = -0.1477
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I believe the position of the CP is wrong:
When calculating the CP in Line 43 in simpleWingLoadParams.m
sin(Phi) is used. This causes a great error when the sweep angle is large.
Compare calculation process:
Compare error 2-Point-Model vs. Tornado:
This was tested using the wing from the new/eVTOL "TiltrotorAircraft":
The C_m0 is closer to the values calculated with tornado:
2-Point-Model:
(without applying moment correction)
using sin(phi) C_m0 = -0,259
using tan(Phi) C_m0 = -0.2516
Tornado
C_m0 = -0.1477
The text was updated successfully, but these errors were encountered: