필터 지우기
필터 지우기

Calculate total flow from flow rate

조회 수: 8 (최근 30일)
JE
JE 2016년 12월 19일
댓글: dpb 2016년 12월 19일
I am looking to calculate the total flow from a mass flow rate - or simply integrate mass flow rate. I am new to matlab so I am wondering if there is a function to do this or if I will need to write my own function to complete this. I can do this easily in excel (multiply flow rate by sample time, sum results), but am not sure how to do this in matlab. I have tried to use the 'trapz' function, but because my flow goes slightly negative at times, this function does not seem to be working. Can any one point me in the right direction?
  댓글 수: 1
dpb
dpb 2016년 12월 19일
What makes you think trapz isn't working? Certainly it's simple enough to do a cumulative summation approximation directly as well...
fl=dt*cumsum(f);
if dt is constant, otherwise
fl=cumsum(f.*dt);
Not as an accurate an approximation as a trapezoidal approx, though...

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Numerical Integration and Differentiation에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by