Help with commands to this problem
古いコメントを表示
Hey guys, can someone help me? I have to solve two equations (bellow), Reynolds and the chord of an airfoil. But the chord depends on Cl ,Reynolds depends on the chord and Cl depends on Reynolds (an if command). How can I do that?
c = (8*pi*r/(B*CL)).*(1-cosd(phi));
Re = ro*Vrel.*c./mi;
if Re < 3*10^4
CL = 0.989;
CD = 0.0151;
alfa = 7,61;
else
CL = 0.545;
CD = 0.0081;
alfa = 5.54;
end
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Airfoil tools についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!