Dumps array of condition to given unit
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(tem_condition_type), | intent(in) | :: | me(:) |
condition to write into the lua file |
||
integer, | intent(in) | :: | outUnit |
unit to write to |
subroutine tem_condition_dump_vector(me, outUnit)
! -------------------------------------------------------------------- !
!> condition to write into the lua file
type(tem_condition_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_condition_out_vector( me, conf )
call aot_out_close( put_conf = conf )
end subroutine tem_condition_dump_vector