dropp | R Documentation |
Calculate pressure drop in straight cylidrical steel pipe of district heating system (where water is a heat carrier) that is a result of pipe orientation in space (hydrostatic component), and friction between water and internal wall of pipe.
dropp(
temperature = 130,
pressure = mpa_kgf(6),
flow_rate = 1276,
d = 1,
len = 1,
roughness = 0.006,
inlet = 0,
outlet = 0,
method = "romeo"
)
temperature |
temperature of heat carrier (water) inside the pipe, [°C].
Type: |
pressure |
absolute pressure
of heat carrier (water) measured at the
entrance (inlet) of pipe, [MPa]. Type: |
flow_rate |
amount of heat carrier (water) that is transferred by pipe during a period,
[ton/hour]. Type: |
d |
internal diameter of pipe, [m]. Type: |
len |
pipe length, [m]. Type: |
roughness |
roughness of internal wall of pipe, [m]. Type: |
inlet |
elevation of pipe inlet, [m]. Type: |
outlet |
elevation of pipe outlet, [m]. Type: |
method |
method of determining Darcy friction factor.
Type: |
The underlying engineering model for calculation of pressure drop considers only two contributions (components):
Pressure drop due to gravity (hydrostatic component).
Pressure drop due to friction.
The model does not consider any size changes of pipe and presence of fittings.
For the first component that depends on pipe position in space the next figure illustrates adopted disposition of pipe.
So, the expression for the first component can be written as:
g \rho (outlet - inlet)
where g
- is gravity factor, m/s^2
, and \rho
- density
of water (heat carrier), kg/m^3
; inlet
and outlet
are appropriate pipe elevations (under sea or any other adopted level),
m
.
The second component comes from
Darcy–Weisbach equation
and is calculated using heating carrier regime parameters (temperature
,
pressure
, flow_rate
). Temperature and pressure values of
heat carrier define water properties according to
IAPWS formulation.
Several methods for calculating of Darcy friction factor are possible and limited to the next direct approximations of Colebrook equation:
Romeo, Royo and Monzon, 2002
Vatankhan and Kouchakzadeh, 2009
Buzzelli, 2008
According to Brkic, 2011 approximations errors of those methods do not
exceed 0.15
% for the most combinations of
Reynolds numbers and
actual values of internal
wall roughness of pipe.
pressure drop at the outlet of pipe, [MPa]. Type: assert_double
.
W.Wagner et al. The IAPWS Industrial Formulation 1997 for the Thermodynamic Properties of Water and Steam, J. Eng. Gas Turbines Power. Jan 2000, 122(1): 150-184 (35 pages)
M.L.Huber et al.New International Formulation for the
Viscosity of H_2O
, Journal of Physical and Chemical Reference Data
38, 101 (2009);
D.Brkic. Journal of Petroleum Science and Engineering, Vol. 77, Issue 1, April 2011, Pages 34-48.
Romeo, E., Royo, C., Monzon, A., 2002. Improved explicit equation for estimation of friction factor in rough and smooth pipes. Chem. Eng. J. 86 (3), 369–374.
Vatankhah, A.R., Kouchakzadeh, S., 2009. Discussion: Exact equations for pipeflow problems, by P.K. Swamee and P.N. Rathie. J. Hydraul. Res. IAHR 47 (7), 537–538.
Buzzelli, D., 2008. Calculating friction in one step. Mach. Des. 80 (12), 54–55.
dropt
for calculating temperature drop in pipe
Other district heating:
dropg()
,
dropt()
library(pipenostics)
# Typical pressure drop for horizontal pipeline segments
# in high-way heating network in Novosibirsk
dropp(len = c(200, 300))
#[1] 0.0007000666 0.0010500999
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.