Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r8), | intent(in) | :: | coefficient | The entrainment coefficient |
||
real(kind=r8), | intent(in) | :: | delta | The ratio |
A new entrainment object
pure function constructor(coefficient, delta) result(this)
real(r8), intent(in) :: coefficient
!! The entrainment coefficient \(c_L^2x_0/D_0\)
real(r8), intent(in) :: delta
!! The ratio \(D_0/h_0\)
type(kochergin1987_entrainment) :: this
!! A new entrainment object
this%coefficient = coefficient
this%delta = delta
end function constructor