dump_tem_BC_NormalHeader Subroutine

private subroutine dump_tem_BC_NormalHeader(me, headerfile)

dump normal header information to lua file

Arguments

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

Boundary condition construct to load the data into

character(len=*), intent(in) :: headerfile

name of the bc header lua file


Calls

proc~~dump_tem_bc_normalheader~~CallsGraph proc~dump_tem_bc_normalheader dump_tem_BC_NormalHeader proc~dump_tem_bc_logicalheader dump_tem_BC_logicalHeader proc~dump_tem_bc_normalheader->proc~dump_tem_bc_logicalheader proc~aot_out_close aot_out_close proc~dump_tem_bc_logicalheader->proc~aot_out_close proc~aot_out_open_table aot_out_open_table proc~dump_tem_bc_logicalheader->proc~aot_out_open_table proc~aot_out_close_table aot_out_close_table proc~dump_tem_bc_logicalheader->proc~aot_out_close_table proc~aot_out_val aot_out_val proc~dump_tem_bc_logicalheader->proc~aot_out_val proc~aot_out_open aot_out_open proc~dump_tem_bc_logicalheader->proc~aot_out_open

Called by

proc~~dump_tem_bc_normalheader~~CalledByGraph proc~dump_tem_bc_normalheader dump_tem_BC_NormalHeader proc~dump_tem_bc_normal dump_tem_BC_normal proc~dump_tem_bc_normal->proc~dump_tem_bc_normalheader

Contents


Source Code

  subroutine dump_tem_BC_NormalHeader( me, headerfile )
    ! ---------------------------------------------------------------------------
    !> Boundary condition construct to load the data into
    type(tem_BC_prop_type), intent(in) :: me
    !> name of the bc header lua file
    character(len=*), intent(in) :: headerfile
    ! ---------------------------------------------------------------------------
    ! ---------------------------------------------------------------------------

    call dump_tem_BC_logicalHeader( headerfile, 'hasNormal', me%nBCtypes, &
      &                             me%hasNormal                          )

  end subroutine dump_tem_BC_NormalHeader