eulerian_set_GetReadFileName Function

private pure function eulerian_set_GetReadFileName(this) result(name)

Returns the base name of file to write

Type Bound

eulerian_set

Arguments

Type IntentOptional Attributes Name
class(eulerian_set), intent(in) :: this

An Eulerian Set

Return Value character(len=str64)

Name of file


Source Code

    pure function eulerian_set_GetReadFileName(this) result(name)
      !> Returns the base name of file to write
      implicit none
      class(eulerian_set), intent(in)    :: this                               !! An Eulerian Set
      character(len=str64)               :: name                               !! Name of file

      name=this%read_file

      return
    end function eulerian_set_GetReadFileName