Sets the mean water depth [m].
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(domain_type), | intent(inout) | :: | self | Domain instance |
||
real(kind=rk), | intent(in), | dimension(:,:) | :: | depth | Mean water depth [m] |
pure subroutine setDepth(self,depth)
!! Sets the mean water depth [m].
class(domain_type),intent(inout) :: self !! Domain instance
real(kind=rk),dimension(:,:),intent(in) :: depth !! Mean water depth [m]
call self % spectrum % setDepth(depth)
endsubroutine setDepth