Returns the mean water depth [m] array.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(domain_type), | intent(in) | :: | self | Domain instance |
Mean water depth [m]
pure function getDepth(self) result(depth)
!! Returns the mean water depth [m] array.
class(domain_type),intent(in) :: self
!! Domain instance
real(kind=rk),dimension(:,:),allocatable :: depth
!! Mean water depth [m]
depth = self % spectrum % getDepth()
endfunction getDepth