Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r8), | intent(in) | :: | coefficient | The entrainment coefficient, $E_0$ to be used |
A new entrainment object
pure function constructor(coefficient) result(this)
real(r8), intent(in) :: coefficient
!! The entrainment coefficient, $E_0$ to be used
type(jenkins1991_entrainment) :: this
!! A new entrainment object
this%coefficient = coefficient
end function constructor