Description Usage Arguments Value References See Also Examples
View source: R/MukherjeeBrill_facade.R
Generate a matrix (class="frm_MB") for a flow regime map. Range of the map is specified by vector_vsG
and vector_vsL
.
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
)
|
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 |
A matrix (class="frm_MB") including the information of flow regime (columns) at specified superfical velocities of gas and liquid.
vsG
: Superficial velocity of gas
vsL
: Superficial velocity of liquid
fr
: Flow regime (1: Stratified, 2: Annular, 3: Slug, and 4: Bubbly)
NGv
, NLv
, NL
, NGvSM
, NGvBS
, NLvBS_up
, NLvST
: Internal properties used in the prediction of flow regime
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)
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.