필터 지우기
필터 지우기

Can i make loop from this equation?

조회 수: 2 (최근 30일)
Little miss sunshine
Little miss sunshine 2016년 10월 26일
댓글: Chaya N 2016년 10월 27일
I'm trying to make a loop using 'for' or 'while' for this situation but i am lost:
Sa = 0.0233 %ft^2 Sb = 0.0884 %ft^2 Va = 9.5600 %ft/s Vb = 2.5200 %ft/s
if Sa > Sb hf = 0.4*(1-(Sb/Sa))*(((Vb)^2)*(0.5)) class = 'friction loss from sudden compression of cross section' elseif Sa < Sb hf = ((1-(Sa/Sb))^2)*(((Va)^2)*(0.5)) class = 'friction loss from sudden expansion of cross section' end

채택된 답변

Chaya N
Chaya N 2016년 10월 26일
I don't see why you would need any loops here. Your if-else statements seem to be doing just fine.
But, if your Sa and Sb variables are vectors, and if they are of the same length, then you would do:
for idx = 1:numel(Sa)
if Sa(idx) > Sb(idx)
hf(idx) = 0.4*(1-(Sb(idx)/Sa(idx)))*(((Vb)^2)*(0.5)); % class = 'friction loss from sudden compression of cross section'
elseif Sa(idx) < Sb(idx)
hf(idx) = ((1-(Sa(idx)/Sb(idx)))^2)*(((Va)^2)*(0.5)); % class = 'friction loss from sudden expansion of cross section'
end
end
  댓글 수: 4
Little miss sunshine
Little miss sunshine 2016년 10월 27일
Can I do like this?
Sa = 0.0233 %ft^2 Sb = 0.0233 %ft^2 Va = 9.5600 %ft/s Vb = 2.5200 %ft/s
for idx = 1:numel(Sa) if Sa(idx) > Sb(idx) hf(idx) = 0.4*(1-(Sb(idx)/Sa(idx)))*(((Vb)^2)*(0.5)); class = 'friction loss from sudden compression of cross section' elseif Sa(idx) < Sb(idx) hf(idx) = ((1-(Sa(idx)/Sb(idx)))^2)*(((Va)^2)*(0.5)); class = 'friction loss from sudden expansion of cross section' elseif Sa(idx) == Sb(idx) hf(idx) = 0 class = 'no friction loss from sudden expansion or compression of cross section' end end
Chaya N
Chaya N 2016년 10월 27일
You can certainly do that, but it still doesn't change the equal lengths condition for Sa and Sb. It does not calculate hf for all possible combinations of Sa and Sb either.
Notice the line below:
for idx = 1:numel(Sa)
This line is setting the counter for the loop. If Sa is longer than Sb, you would get an error message. If Sb is longer than Sa, then this program will run but hf will have the same length as Sa. Would you just discard the remaining elements in Sb then?
If you have unequal number of elements in Sa and Sb, and are willing to ignore the extra elements in one of them, then change that loop counter to:
for idx = 1:min(numel(Sa),numel(Sb))

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

추가 답변 (0개)

카테고리

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