Open the file to write the solution
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | file_handler | |||
character(len=*), | intent(in) | :: | filename |
subroutine open_file(file_handler, filename)
!< Open the file to write the solution
implicit none
integer, intent(in) :: file_handler
character(len=*), intent(in) :: filename
DebugCall('write_output: open_file')
open(file_handler, file=trim(filename)//trim(file_format)//'.part', form=trim(data_format))
end subroutine open_file