Im试图制造一种使用这三种公式的流速计算器。
压力比率 b
b = p2 +0.1 / p1 +0.1
The C-value and B-Value are given numbers depending on the valve. See page 6 on this pdf http://content2.smcetech.com/pdf/SY.New.pdf
问题 长期流动
Q = 600 * C(p1 +0.1) sqrt(293/(273 +t)
This is my working code.
float pressure1 = ([pressureMPa.text floatValue])+ 0.1;
float c = 600 * ([cValue.text floatValue]);
float temperature = ([tempC.text floatValue]);
float root = sqrtf(293/(273+temperature));
float sonicFlow = c * pressure1 * root;
Q
= flow rate l/min
C
= dm^3/s * bar
p1
= Supply pressure: MPa
t
= temperature deg C
长期流动
Q = 600 * C(p1 +0.1)* sqrt (1-(p2+0.1/p1 +0.1 - b 1-b)^2* sqrt(293/(273+t)
Q
= flow rate l/min
C
-value = dm^3/s * bar
p1
Supply pressure: MPa
t
temperature deg C
b
-Value
What is the best way to write the subsonic flow code?
页: 1 我有问题。