\brief Loading cylinder information from config file \n
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(tem_cylinder_type), | intent(out), | allocatable | :: | me(:) |
array of cylinders |
|
type(tem_transformation_type), | intent(in) | :: | transform |
transformation for spatial object |
||
type(flu_State) | :: | conf |
lua state |
|||
integer, | intent(in) | :: | thandle |
subroutine tem_load_cylinder(me, transform, conf, thandle)
! --------------------------------------------------------------------------!
!inferface variables
!> array of cylinders
type(tem_cylinder_type), allocatable, intent(out) :: me(:)
!> transformation for spatial object
type(tem_transformation_type), intent(in) :: transform
!> lua state
type(flu_state) :: conf
integer, intent(in) :: thandle !< handle for canonical objects
! --------------------------------------------------------------------------!
! local varaibles
integer :: cyl_handle, cyl_subHandle
integer :: iObj, nObjects
! --------------------------------------------------------------------------!
write(logunit(1),*) 'Loading cylinder:'
call aot_table_open(L = conf, parent = thandle, thandle = cyl_handle, &
& key = 'object')
call aot_table_open(L=conf, parent = cyl_handle, thandle = cyl_subHandle, &
& pos = 1 )
if ( cyl_subHandle .eq. 0) then
!object is a single table
allocate(me(1))
call aot_table_close(L=conf, thandle=cyl_subHandle)
call tem_load_cylinder_single( me(1), transform, conf, cyl_handle )
else
!object is a multiple table
call aot_table_close(L=conf, thandle=cyl_subHandle)
nObjects = aot_table_length(L=conf, thandle=cyl_handle)
allocate(me(nObjects))
do iObj=1,nObjects
call aot_table_open(L=conf, parent=cyl_handle, thandle=cyl_suBHandle,&
& pos=iObj)
call tem_load_cylinder_single(me(iObj), transform, conf, cyl_Subhandle)
call aot_table_close(L=conf, thandle=cyl_subHandle)
end do
end if
call aot_table_close(L=conf, thandle=cyl_Handle)
end subroutine tem_load_cylinder