Returns the significant wave height [m] for the whole domain.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(domain_type), | intent(in) | :: | self | Domain instance |
Significant wave height [m] array
pure function significantWaveHeight(self) result(hs)
!! Returns the significant wave height [m] for the whole domain.
class(domain_type),intent(in) :: self
!! Domain instance
real(kind=rk),dimension(:,:),allocatable :: hs
!! Significant wave height [m] array
hs = self % spectrum % significantWaveHeight()
endfunction significantWaveHeight