Flow Rate Problem Implementation on Matlab



clear all;
clc
x=60;
g=9.81;
d=147;
Dc=(d/2)*(1-cosd(x));
disp('ans for Q in kg/m^3 is ==>')
Q=(2^(2/3)*Dc^(5/2)*sqrt(g)*((x*(3.1415/180))-0.5*sind(2*x))^(2/3))/(8*sqrt(sind(x))*(1-cosd(x))^(5/2))
ans for Q in kg/m^3 is ==> Q = 2.2348e+04

Click here to download whole Problem in PDF form

Flow Rate Problem Implementation on MATLAB

Comments