MFC: Simulation
High-fidelity multiphase flow simulation
|
Functions/Subroutines | |
program | __m_helper_fpp_f90__ |
subroutine | s_comp_n_from_prim (vftmp, rtmp, ntmp, weights) |
Computes the bubble number density n from the primitive variables. | |
subroutine | s_comp_n_from_cons (vftmp, nrtmp, ntmp, weights) |
subroutine | s_print_2d_array (a, div) |
subroutine | s_initialize_nonpoly |
Initializes non-polydisperse bubble modeling. | |
subroutine | s_transcoeff (omega, peclet, re_trans, im_trans) |
Computes the transfer coefficient for the non-polytropic bubble compression process. | |
subroutine | s_int_to_str (i, res) |
subroutine | s_simpson |
Computes the Simpson weights for quadrature. | |
real(wp) function, dimension(3) | f_cross (a, b) |
This procedure computes the cross product of two vectors. | |
subroutine | s_swap (lhs, rhs) |
This procedure swaps two real numbers. | |
function | f_create_transform_matrix (p, center) |
This procedure creates a transformation matrix. | |
subroutine | s_transform_vec (vec, matrix) |
This procedure transforms a vector by a matrix. | |
subroutine | s_transform_triangle (triangle, matrix, matrix_n) |
This procedure transforms a triangle by a matrix, one vertex at a time. | |
subroutine | s_transform_model (model, matrix, matrix_n) |
This procedure transforms a model by a matrix, one triangle at a time. | |
type(t_bbox) function | f_create_bbox (model) |
This procedure creates a bounding box for a model. | |
logical function | f_xor (lhs, rhs) |
integer function | f_logical_to_int (predicate) |
recursive real(wp) function | unassociated_legendre (x, l) |
This function generates the unassociated legendre poynomials. | |
recursive real(wp) function | spherical_harmonic_func (x, phi, l, m) |
This function calculates the spherical harmonic function evaluated at x and phi. | |
recursive real(wp) function | associated_legendre (x, l, m) |
This function generates the associated legendre polynomials evaluated at x with inputs l and m. | |
recursive integer(kind=int64_kind) function | double_factorial (n) |
This function calculates the double factorial value of an integer. | |
recursive integer(kind=int64_kind) function | factorial (n) |
The following function calculates the factorial value of an integer. | |
program __m_helper_fpp_f90__ |
|
private |
This function generates the associated legendre polynomials evaluated at x with inputs l and m.
x | is the input value |
l | is the degree |
m | is the order |
|
private |
This function calculates the double factorial value of an integer.
n | is the input integer |
|
private |
This procedure creates a bounding box for a model.
model | Model to create bounding box for. |
|
private |
This procedure creates a transformation matrix.
p | Parameters for the transformation. |
|
private |
This procedure computes the cross product of two vectors.
a | First vector. |
b | Second vector. |
|
private |
|
private |
|
private |
The following function calculates the factorial value of an integer.
n | is the input integer |
|
private |
subroutine __m_helper_fpp_f90__::s_comp_n_from_prim | ( | real(wp), intent(in) | vftmp, |
real(wp), dimension(nb), intent(in) | rtmp, | ||
real(wp), intent(out) | ntmp, | ||
real(wp), dimension(nb), intent(in) | weights ) |
Computes the bubble number density n from the primitive variables.
vftmp | is the void fraction |
Rtmp | is the bubble radii |
ntmp | is the output number bubble density |
|
private |
Initializes non-polydisperse bubble modeling.
|
private |
|
private |
|
private |
Computes the Simpson weights for quadrature.
|
private |
This procedure swaps two real numbers.
lhs | Left-hand side. |
rhs | Right-hand side. |
|
private |
Computes the transfer coefficient for the non-polytropic bubble compression process.
omega | natural frqeuencies |
peclet | Peclet number |
Re_trans | Real part of the transport coefficients |
Im_trans | Imaginary part of the transport coefficients |
|
private |
This procedure transforms a model by a matrix, one triangle at a time.
model | Model to transform. |
matrix | Transformation matrix. |
|
private |
This procedure transforms a triangle by a matrix, one vertex at a time.
triangle | Triangle to transform. |
matrix | Transformation matrix. |
|
private |
This procedure transforms a vector by a matrix.
vec | Vector to transform. |
matrix | Transformation matrix. |
|
private |
This function calculates the spherical harmonic function evaluated at x and phi.
x | is the x coordinate |
phi | is the phi coordinate |
l | is the degree |
m | is the order |
|
private |
This function generates the unassociated legendre poynomials.
x | is the input value |
l | is the degree |