Skip to content

adam_flume_common_object ​

ADAM, FLUME common object: data and methods shared by all backends.

flume_common_object extends the library realm_object (which owns grid, tree, field, maps, IO, AMR, IB, RK and WENO objects) with the FLUME physics layer. The backends (flume_cpu_object, flume_fnl_object) extend it and implement the forest contract. Initialization order (issue #35, section 6.1): IO, numerics, physics (decides nv), blocks budget with the real per-block fields count, realm, BCs (before the first map build, so periodicity is seen by the tree), time, IC, diagnostics, fields allocation, uniform refinement.

Source: src/app/flume/common/adam_flume_common_object.F90

Dependencies

Contents ​

Variables ​

NameTypeAttributesDescription
SCHEME_TIME_TAGcharacter(len=11)parameterTime-integration family tag (forest admissibility).

Derived Types ​

flume_common_object ​

FLUME common object: data and methods shared by all backends.

Inheritance

Extends: realm_object

Components ​

NameTypeAttributesDescription
iotype(io_object)IO handler.
amrtype(amr_object)AMR marker handler.
slicestype(slices_object)Slices handler.
blanesmoantype(blanesmoan_object)Blanes-Moan integrator.
cfmtype(cfm_object)Commutator-Free Magnus integrator.
leapfrogtype(leapfrog_object)Leapfrog integrator.
flailtype(flail_object)Linear algebra methods handler.
wenotype(weno_object)WENO reconstructor.
ibtype(ib_object)Immersed boundary.
rktype(rk_object)Runge-Kutta integrator.
adamtype(adam_object)ADAM, grid + tree + field + maps orchestrator.
fdv_schemecharacter(len=:)allocatableFDV scheme, fd/fv.
fdv_orderinteger(kind=I4P)Order of finite difference/volume schemes, general order.
fdv_half_stencilinteger(kind=I4P)Half stencil length of finite difference/volume schemes.
fdv_half_stencilsinteger(kind=I4P)Half stencil length of fdv schemes for each derivative up to 6.
ngcinteger(kind=I4P)pointerNumber of ghost cells.
niinteger(kind=I4P)pointerNumber of cells in i direction.
njinteger(kind=I4P)pointerNumber of cells in j direction.
nkinteger(kind=I4P)pointerNumber of cells in k direction.
nbinteger(kind=I4P)pointerTotal blocks number for MPI.
blocks_numberinteger(kind=I4P)pointerActual blocks number.
nvinteger(kind=I4P)pointerNumber of variables in q vector.
realm_indexinteger(kind=I4P)Inter-realm seam coupling — currently-published stage buffer key.
stage_activeinteger(kind=I4P)Procedure pointer TBPs for FDV operators (set at initialization by backend).
compute_block_total_variationprocedure(compute_block_total_variation_interface)pass(self), pointerCompute TV.
compute_curlprocedure(compute_curl_interface)pass(self), pointerCompute curl.
compute_curl_extendedprocedure(compute_curl_interface)pass(self), pointerCompute curl on extended support.
compute_derivative1procedure(compute_derivative1_interface)pass(self), pointerCompute deriv1.
compute_derivative2procedure(compute_derivative2_interface)pass(self), pointerCompute deriv2.
compute_derivative4procedure(compute_derivative4_interface)pass(self), pointerCompute deriv4.
compute_divergenceprocedure(compute_divergence_interface)pass(self), pointerCompute dive.
compute_gradientprocedure(compute_gradient_interface)pass(self), pointerCompute grad.
compute_gradient_extendedprocedure(compute_gradient_interface)pass(self), pointerCompute gradient on extended support.
compute_laplacianprocedure(compute_laplacian_interface)pass(self), pointerCompute laplac.
amr_locked_logicalRuntime AMR locked after initialization.
save_auxiliary_fieldslogicalSave the auxiliary variables with the fields.
glm_speed_reportedreal(kind=R8P)Largest wave speed above c_h reported so far.
divb_reportedreal(kind=R8P)Largest max|div B| above divb_tol reported so far.
divb_seaminteger(kind=I4P)allocatableSeam faces flags of the div(B) history [nb, 6].
qreal(kind=R8P)allocatableConservative variables [nv, 1-ngc:ni+ngc, ..., nb].
dqreal(kind=R8P)allocatableResiduals [nv, 1-ngc:ni+ngc, ..., nb].
q_auxreal(kind=R8P)allocatableAuxiliary variables [nv_aux, 1-ngc:ni+ngc, ..., nb].
q_nametype(string)allocatableConservative variables names.
dq_nametype(string)allocatableResiduals names.
q_aux_nametype(string)allocatableAuxiliary variables names.
bctype(flume_bc_object)Boundary conditions.
diagnosticstype(flume_diagnostics_object)Diagnostics.
ictype(flume_ic_object)Initial conditions.
numericstype(flume_numerics_object)Numerics.
physicstype(flume_physics_object)Physics.
timetype(flume_time_object)Time handler.

Type-Bound Procedures ​

NameAttributesDescription
load_fdv_from_filepass(self)Load FDV config from file.
initialize_forestpass(self)Invoked by forest%initialize per realm at startup.
compute_local_dt_forestpass(self)Invoked by forest%compute_global_dt during the min reduction.
advance_one_step_forestpass(self)Invoked by forest%evolve_one_step per realm per timestep.
stages_per_step_forestpass(self)Number of integrator stages this realm exposes per step.
open_step_forestpass(self)Per-step prologue (multi-realm path).
begin_stage_forestpass(self)Begin one integrator stage on this realm (multi-realm path).
end_stage_forestpass(self)End the stage: residuals + assignment (multi-realm path).
close_step_forestpass(self)Per-step epilogue (multi-realm path).
post_step_forestpass(self)Invoked by forest%post_step per realm per timestep.
is_done_forestpass(self)Invoked by forest%is_done during the termination reduction.
finalize_forestpass(self)Invoked by forest%finalize per realm at shutdown.
finalize_mpi_forestpass(self)Process-global MPI finalize; forest calls it ONCE after all.
fill_seam_from_peer_forestpass(self)Receive-side roundtrip: copy peer's interior into self's ghosts.
after_topology_build_forestpass(self)Backend hook invoked once after the forest builds the seam maps.
apply_reflux_to_stage_forestpass(self)Apply Berger-Colella reflux to self's stage buffer.
close_block_xh5fnopassClose XH5F file block.
close_file_xh5fnopassClose XH5F file.
open_block_xh5fpass(self)Open block file XH5F.
open_file_xh5fpass(self)Open file XH5F.
save_q_xh5fpass(self)Save in XH5F (XDMF/HDF5) format.
compute_curl_fd_extendedpass(self)Compute curl of vector field, finite difference, even for half gcs.
compute_gradient_fd_extendedpass(self)Compute gradient of scalar field, finite difference, even for half
amr_updatepass(self)Do AMR update (initialization-time only).
mark_by_geometrypass(self)Mark blocks to be refined by a primitive geometric box.
mark_by_gradientpass(self)Mark blocks by the gradient of a conservative or auxiliary variable.
mark_by_solidpass(self)Mark blocks crossed by the surface of an immersed solid.
accumulate_seam_skinpass(self)Route one weighted seam face skin to the forest's flux register.
allocate_commonpass(self)Allocate common data.
compute_fields_numberpass(self)Compute the block-sized fields allocated per block.
compute_phipass(self)Compute the immersed solids distance function (host).
destroy_commonpass(self)Free common data.
glm_lambdapass(self)Return the GLM bound of the local dt, c_h max sum_d 1/dx_d.
initializepass(self)Initialize the common data.
null_freezepass(self)Return the variable each null direction freezes.
report_divbpass(self)Reduce and save the div(B) norms, apply the divb_tol monitor.
report_glm_speedpass(self)Check c_h against the fastest wave (warning or stop).
load_restart_filespass(self)Load restart files.
save_restart_filespass(self)Save restart files.
save_slicespass(self)Save the slices on their cadence.
save_xh5fpass(self)Save fields in XH5F format.
set_divb_seampass(self)Set the seam faces flags of the div(B) history.
set_glm_dampingpass(self)Set the GLM damping once the grid exists.
coupling_descriptor_forestpass(self)Return the realm coupling descriptor.
block_spacingpass(self)Return the spacing of a block by a delta criterion.
check_amr_block_cellspass(self)Check the block cells numbers against the 2:1 refinement.
check_ngc_numberpass(self)Check the ghost cells number against the stencils.
check_slicespass(self)Check the slices interpolation types.
compute_mhd_derivedpass(self)Compute the MHD derived output fields of one block.
compute_q_aux_hostpass(self)Compute the auxiliary variables of the host q.
io_initializepass(self)Build the variables names.

Subroutines ​

amr_update ​

Do AMR update: amr%iters sweeps over the markers until the grid stabilizes (initialization-time only).

fortran
subroutine amr_update(self)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.

Call graph

mark_by_geometry ​

Mark blocks to be refined by a primitive axis-aligned box (deterministic, solution-independent).

A block is flagged TO_BE_REFINED iff its centroid lies inside [box_emin, box_emax] and its refinement level is below target_level; every other block is left untouched (the marker is additive).

fortran
subroutine mark_by_geometry(self, box_emin, box_emax, target_level, do_init)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.
box_eminreal(kind=R8P)inBox minimum corner.
box_emaxreal(kind=R8P)inBox maximum corner.
target_levelinteger(kind=I4P)inRefine blocks below this level.
do_initlogicalinoptionalRe-initialize refinements queries.

Call graph

mark_by_gradient ​

Mark blocks by the gradient magnitude of a conservative (field = 1) or auxiliary (field = 2) variable.

CHASE semantics: the admissible cell spacing of a block is delta_fine where max |grad var| > tol, else delta_coarse; a block coarser than admissible is refined, a block whose parent (spacing doubled) would still be admissible is derefined, any other block is left untouched. The spacing of a block is chosen by delta_type (x, y, z or max). The gradient uses the interior cells only (centred differences, one-sided at the block edges), so the marker does not depend on the ghost cells: it runs on the host state before any ghost exchange, for both backends (AMR is initialization-time only).

fortran
subroutine mark_by_gradient(self, field, ivar, tol, delta_type, delta_fine, delta_coarse)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.
fieldinteger(kind=I4P)inMarker field: 1 conservative, 2 auxiliary variables.
ivarinteger(kind=I4P)inVariable index in the marker field.
tolreal(kind=R8P)inGradient magnitude tolerance.
delta_typecharacter(len=*)inBlock spacing criterion: x, y, z, max.
delta_finereal(kind=R8P)inAdmissible spacing where the gradient exceeds tol.
delta_coarsereal(kind=R8P)inAdmissible spacing elsewhere.

Call graph

mark_by_solid ​

Mark blocks by the surface of immersed solid solid: CHASE semantics, with the refine/derefine rule of the gradient marker.

A block is crossed by the surface when its distance function (interior and ghost cells) changes sign; its admissible spacing is then delta_fine, delta_coarse otherwise. The distance function must be current (the caller computes it on the present grid). A run without solids, or a solid index out of range, is fatal (CHASE read phi unallocated in that case, issue #35 C-8).

fortran
subroutine mark_by_solid(self, solid, delta_type, delta_fine, delta_coarse)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.
solidinteger(kind=I4P)inSolid index.
delta_typecharacter(len=*)inBlock spacing criterion: x, y, z, max.
delta_finereal(kind=R8P)inAdmissible spacing across the surface.
delta_coarsereal(kind=R8P)inAdmissible spacing elsewhere.

Call graph

accumulate_seam_skin ​

Route one seam face skin of block b, face fec, weighted by weight, to the forest's flux register.

Shared by the backends (the register is host-side): the CPU packs skin from its face fluxes, the FNL backend packs it on the device and copies it to the host. skin(v, c) is the face flux with the cell index c running over the two tangential axes, inner fastest (x faces: j, k; y faces: i, k; z faces: i, j), the register order. Coarse side (positive register index): the skin is the coarse face. Fine side (negative index): on an intra-realm AMR seam the skin is 2:1-restricted (2x2 average) into this block's quadrant of the coarse face, the quadrant offset precomputed by the forest from the Morton codes (maps%amr_seam_quadrant); on an inter-realm mirror seam (same resolution) it covers the coarse face 1:1 and is accumulated unrestricted.

FLUME weighs every stage by its SSP coefficient, weight = beta_s: the register then holds the flux of the whole step, sum_s beta_s F_s, exactly the flux the committed update q + dt sum_s beta_s dq_s used, and the end-of-step correction restores conservation to round-off (issue #35, P5; AMReX non-subcycled flux register).

fortran
subroutine accumulate_seam_skin(self, flux_register, b, fec, weight, skin)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inThe equation.
flux_registerclass(flux_register_object)inoutForest's flux register.
binteger(kind=I4P)inBlock index.
fecinteger(kind=I4P)inFace (1..6: -x, +x, -y, +y, -z, +z).
weightreal(kind=R8P)inStage weight.
skinreal(kind=R8P)inFace skin (nv, inner_n*outer_n).

Call graph

allocate_common ​

Allocate common data.

fortran
subroutine allocate_common(self)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.

Call graph

compute_phi ​

Compute the distance function of the immersed solids on the host (a no-op without solids); the solids are static, so the backends compute it once per grid (initialization, restart, initial AMR).

fortran
subroutine compute_phi(self)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.

Call graph

compute_fields_number ​

Compute the block-sized fields FLUME allocates per block, the fields_number of the blocks budget.

Both backends allocate the same nb-sized arrays, on the host (CPU) or on the device (FNL): q, dq (2 nv), q_aux (nv_aux), the three face fluxes (3 nv, counted as full block fields) and the Runge-Kutta stages (rk_stored_stages_number nv). Requires physics initialized.

fortran
subroutine compute_fields_number(self, file_parameters, fields_number)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.
file_parameterstype(file_ini)inSimulation parameters ini file handler.
fields_numberinteger(kind=I4P)outBlock-sized fields allocated per block.

Call graph

destroy_common ​

Free common data.

fortran
subroutine destroy_common(self)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.

Call graph

initialize ​

Initialize the common data (issue #35, section 6.1, step 3).

fortran
subroutine initialize(self, filename, memory_avail, nv, fields_number, verbose, L0)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inouttargetThe equation.
filenamecharacter(len=*)inInput file name.
memory_availreal(kind=R8P)invalueMemory available for single MPI process.
nvinteger(kind=I4P)inoptionalUnused: nv is decided by the physics.
fields_numberinteger(kind=I4P)inoptionalBlock-sized fields per block (default: computed).
verboselogicalinoptionalTrigger verbose output.
L0real(kind=R8P)inoptionalUnused: FLUME is dimensional.

Call graph

report_divb ​

Reduce the div(B) norms of this rank over all ranks, save the div(B) history row and apply the monitor (issue #41, D-10): max|div B| > [mhd].(divb_tol) (> 0) is fatal with divb_error, otherwise a warning logged by rank 0 each time the maximum exceeds the largest one reported so far.

fortran
subroutine report_divb(self, norms)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.
normsreal(kind=R8P)inmax|div B|, sum |div B| dV, seam-local max|div B| (rank).

Call graph

report_glm_speed ​

Check the GLM cleaning speed against the fastest wave (issue #41, section 3.5, D-9): max(|u_d| + c_{f,d}) > c_h is fatal with [mhd].(glm_ch_check) = error, otherwise a warning logged by rank 0 each time the speed exceeds the largest one reported so far (GLM stays stable, dt includes c_h, but the cleaning is slower than the fastest wave).

fortran
subroutine report_glm_speed(self, speed_max)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.
speed_maxreal(kind=R8P)inFastest wave speed of this rank.

Call graph

load_restart_files ​

Load restart files.

fortran
subroutine load_restart_files(self, t, time)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.
tinteger(kind=I4P)outTime iteration.
timereal(kind=R8P)outTime.

Call graph

save_restart_files ​

Save restart files.

fortran
subroutine save_restart_files(self)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.

Call graph

save_xh5f ​

Save fields in XH5F format: q always, dq when [IO].(save_residual_fields), the auxiliary variables (computed from the saved q, ghost cells included) when [IO].(save_auxiliary_fields).

fortran
subroutine save_xh5f(self, output_basename, with_ghost)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.
output_basenamecharacter(len=*)inoptionalOutput basename.
with_ghostlogicalinoptionalFlag to save ghost cells.

Call graph

set_divb_seam ​

Set the seam faces flags of the div(B) history (issue #41, D-10): a block face is a seam face when the forest registered it in the flux register (a 2:1 AMR or inter-realm seam, inter_realm_face_register_index /= 0).

fortran
subroutine set_divb_seam(self)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.

Call graph

set_glm_damping ​

Set the GLM damping once the grid exists (issue #41, section 3.5): the minimum cell spacing of the realm over the active directions (MPI-reduced) is the min-cell damping length. A no-op without GLM.

fortran
subroutine set_glm_damping(self)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.

Call graph

save_slices ​

Save the slices (library slices_object, [slices] / [slice_N]) of the conservative variables on their cadence; the caller has refreshed the ghost cells of the host q (the interpolation stencils read them).

fortran
subroutine save_slices(self)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.

Call graph

coupling_descriptor_forest ​

Return the realm coupling descriptor checked by the forest for stage-coincident admissibility.

fortran
subroutine coupling_descriptor_forest(self, scheme_time, rk_scheme, nv)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inThe equation.
scheme_timecharacter(len=:)outallocatableTime-integration family tag.
rk_schemecharacter(len=:)outallocatableWithin-family scheme tag.
nvinteger(kind=I4P)outNumber of conserved variables on this realm.

Call graph

seam_skin_cell ​

Return the interior cell (i, j, k) of skin cell c on the face of normal axis and side sgn (register order, inner tangential axis fastest). Shared by the host and device reflux applications.

Attributes: pure

fortran
subroutine seam_skin_cell(axis, sgn, ni, nj, nk, c, i, j, k)

Arguments

NameTypeIntentAttributesDescription
axisinteger(kind=I4P)inFace normal axis, 1..3.
sgninteger(kind=I4P)inFace side, +1 maximum, -1 minimum.
niinteger(kind=I4P)inGrid dimensions.
njinteger(kind=I4P)inGrid dimensions.
nkinteger(kind=I4P)inGrid dimensions.
cinteger(kind=I4P)inSkin cell index.
iinteger(kind=I4P)outInterior cell (0 on a malformed axis).
jinteger(kind=I4P)outInterior cell (0 on a malformed axis).
kinteger(kind=I4P)outInterior cell (0 on a malformed axis).

Call graph

check_slices ​

Check the interpolation type of every slice: the library interpolation leaves the value undefined for an unknown type, so an unknown one is fatal here.

fortran
subroutine check_slices(self)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inThe equation.

Call graph

compute_mhd_derived ​

Compute the MHD derived output fields of block b (issue #41, section 9) from the host q and q_aux: total pressure pt = p + |B|^2 / 2, plasma beta 2 p / |B|^2 (huge where B = 0), |B| (every cell), and div B (interior cells, zero on the ghost cells) by the centred finite difference of the div(B) history (the library derivative, half stencil [fdv], null directions weighted zero). The caller has refreshed the ghost cells.

fortran
subroutine compute_mhd_derived(self, b, derived)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inThe equation.
binteger(kind=I4P)inBlock index.
derivedreal(kind=R8P)outpt, beta, bmag, divb.

Call graph

compute_q_aux_host ​

Compute the auxiliary variables of the host q on every cell, ghost cells included (output and AMR marking only: the backends compute their own auxiliary variables in the space operator). The model is selected outside the loops.

fortran
subroutine compute_q_aux_host(self)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.

Call graph

check_amr_block_cells ​

Check that a run with init-time refinement has an even number of block cells along every non-null axis.

A 2:1 child covers half of its parent: with an odd cell count its boundary falls in the middle of a parent cell, the coarse-fine ghost fill reads undefined values and the residual is NaN from the first stage (issue #37, measured with ni = 25). Uniform refinement (iu_ref_levels) has no coarse-fine faces and is not affected.

fortran
subroutine check_amr_block_cells(self)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inThe equation.

Call graph

check_ngc_number ​

Check the ghost cells number against the WENO stencil half-width.

fortran
subroutine check_ngc_number(self)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inThe equation.

Call graph

io_initialize ​

Build the variables names from the physical model (the same predicate that decided nv).

fortran
subroutine io_initialize(self)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inoutThe equation.

Call graph

Functions ​

glm_lambda ​

Return the GLM bound of the local time step, c_h max_b sum_{d active} 1 / dx_d (issue #41, section 3.5): the (B_n, psi) waves travel at c_h along every active direction, the multi-dimensional form of dt <= CFL dx / c_h consistent with the fluid bound sum_d (|u_d| + c_{f,d}) / dx_d. Zero without GLM; local (the forest reduces dt).

Returns: real(kind=R8P)

fortran
function glm_lambda(self) result(lambda)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inThe equation.

Call graph

null_freeze ​

Return, per direction, the conservative variable whose residual a null direction freezes (0: none).

Euler: the momentum along the null direction (CHASE semantics, issue #35, section 3.4). MHD: none, the 1-D MHD Riemann problems evolve the transverse momentum and field through the fluxes of the active directions (issue #41, M2-P3). Host data passed to the model-independent flux difference: no model branch in the kernels.

Returns: integer(kind=I4P)

fortran
function null_freeze(self) result(freeze)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inThe equation.

Call graph

ib_cut_spacing ​

Return the spacing of a fluid cell along one direction, shortened where the solid surface crosses its stencil (CHASE semantics, issue #35 D-9).

When the fluid cell (phi_c < 0) has one neighbour inside the solid (phi_m phi_p < 0), the surface lies at the distance delta = -phi_c / (phi_s - phi_c + eps) ds from the cell centre towards the solid neighbour s, and the spacing becomes ds / 2 + delta; otherwise it is ds.

Attributes: pure

Returns: real(kind=R8P)

fortran
function ib_cut_spacing(phi_c, phi_m, phi_p, ds, eps) result(ds_cut)

Arguments

NameTypeIntentAttributesDescription
phi_creal(kind=R8P)inDistance function of the cell (negative in the fluid).
phi_mreal(kind=R8P)inDistance function of the minus neighbour.
phi_preal(kind=R8P)inDistance function of the plus neighbour.
dsreal(kind=R8P)inSpacing.
epsreal(kind=R8P)inGuard against a vanishing denominator.

Call graph

refinement_by_spacing ​

Return the refinement query of a block of spacing dc against the admissible spacing delta: refine when too coarse, derefine when its parent (spacing doubled) would still be admissible, untouched otherwise.

Attributes: pure

Returns: integer(kind=I4P)

fortran
function refinement_by_spacing(dc, delta) result(refinement)

Arguments

NameTypeIntentAttributesDescription
dcreal(kind=R8P)inBlock spacing.
deltareal(kind=R8P)inAdmissible spacing.

Call graph

block_spacing ​

Return the spacing of block b by the AMR delta criterion: x, y, z, or max over the active directions.

Returns: real(kind=R8P)

fortran
function block_spacing(self, b, delta_type) result(dc)

Arguments

NameTypeIntentAttributesDescription
selfclass(flume_common_object)inThe equation.
binteger(kind=I4P)inBlock index.
delta_typecharacter(len=*)inDelta criterion.

Call graph