Write out a shape boundary label in lua format
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=labelLen), | intent(in) | :: | bcLabels(:) |
Boundary labels |
||
type(aot_out_type), | intent(inout) | :: | conf |
Aotus type handling the output to the file in lua format |
subroutine tem_shape_bcLabel_out( bcLabels, conf ) ! -------------------------------------------------------------------------- !> Boundary labels character(len=labelLen), intent(in) :: bcLabels(:) !> Aotus type handling the output to the file in lua format type(aot_out_type), intent(inout) :: conf ! -------------------------------------------------------------------------- integer :: iLabel ! -------------------------------------------------------------------------- call aot_out_open_table( put_conf = conf, tname = 'boundary' ) do iLabel = 1, size(bcLabels) call aot_out_val( put_conf = conf, val = bcLabels(iLabel) ) end do call aot_out_close_table( put_conf = conf ) end subroutine tem_shape_bcLabel_out