Returns the grid spacing in y [m] of the grid instance.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(grid_type), | intent(in) | :: | self | Grid instance |
Grid spacing in y [m]
pure function getGridSpacingY(self) result(dy)
!! Returns the grid spacing in y [m] of the grid instance.
class(grid_type),intent(in) :: self !! Grid instance
real(kind=realkind),dimension(:,:),allocatable :: dy !! Grid spacing in y [m]
dy = self % dy
endfunction getGridSpacingY