generate_frm_MB: Generate data for flow regime map (frm_MB)

Description Usage Arguments Value References See Also Examples

View source: R/MukherjeeBrill_facade.R

Description

Generate a matrix (class="frm_MB") for a flow regime map. Range of the map is specified by vector_vsG and vector_vsL.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
generate_frm_MB(
  vector_vsG,
  vector_vsL,
  D,
  densityG,
  densityL,
  viscosityG,
  viscosityL,
  surfaceTension,
  angle
)

Arguments

vector_vsG

Vector of Superficial velocity of gas - m/s

vector_vsL

Vector of superficial velocity of liquid - m/s

D

Pipe diameter - m

densityG

Density of gas - kg/m3

densityL

Density of liquid - kg/m3

viscosityG

Visosity of gas - Pa-s

viscosityL

Visosity of liquid - Pa-s

surfaceTension

Surface tension - N/m

angle

Pipe angle (0 is horizontal flow) - radian

Value

A matrix (class="frm_MB") including the information of flow regime (columns) at specified superfical velocities of gas and liquid.

References

Mukherjee, H., and J. P. Brill. 1985. Empirical Equations to Predict Flow Patterns in Two-Phase Inclined Flow. International Journal of Multiphase Flow 11 (3)

See Also

plot.frm_MB()

Examples

1
2
3
4
vs_range = MukherjeeBrill::util_MB_vs_vector(0.1, 10, 20, TRUE)
frm <- generate_frm_MB(vs_range, vs_range, 0.1,
                       40, 1002, 1.1E-05, 1.6E-03, 0.0695, pi/2)
plot(frm)    # MukherjeeBrill:::plot.frm_MB(frm)

sshunsuke/MukherjeeBrill documentation built on Jan. 21, 2022, 6:13 p.m.