Skip read scalar from the vtk file
subroutine skip_scalar()
!< Skip read scalar from the vtk file
implicit none
DebugCall('read_output_vtk: skip_scalar')
read(IN_FILE_UNIT, *) !'SCALARS '//trim(name)//' FLOAT'
read(IN_FILE_UNIT, *) !'LOOKUP_TABLE default'
do k = 1, kmx - 1
do j = 1, jmx - 1
do i = 1, imx - 1
read(IN_FILE_UNIT, *)
end do
end do
end do
read(IN_FILE_UNIT, *)
end subroutine skip_scalar