MFC: Simulation
High-fidelity multiphase flow simulation
|
Functions/Subroutines | |
program | __m_mpi_common_fpp_f90__ |
subroutine | s_initialize_mpi_common_module |
The computation of parameters, the allocation of memory, the association of pointers and/or the execution of any other procedures that are necessary to setup the module. | |
subroutine | s_mpi_initialize |
The subroutine initializes the MPI execution environment and queries both the number of processors which will be available for the job and the local processor rank. | |
subroutine | s_initialize_mpi_data (q_cons_vf, ib_markers, levelset, levelset_norm, beta) |
subroutine | s_mpi_gather_data (my_vector, counts, gathered_vector, root) |
subroutine | mpi_bcast_time_step_values (proc_time, time_avg) |
subroutine | s_prohibit_abort (condition, message) |
subroutine | s_mpi_reduce_stability_criteria_extrema (icfl_max_loc, vcfl_max_loc, ccfl_max_loc, rc_min_loc, icfl_max_glb, vcfl_max_glb, ccfl_max_glb, rc_min_glb) |
The goal of this subroutine is to determine the global extrema of the stability criteria in the computational domain. This is performed by sifting through the local extrema of each stability criterion. Note that each of the local extrema is from a single process, within its assigned section of the computational domain. Finally, note that the global extrema values are only bookkeept on the rank 0 processor. | |
subroutine | s_mpi_allreduce_sum (var_loc, var_glb) |
The following subroutine takes the input local variable from all processors and reduces to the sum of all values. The reduced variable is recorded back onto the original local variable on each processor. | |
subroutine | s_mpi_allreduce_min (var_loc, var_glb) |
The following subroutine takes the input local variable from all processors and reduces to the minimum of all values. The reduced variable is recorded back onto the original local variable on each processor. | |
subroutine | s_mpi_allreduce_max (var_loc, var_glb) |
The following subroutine takes the input local variable from all processors and reduces to the maximum of all values. The reduced variable is recorded back onto the original local variable on each processor. | |
subroutine | s_mpi_reduce_min (var_loc) |
The following subroutine takes the inputted variable and determines its minimum value on the entire computational domain. The result is stored back into inputted variable. | |
subroutine | s_mpi_reduce_maxloc (var_loc) |
The following subroutine takes the first element of the 2-element inputted variable and determines its maximum value on the entire computational domain. The result is stored back into the first element of the variable while the rank of the processor that is in charge of the sub- domain containing the maximum is stored into the second element of the variable. | |
subroutine | s_mpi_abort (prnt, code) |
The subroutine terminates the MPI execution environment. | |
subroutine | s_mpi_barrier |
Halts all processes until all have reached barrier. | |
subroutine | s_mpi_finalize |
The subroutine finalizes the MPI execution environment. | |
subroutine | s_mpi_sendrecv_variables_buffers (q_cons_vf, pb, mv, mpi_dir, pbc_loc) |
The goal of this procedure is to populate the buffers of the cell-average conservative variables by communicating with the neighboring processors. | |
subroutine | s_finalize_mpi_common_module |
Module deallocation and/or disassociation procedures. | |
program __m_mpi_common_fpp_f90__ |
|
private |
|
private |
Module deallocation and/or disassociation procedures.
subroutine __m_mpi_common_fpp_f90__::s_initialize_mpi_common_module |
The computation of parameters, the allocation of memory, the association of pointers and/or the execution of any other procedures that are necessary to setup the module.
|
private |
|
private |
The subroutine terminates the MPI execution environment.
prnt | error message to be printed |
|
private |
The following subroutine takes the input local variable from all processors and reduces to the maximum of all values. The reduced variable is recorded back onto the original local variable on each processor.
var_loc | Some variable containing the local value which should be reduced amongst all the processors in the communicator. |
var_glb | The globally reduced value |
|
private |
The following subroutine takes the input local variable from all processors and reduces to the minimum of all values. The reduced variable is recorded back onto the original local variable on each processor.
var_loc | Some variable containing the local value which should be reduced amongst all the processors in the communicator. |
var_glb | The globally reduced value |
|
private |
The following subroutine takes the input local variable from all processors and reduces to the sum of all values. The reduced variable is recorded back onto the original local variable on each processor.
var_loc | Some variable containing the local value which should be reduced amongst all the processors in the communicator. |
var_glb | The globally reduced value |
|
private |
Halts all processes until all have reached barrier.
|
private |
The subroutine finalizes the MPI execution environment.
|
private |
|
private |
The subroutine initializes the MPI execution environment and queries both the number of processors which will be available for the job and the local processor rank.
|
private |
The following subroutine takes the first element of the 2-element inputted variable and determines its maximum value on the entire computational domain. The result is stored back into the first element of the variable while the rank of the processor that is in charge of the sub- domain containing the maximum is stored into the second element of the variable.
var_loc | On input, this variable holds the local value and processor rank, which are to be reduced among all the processors in communicator. On output, this variable holds the maximum value, reduced amongst all of the local values, and the process rank to which the value belongs. |
|
private |
The following subroutine takes the inputted variable and determines its minimum value on the entire computational domain. The result is stored back into inputted variable.
var_loc | holds the local value to be reduced among all the processors in communicator. On output, the variable holds the minimum value, reduced amongst all of the local values. |
|
private |
The goal of this subroutine is to determine the global extrema of the stability criteria in the computational domain. This is performed by sifting through the local extrema of each stability criterion. Note that each of the local extrema is from a single process, within its assigned section of the computational domain. Finally, note that the global extrema values are only bookkeept on the rank 0 processor.
icfl_max_loc | Local maximum ICFL stability criterion |
vcfl_max_loc | Local maximum VCFL stability criterion |
Rc_min_loc | Local minimum Rc stability criterion |
icfl_max_glb | Global maximum ICFL stability criterion |
vcfl_max_glb | Global maximum VCFL stability criterion |
Rc_min_glb | Global minimum Rc stability criterion |
|
private |
The goal of this procedure is to populate the buffers of the cell-average conservative variables by communicating with the neighboring processors.
q_cons_vf | Cell-average conservative variables |
mpi_dir | MPI communication coordinate direction |
pbc_loc | Processor boundary condition (PBC) location |
|
private |