Calculate total flow from flow rate

29 次查看(过去 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