HELP! I need to plot my values from if statement, and cant figure out how
    11 ビュー (過去 30 日間)
  
       古いコメントを表示
    
if H < 1.5           %Pressure drop is less than 1.5 psi
            D = (Qc.^0.381)/(19.17*(H./(Cr.*L))^0.206);
        elseif H >= 1.5     %Pressure drop is greater than or equal to 1.5 psi
            D = (Qc.^0.381)/(18.93*((P1a.^2-P2a.^2).*Y./Cr.*L)^0.206); 
end
xx = linspace(0,2*Qc,1000);
fplot
this is the part of the function that does the calculation and I can't figure out how to plot the D vs. xx
6 件のコメント
回答 (1 件)
  Raghunandan V
      
 2019 年 6 月 7 日
        Hi,
Just a small correction in the code
if H < 1.5           %Pressure drop is less than 1.5 psi
   D = (Qc.^0.381)/(19.17*(H./(Cr.*L))^0.206);
else  %Pressure drop is greater than or equal to 1.5 psi
   D = (Qc.^0.381)/(18.93*((P1a.^2-P2a.^2).*Y./Cr.*L)^0.206); 
end
xx = linspace(0,2*Qc,1000);
plot(xx, D)
This is only possible if your xx and D are of same dimention
2 件のコメント
参考
カテゴリ
				Help Center および File Exchange で Gas Library についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


