tem_reduction_spatial_dump_single Subroutine

private subroutine tem_reduction_spatial_dump_single(me, outUnit)

Dump single reduction to given unit

Arguments

Type IntentOptional Attributes Name
type(tem_reduction_spatial_type), intent(in) :: me

reduction to write into the lua file

integer, intent(in) :: outUnit

unit to write to


Calls

proc~~tem_reduction_spatial_dump_single~~CallsGraph proc~tem_reduction_spatial_dump_single tem_reduction_spatial_dump_single aot_out_close aot_out_close proc~tem_reduction_spatial_dump_single->aot_out_close aot_out_open aot_out_open proc~tem_reduction_spatial_dump_single->aot_out_open proc~tem_reduction_spatial_out_single tem_reduction_spatial_out_single proc~tem_reduction_spatial_dump_single->proc~tem_reduction_spatial_out_single aot_out_val aot_out_val proc~tem_reduction_spatial_out_single->aot_out_val

Called by

proc~~tem_reduction_spatial_dump_single~~CalledByGraph proc~tem_reduction_spatial_dump_single tem_reduction_spatial_dump_single interface~tem_reduction_spatial_dump tem_reduction_spatial_dump interface~tem_reduction_spatial_dump->proc~tem_reduction_spatial_dump_single

Source Code

  subroutine tem_reduction_spatial_dump_single(me, outUnit)
    ! ---------------------------------------------------------------------------
    !> reduction to write into the lua file
    type(tem_reduction_spatial_type), intent(in) :: me
    !> unit to write to
    integer, intent(in) :: outUnit
    ! ---------------------------------------------------------------------------
    ! aotus type handling the output to the file in lua format
    type(aot_out_type) :: conf
    ! ---------------------------------------------------------------------------
    call aot_out_open( put_conf = conf, outUnit = outUnit )
    call tem_reduction_spatial_out_single( me, conf )
    call aot_out_close( put_conf = conf )

  end subroutine tem_reduction_spatial_dump_single