|
| integer | variables_phase_advection::n_phases = 1 |
| | Number of phases.
|
| |
| integer, dimension(:), allocatable | variables_phase_advection::phase_advection_representation |
| | Phase type enum_phase_representation.
|
| |
| integer, dimension(:), allocatable | variables_phase_advection::phase_advection_phase_method |
| | Advection scheme (depends on the phase representation)
|
| |
| double precision | variables_phase_advection::phase_advection_time_step |
| | Advection current time step.
|
| |
| double precision | variables_phase_advection::phase_advection_time_step_n |
| | Advection previous time step.
|
| |
| double precision | variables_phase_advection::phase_advection_max_time_step |
| | Advection maximum time step.
|
| |
| type(t_boundary_condition), dimension(:), allocatable | variables_phase_advection::phase_advection_boundary_condition |
| | Boundary conditions for advection schemes. One per phase. Main grid.
|
| |
| type(t_boundary_condition), dimension(:), allocatable | variables_phase_advection::phase_advection_boundary_condition_r |
| | Refined grid.
|
| |
| type(t_boundary_condition), dimension(:), allocatable | variables_phase_advection::phase_advection_boundary_condition_t |
| | Temporary grid.
|
| |
| integer, dimension(:), allocatable | variables_phase_advection::phase_advection_isd_target |
| | List of enabled immersed boundaries for the advection of phases.
|
| |
| integer | variables_phase_advection::n_ibc_phases = 0 |
| | Number of immersed boundaries enabled for the advection of phases.
|
| |
| logical | variables_phase_advection::is_advection_refined_grid = .false. |
| | Refined grids.
|
| |
| integer | variables_phase_advection::advection_refined_grid_level = 0 |
| |
| logical | variables_phase_advection::is_refined_grid = .false. |
| |
| integer | variables_phase_advection::refined_grid_level = 0 |
| |
| logical | variables_phase_advection::phase_advection_is_advection_term = .true. |
| | Flag to disable the advection.
|
| |
| class(t_phase_advection_bc_initializer), pointer | variables_phase_advection::phase_advection_bc_initializer => null() |
| | Boundary condition initializers.
|
| |