how coding drag coefficient?

조회 수: 24 (최근 30일)
Lilya
Lilya 2016년 8월 2일
답변: YATIK SHAH 2021년 4월 14일
Hi all, I need kindly help to write a code to calculate drag coefficient as the attached figure.
thank you in advance
  댓글 수: 2
Bob Thompson
Bob Thompson 2016년 8월 2일
Could you expand a little bit more on what you're looking for exactly? All I can determine from the information in the pic is that Cd = 0.0012.
Lilya
Lilya 2016년 8월 3일
The equation is in the first line, this is what I actually want. The wind speed values are in matrix which in form of u, v.

댓글을 달려면 로그인하십시오.

채택된 답변

Star Strider
Star Strider 2016년 8월 3일
See if this does what you want:
tau = @(U10) 1.22.*[1.2E-3.*((4 < U10) & (U10 < 11)) + 1E-3*(0.49 + 0.065*U10).*((11 <= U10) & (U10 < 25))].*U10.^2;
x = linspace(0, 24.9);
figure(1)
plot(x, tau(x))
xlabel('\itU_{10}\rm')
ylabel('\bf\tau\rm')
grid
  댓글 수: 8
Lilya
Lilya 2016년 8월 3일
Thank you very much for your help. I greatly appreciate it.
Star Strider
Star Strider 2016년 8월 3일
My pleasure.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

YATIK SHAH
YATIK SHAH 2021년 4월 14일
tau = @(U10) 1.22.*[1.2E-3.*((4 < U10) & (U10 < 11)) + 1E-3*(0.49 + 0.065*U10).*((11 <= U10) & (U10 < 25))].*U10.^2;
x = linspace(0, 24.9);
figure(1)
plot(x, tau(x))
xlabel('\itU_{10}\rm')
ylabel('\bf\tau\rm')
grid

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by