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!