Skip read the header in the tecplot file
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(controltype), | intent(in) | :: | control |
subroutine read_header(control)
!< Skip read the header in the tecplot file
implicit none
type(controltype), intent(in) :: control
integer :: n
DebugCall('read_output_tec: read_header')
read(IN_FILE_UNIT, *) !"variables = x y z "
do n = 1,control%r_count
read(IN_FILE_UNIT, *) !trim(w_list(n))
end do
read(IN_FILE_UNIT, *) ! "zone T=block" ...
read(IN_FILE_UNIT, *) !"Varlocation=([1-3]=Nodal)"
read(IN_FILE_UNIT, *) !"Varlocation=([4-",total,"]=CELLCENTERED)"
read(IN_FILE_UNIT, *) !"STRANDID"
read(IN_FILE_UNIT, *) !"SolutionTime"
end subroutine read_header