Returns the mean wave period [s] for the whole domain.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(domain_type), | intent(in) | :: | self | Domain instance |
Mean period [s] array
pure function meanPeriod(self)
!! Returns the mean wave period [s] for the whole domain.
class(domain_type),intent(in) :: self
!! Domain instance
real(kind=rk),dimension(:,:),allocatable :: meanPeriod
!! Mean period [s] array
meanPeriod = self % spectrum % meanPeriod()
endfunction meanPeriod