Save grid file in Tecplot format.
implement Tecplot output.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(block_object), | intent(inout) | :: | self | Block. |
||
| character(len=*), | intent(in) | :: | file_name | Output file name. |
||
| logical, | intent(in), | optional | :: | ascii | Ascii/binary output. |
|
| logical, | intent(in), | optional | :: | metrics | Save also metrics data. |
subroutine save_file_grid_tec(self, file_name, ascii, metrics)
!< Save grid file in Tecplot format.
!<
!< @TODO implement Tecplot output.
class(block_object), intent(inout) :: self !< Block.
character(*), intent(in) :: file_name !< Output file name.
logical, intent(in), optional :: ascii !< Ascii/binary output.
logical, intent(in), optional :: metrics !< Save also metrics data.
error stop 'error: block mesh Tecplot output to be implemented'
endsubroutine save_file_grid_tec