Inverted Airfoil from airfoil data base in Sandbox #104
-
Howdy, I am trying to run a drag optimization for a stable aircraft; I am not converging onto solutions. One reason I think this i happening is that in order to trim my current Main Wing airfoil (s1223) is very highly cambered and a symmetric airfoil would not be able to trim it. Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes, this will do it: import aerosandbox as asb
import aerosandbox.numpy as np
af = asb.Airfoil("s1223")
af_flipped = af.scale(scale_x=1, scale_y=-1) # creates a flipped copy of `af`
af_flipped.draw() If you still have convergence issues and are able to share your design script, feel free to post it here. Good luck! |
Beta Was this translation helpful? Give feedback.
Yes, this will do it:
If you still have convergence issues and are able to share your design script, feel free to post it here. Good luck!