Help with commands to this problem
Show older comments
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
Accepted Answer
More Answers (0)
Categories
Find more on Airfoil tools in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!