how to change the direction of the airfoil
2 次查看(过去 30 天)
显示 更早的评论
I want to change direction of the airfoil in the opposite way,what function do i need or what line do i need to fix? Here is my code.
0 个评论
采纳的回答
Alan Stevens
2023-7-6
Change
contourf(real(J),imag(J),imag(f),v2); %%%%%
fill(real(zair),imag(zair),'k')
to
contourf(-real(J),imag(J),imag(f),v2); %%%%%
fill(-real(zair),imag(zair),'k')
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Airfoil tools 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!