MFC: Simulation
High-fidelity multiphase flow simulation
|
Functions/Subroutines | |
program | __m_bubbles_ee_fpp_f90__ |
subroutine | s_initialize_bubbles_ee_module |
subroutine | s_comp_alpha_from_n (q_cons_vf) |
subroutine | s_compute_bubbles_ee_rhs (idir, q_prim_vf) |
subroutine | s_compute_bubble_ee_source (q_cons_vf, q_prim_vf, t_step, rhs_vf) |
The purpose of this procedure is to compute the source terms that are needed for the bubble modeling. | |
subroutine | s_initialize_adap_dt (frho, fp, fr, fv, fr0, fpb, fpbdot, alf, fntait, fbtait, f_bub_adv_src, f_divu, h) |
Choose the initial time step size for the adaptive time stepping routine (See Heirer, E. Hairer S.P.Nørsett G. Wanner, Solving Ordinary Differential Equations I, Chapter II.4) | |
subroutine | s_advance_substep (frho, fp, fr, fv, fr0, fpb, fpbdot, alf, fntait, fbtait, f_bub_adv_src, f_divu, h, myr_tmp, myv_tmp, err) |
Integrate bubble variables over the given time step size, h. | |
real(wp) function | f_rddot (frho, fp, fr, fv, fr0, fpb, fpbdot, alf, fntait, fbtait, f_bub_adv_src, f_divu) |
Function that computes the bubble radial acceleration based on bubble models. | |
program __m_bubbles_ee_fpp_f90__ |
|
private |
Function that computes the bubble radial acceleration based on bubble models.
fRho | Current density |
fP | Current driving pressure |
fR | Current bubble radius |
fV | Current bubble velocity |
fR0 | Equilibrium bubble radius |
fpb | Internal bubble pressure |
fpbdot | Time-derivative of internal bubble pressure |
alf | bubble volume fraction |
fntait | Tait EOS parameter |
fBtait | Tait EOS parameter |
f_bub_adv_src | Source for bubble volume fraction |
f_divu | Divergence of velocity |
|
private |
Integrate bubble variables over the given time step size, h.
fRho | Current density |
fP | Current driving pressure |
fR | Current bubble radius |
fV | Current bubble velocity |
fR0 | Equilibrium bubble radius |
fpb | Internal bubble pressure |
fpbdot | Time-derivative of internal bubble pressure |
alf | bubble volume fraction |
fntait | Tait EOS parameter |
fBtait | Tait EOS parameter |
f_bub_adv_src | Source for bubble volume fraction |
f_divu | Divergence of velocity |
h | Time step size |
myR_tmp | Bubble radius at each stage |
myV_tmp | Bubble radial velocity at each stage |
err | Estimated error |
|
private |
|
private |
The purpose of this procedure is to compute the source terms that are needed for the bubble modeling.
q_prim_vf | Primitive variables |
q_cons_vf | Conservative variables |
|
private |
|
private |
Choose the initial time step size for the adaptive time stepping routine (See Heirer, E. Hairer S.P.Nørsett G. Wanner, Solving Ordinary Differential Equations I, Chapter II.4)
fRho | Current density |
fP | Current driving pressure |
fR | Current bubble radius |
fV | Current bubble velocity |
fR0 | Equilibrium bubble radius |
fpb | Internal bubble pressure |
fpbdot | Time-derivative of internal bubble pressure |
alf | bubble volume fraction |
fntait | Tait EOS parameter |
fBtait | Tait EOS parameter |
f_bub_adv_src | Source for bubble volume fraction |
f_divu | Divergence of velocity |
h | Time step size |
subroutine __m_bubbles_ee_fpp_f90__::s_initialize_bubbles_ee_module |