All Courses
All Courses
Courses by Software
Courses by Semester
Courses by Domain
Tool-focused Courses
Machine learning
POPULAR COURSES
Success Stories
Objective: To simulate the Gate valve with different opening positions using parametric study in Ansys fluent. Theory: Flow coefficient: Cv=Q√(SG∇P) where, Q is the rate of flow (expressed in US gallons per minute),…
Gokulkumar M
updated on 26 Feb 2021
Objective:
To simulate the Gate valve with different opening positions using parametric study in Ansys fluent.
Theory:
Flow coefficient:
Cv=Q√(SG∇P)
where,
Q is the rate of flow (expressed in US gallons per minute),
SG is the specific gravity of the fluid (for water = 1),
ΔP is the pressure drop across the valve (expressed in psi).
Flow factor:
Kv=Q√(SG∇P)
where,
Kv is the flow factor (expressed in m3⋅h−1⋅(bar)−0.5)
Q is the flow rate (expressed in cubic metres per hour m3h)
SG is the specific gravity of the fluid (for water = 1),
∆P is the differential pressure across the device (expressed in [bar]).
flow factor and flow coefficient are used to compare valve ability of flow with the given pressure difference.
When comparing two-valve if one valve with low flow factor (for the same pressure difference and inlet and outlet size) then it offers more flow resistance. which will reduce the flow rate.
Geometry:
Meshing:
\
Solving:
Turbulence model: k-epsilon model
Boundary condition: Inlet pressure boundary condition with the pressure of 10 pascals.
Residuals:
Matlab code for calculating flow coefficient and flow factor:
clear all
close all
clc
x = [5 10 20 30 40 60 80 100];
% mass flow rate in kg/s
y = [0.12341 0.14985 0.23971 0.36327 0.47262 0.65053 0.78542 0.88156]
% plot(x,y)
del_p = [9.8759 9.817 9.53173 8.92439 8.17956 6.54646 4.97197 3.666] % in pascal
del_p_bar = 1e-5.*del_p
del_p_psi = 0.000145038.*del_p
for i = 1:length(y)
q_m3_ph = y(i)/(3600*1000);
q_gallon_pm = q_m3_ph*4.40287;
cv(i) = sqrt(1/del_p_psi(i))*q_gallon_pm;
kv(i) = sqrt(1/del_p_bar(i))*q_m3_ph;
end
hold on
subplot(2,1,1)
plot(x,kv)
xlabel('percentage of opening')
ylabel('Flow factor Kv')
subplot(2,1,2)
plot(x,cv)
xlabel('percentage of opening')
ylabel('Flow coefficient Cv')
Mass flow rate with respect to the percentage of opening:
Percentage of valve opening | Flow rate in kg/s |
5 | 0.12341 |
10 | 0.14985 |
20 | 0.23971 |
30 | 0.36327 |
40 | 0.47262 |
60 | 0.65053 |
80 | 0.78542 |
100 | 0.88156 |
Percentage fo opening vs Flow factor and flow coefficient
Percentage of opening vs Flow rate:
Flow rate vs Flow coefficient:
Conclusion:
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Week 3 - Adiabatic Flame Temperature calculation
Objective: To calculate Adiabatic Flame Temperature for combustion with variation in equivalence ratio, type of fuel, with heat loss using the Newton-Raphson method and Cantera. Theory: Adiabatic flame temperature(AFT): The final temperature of the product, When the combustion takes place…
23 Mar 2021 05:17 AM IST
Week 10 - Simulating Combustion of Natural Gas.
Objective: To simulate the combustion in Ansys fluent with the parametric study. Theory: Combustion is a chemical process during which heat energy is generated. During combustion, the Hydro-carbon and Oxygen combined when a spark is introduced chemical reaction takes…
03 Mar 2021 10:35 AM IST
Week 9 - Parametric study on Gate valve.
Objective: To simulate the Gate valve with different opening positions using parametric study in Ansys fluent. Theory: Flow coefficient: Cv=Q√(SG∇P) where, Q is the rate of flow (expressed in US gallons per minute),…
26 Feb 2021 03:46 PM IST
Week 8 - Simulating Cyclone separator with Discrete Phase Modelling
Objective: To simulate cyclone separator with Discrete Phase Modelling in Ansys fluent. Theory: Empirical models used to calculate the cyclone separator efficiency: 1.Iozia and Leith Model Iozia and Leith logistic model is a modified version of…
24 Feb 2021 02:43 PM IST
Related Courses
0 Hours of Content
Skill-Lync offers industry relevant advanced engineering courses for engineering students by partnering with industry experts.
© 2025 Skill-Lync Inc. All Rights Reserved.