Returns the base name of file to write
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(eulerian_set), | intent(in) | :: | this |
An Eulerian Set |
Name of file
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